Components
npx shadcn@latest add https://21st.dev/r/ShadcnStudio/checkbox-1Loading preview...
import { useId } from 'react'
import { Checkbox } from '@/components/ui/checkbox'
import { Label } from '@/components/ui/label'
const CheckboxDashedDemo = () => {
const id = useId()
return (
<div className='flex items-center gap-2'>
<Checkbox id={id} className='border-primary border-dashed' />
<Label htmlFor={id}>Accept terms and conditions</Label>
</div>
)
}
export default CheckboxDashedDemo
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...