{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-138",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/checkbox.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-138.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=\"flex items-center gap-2\">\n      <Checkbox id={id} />\n      <Label htmlFor={id}>\n        I agree to the{\" \"}\n        <a\n          className=\"underline\"\n          href=\"https://coss.com/origin\"\n          rel=\"noreferrer\"\n          target=\"_blank\"\n        >\n          terms of service\n        </a>\n      </Label>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "checkbox",
      "label",
      "login",
      "authentication",
      "radix"
    ]
  }
}