{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label",
  "title": "Label",
  "description": "A field's name, set as an eyebrow. Small, tracked out, phosphor.",
  "dependencies": [
    "@base-ui/react"
  ],
  "registryDependencies": [
    "@afterglow/theme"
  ],
  "files": [
    {
      "path": "registry/terminal/ui/label.tsx",
      "content": "import type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nfunction Label({ className, ...props }: React.ComponentProps<\"label\">) {\n  return (\n    // biome-ignore lint/a11y/noLabelWithoutControl: call sites provide `htmlFor` and text.\n    <label\n      className={cn(\n        \"flex select-none items-center gap-2 font-mono font-semibold text-2xs text-phosphor uppercase leading-none tracking-terminal-xl\",\n        \"group-data-[disabled]:pointer-events-none group-data-[disabled]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n        className\n      )}\n      data-slot=\"label\"\n      {...props}\n    />\n  );\n}\n\nexport { Label };\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}