{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label",
  "type": "registry:ui",
  "title": "Label",
  "dependencies": [
    "@radix-ui/react-label"
  ],
  "files": [
    {
      "path": "src/components/ui/label.tsx",
      "content": "\"use client\"\r\n\r\nimport * as LabelPrimitive from \"@radix-ui/react-label\"\r\n\r\nimport * as React from \"react\"\r\n\r\nimport { cn } from \"@/lib/utils\"\r\n\r\nfunction Label({\r\n  className,\r\n  ...props\r\n}: React.ComponentProps<typeof LabelPrimitive.Root>) {\r\n  return (\r\n    <LabelPrimitive.Root\r\n      data-slot=\"label\"\r\n      className={cn(\r\n        \"text-sm font-heading leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\",\r\n        className,\r\n      )}\r\n      {...props}\r\n    />\r\n  )\r\n}\r\n\r\nexport { Label }\r\n",
      "type": "registry:ui"
    }
  ]
}