{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "checkbox-group-example",
  "title": "Checkbox Group",
  "description": "checkbox-group-example",
  "registryDependencies": [
    "https://intentui.com/r/checkbox",
    "https://intentui.com/r/field"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/checkbox/checkbox-group-example.tsx",
      "content": "'use client'\n\nimport { Checkbox, CheckboxField, CheckboxGroup } from '@/components/ui/checkbox'\nimport { Label } from '@/components/ui/field'\n\nexport default function CheckboxGroupExample() {\n  return (\n    <CheckboxGroup name=\"settings\">\n      <Label>Settings</Label>\n      <CheckboxField value=\"notifications\">\n        <Checkbox>Enable notifications</Checkbox>\n      </CheckboxField>\n      <CheckboxField value=\"auto_update\">\n        <Checkbox>Auto-update applications</Checkbox>\n      </CheckboxField>\n      <CheckboxField value=\"dark_mode\">\n        <Checkbox>Enable dark mode</Checkbox>\n      </CheckboxField>\n      <CheckboxField value=\"location_access\">\n        <Checkbox>Allow location access</Checkbox>\n      </CheckboxField>\n      <CheckboxField value=\"two_factor_auth\">\n        <Checkbox>Enable two-factor authentication</Checkbox>\n      </CheckboxField>\n    </CheckboxGroup>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/checkbox-group-example/page.tsx"
    }
  ],
  "type": "registry:page"
}