"use client"
import { Checkbox, CheckboxGroup } from "@/components/ui/checkbox"
import { Label } from "@/components/ui/field"
export default function CheckboxGroupDemo() {
return (
<CheckboxGroup>
<Label>Settings</Label>
<Checkbox value="notifications">Enable notifications</Checkbox>
<Checkbox value="auto_update">Auto-update applications</Checkbox>
<Checkbox value="dark_mode">Enable dark mode</Checkbox>
<Checkbox value="location_access">Allow location access</Checkbox>
<Checkbox value="two_factor_auth">Enable two-factor authentication</Checkbox>
</CheckboxGroup>
)
}
npx shadcn@latest add @intentui/checkbox-group-demoUsage varies by registry entry. Refer to the registry docs or source files below for details.