{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-144",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/checkbox.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-144.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=\"relative flex w-full items-start gap-2 rounded-md border border-input p-4 shadow-xs outline-none has-data-[state=checked]:border-primary/50\">\n      <Checkbox\n        aria-describedby={`${id}-description`}\n        className=\"order-1 after:absolute after:inset-0\"\n        id={id}\n      />\n      <div className=\"grid grow gap-2\">\n        <Label htmlFor={id}>\n          Label{\" \"}\n          <span className=\"font-normal text-muted-foreground text-xs leading-[inherit]\">\n            (Sublabel)\n          </span>\n        </Label>\n        <p className=\"text-muted-foreground text-xs\" id={`${id}-description`}>\n          A short description goes here.\n        </p>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "checkbox",
      "label",
      "card",
      "radix"
    ]
  }
}