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