{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "checkbox-description-example",
  "title": "Checkbox Description",
  "description": "checkbox-description-example",
  "dependencies": [
    "react-aria-components"
  ],
  "registryDependencies": [
    "https://intentui.com/r/checkbox",
    "https://intentui.com/r/field"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/checkbox/checkbox-description-example.tsx",
      "content": "'use client'\n\nimport { Checkbox, CheckboxField } from '@/components/ui/checkbox'\nimport { Description } from '@/components/ui/field'\nimport { Form } from 'react-aria-components/Form'\n\nexport default function CheckboxDescriptionExample() {\n  return (\n    <Form>\n      <CheckboxField name=\"notification\">\n        <Checkbox>Enable notifications</Checkbox>\n        <Description>Get account updates and feature announcements.</Description>\n      </CheckboxField>\n    </Form>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/checkbox-description-example/page.tsx"
    }
  ],
  "type": "registry:page"
}