{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "checkbox",
  "type": "registry:component",
  "title": "Checkbox",
  "author": "Toby Belhome",
  "description": "A control that allows the user to toggle between checked and not checked.",
  "dependencies": [],
  "registryDependencies": [
    "checkbox",
    "label"
  ],
  "files": [
    {
      "path": "examples/components/checkbox/01/page.tsx",
      "content": "\"use client\";\n\nimport { useId } from \"react\";\n\nimport { Checkbox } from \"@/components/ui/checkbox\";\nimport { Label } from \"@/components/ui/label\";\n\nexport default function Component() {\n  const id = useId();\n\n  return (\n    <div className=\"flex items-center gap-2\">\n      <Checkbox id={id} />\n      <Label htmlFor={id}>Accept terms and conditions</Label>\n    </div>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/checkbox.tsx"
    }
  ],
  "meta": {
    "isPro": false
  }
}