{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "checkbox-invalid-example",
  "title": "Checkbox Invalid",
  "description": "checkbox-invalid-example",
  "dependencies": [
    "react-aria-components"
  ],
  "registryDependencies": [
    "https://intentui.com/r/checkbox",
    "https://intentui.com/r/field",
    "https://intentui.com/r/button"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/checkbox/checkbox-invalid-example.tsx",
      "content": "'use client'\n\nimport { Checkbox, CheckboxField } from '@/components/ui/checkbox'\nimport { FieldError } from '@/components/ui/field'\nimport { Form } from 'react-aria-components/Form'\nimport { Button } from '@/components/ui/button'\n\nexport default function CheckboxInvalidDemo() {\n  return (\n    <Form>\n      <CheckboxField isRequired name=\"notification\">\n        <Checkbox>Enable notifications</Checkbox>\n        <FieldError />\n      </CheckboxField>\n      <Button type=\"submit\" className=\"mt-4\">\n        Submit\n      </Button>\n    </Form>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/checkbox-invalid-example/page.tsx"
    }
  ],
  "type": "registry:page"
}