{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-151",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/checkbox.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-151.tsx",
      "content": "import { useId } from \"react\";\n\nimport { Checkbox } from \"@/registry/default/ui/checkbox\";\nimport { Label } from \"@/registry/default/ui/label\";\n\nexport default function Component() {\n  const id = useId();\n  return (\n    <div className=\"grid gap-3\">\n      <div className=\"flex items-center gap-2\">\n        <Checkbox id={`${id}-1`} />\n        <Label htmlFor={`${id}-1`}>React</Label>\n      </div>\n      <div className=\"flex items-center gap-2\">\n        <Checkbox id={`${id}-2`} />\n        <Label htmlFor={`${id}-2`}>Next.js</Label>\n      </div>\n      <div className=\"flex items-center gap-2\">\n        <Checkbox id={`${id}-3`} />\n        <Label htmlFor={`${id}-3`}>Astro</Label>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "checkbox",
      "label",
      "radix"
    ]
  }
}