...
Let users select or deselect individual options.
npx neobrutal add checkboximport { Checkbox } from '@/components/ui/checkbox'
import { Label } from '@/components/ui/label'<div className='flex items-center gap-2'>
<Checkbox id='terms' />
<Label htmlFor='terms'>Accept terms and conditions</Label>
</div>This component is built on top of Base UI Checkbox. Refer to the Base UI documentation for the full list of available props.