Documentation
Checkbox

Checkbox

Example

import { Checkbox } from '@i4o/catalystui'
 
export default () => {
	return (
		<Checkbox
			defaultChecked={true}
			label={<p className='text-gray-900'>Checkbox</p>}
		/>
	)
}

Props

NameTypeDefaultDescription
defaultCheckedbooleanfalseWhether the checkbox is checked by default
disabledbooleanfalseWhether the checkbox is disabled
labelstring | ReactNode''The label of the checkbox
namestring''The label of the checkbox
requiredbooleanfalseWhether the checkbox is required before the form can be submitted