{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-145",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/checkbox.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-145.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=\"flex grow items-start gap-3\">\n        <svg\n          aria-hidden=\"true\"\n          className=\"shrink-0\"\n          height={24}\n          viewBox=\"0 0 32 24\"\n          width={32}\n          xmlns=\"http://www.w3.org/2000/svg\"\n        >\n          <rect fill=\"#252525\" height=\"24\" rx=\"4\" width=\"32\" />\n          <path\n            d=\"M19.0537 6.49742H12.9282V17.5026H19.0537V6.49742Z\"\n            fill=\"#FF5A00\"\n          />\n          <path\n            d=\"M13.3359 12C13.3359 9.76408 14.3871 7.77961 16 6.49741C14.8129 5.56408 13.3155 5 11.6822 5C7.81295 5 4.68221 8.13074 4.68221 12C4.68221 15.8693 7.81295 19 11.6822 19C13.3155 19 14.8129 18.4359 16 17.5026C14.3848 16.2385 13.3359 14.2359 13.3359 12Z\"\n            fill=\"#EB001B\"\n          />\n          <path\n            d=\"M27.3178 12C27.3178 15.8693 24.1871 19 20.3178 19C18.6845 19 17.1871 18.4359 16 17.5026C17.6333 16.2181 18.6641 14.2359 18.6641 12C18.6641 9.76408 17.6129 7.77961 16 6.49741C17.1848 5.56408 18.6822 5 20.3155 5C24.1871 5 27.3178 8.15113 27.3178 12Z\"\n            fill=\"#F79E1B\"\n          />\n        </svg>\n        <div className=\"grid 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    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "checkbox",
      "label",
      "card",
      "radix"
    ]
  }
}