{
  "name": "label",
  "type": "registry:ui",
  "dependencies": [
    "@radix-ui/react-label"
  ],
  "files": [
    {
      "path": "components/ui/label.tsx",
      "content": "\"use client\";\nimport * as React from \"react\";\nimport * as LabelPrimitive from \"@radix-ui/react-label\";\n\nimport { cn } from \"@/lib/utils\";\n\nconst Label = React.forwardRef<\n  React.ElementRef<typeof LabelPrimitive.Root>,\n  React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>\n>(({ className, ...props }, ref) => (\n  <LabelPrimitive.Root\n    ref={ref}\n    className={cn(\n      \"text-sm font-medium text-black dark:text-white leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\",\n      className\n    )}\n    {...props}\n  />\n));\nLabel.displayName = LabelPrimitive.Root.displayName;\n\nexport { Label };\n",
      "type": "registry:ui",
      "target": "components/ui/label.tsx"
    }
  ],
  "author": "Manu Arora <hi@manuarora.in>",
  "title": "Label"
}