Checkbox
Example
import { Checkbox } from '@i4o/catalystui'
export default () => {
return (
<Checkbox
defaultChecked={true}
label={<p className='text-gray-900'>Checkbox</p>}
/>
)
}
Props
Name | Type | Default | Description |
---|---|---|---|
defaultChecked | boolean | false | Whether the checkbox is checked by default |
disabled | boolean | false | Whether the checkbox is disabled |
label | string | ReactNode | '' | The label of the checkbox |
name | string | '' | The label of the checkbox |
required | boolean | false | Whether the checkbox is required before the form can be submitted |