{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label",
  "title": "Label",
  "description": "A label component.",
  "files": [
    {
      "path": "registry/default/label/label.tsx",
      "content": "import * as React from \"react\";\r\n\r\nimport { cn } from \"@/lib/utils\";\r\n\r\nfunction Label({ className, ...props }: React.ComponentProps<\"label\">) {\r\n  return (\r\n    <label\r\n      data-slot=\"label\"\r\n      className={cn(\r\n        \"text-foreground flex flex-col gap-1 text-sm leading-5 font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-60 peer-disabled:cursor-not-allowed peer-disabled:opacity-60\",\r\n        className,\r\n      )}\r\n      {...props}\r\n    />\r\n  );\r\n}\r\n\r\nexport { Label };\r\n",
      "type": "registry:ui",
      "target": "components/ui/cubby-ui/label.tsx"
    }
  ],
  "type": "registry:ui"
}