{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "glass-label",
  "title": "Glass Label",
  "author": "Alex Chih (https://alexchih.com)",
  "description": "Form label in the mono uppercase register.",
  "dependencies": [
    "radix-ui"
  ],
  "registryDependencies": [
    "https://washiveil.alexchih.com/r/theme.json"
  ],
  "files": [
    {
      "path": "registry/washiveil/ui/glass-label.tsx",
      "content": "'use client'\n\nimport * as React from 'react'\nimport { Label as LabelPrimitive } from 'radix-ui'\n\nimport { cn } from '@/lib/utils'\n\nconst GlassLabel = React.forwardRef<\n  React.ComponentRef<typeof LabelPrimitive.Root>,\n  React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>\n>(({ className, ...props }, ref) => (\n  <LabelPrimitive.Root\n    ref={ref}\n    className={cn(\n      'font-mono text-[0.8125rem] tracking-[0.15em] uppercase text-muted-foreground peer-disabled:cursor-not-allowed peer-disabled:opacity-50',\n      className,\n    )}\n    {...props}\n  />\n))\nGlassLabel.displayName = LabelPrimitive.Root.displayName\n\nexport { GlassLabel }\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}