{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label",
  "type": "registry:ui",
  "dependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "ui/label.tsx",
      "content": "import type { LabelHTMLAttributes } from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nexport function Label({\n  className,\n  ...props\n}: LabelHTMLAttributes<HTMLLabelElement>) {\n  return (\n    <label\n      className={cn(\"text-sm font-medium text-foreground\", className)}\n      {...props}\n    />\n  );\n}\n",
      "type": "registry:ui",
      "target": "components/ui/label.tsx"
    }
  ]
}
