{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label",
  "files": [
    {
      "path": "src/components/ui/label/label.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"label\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<label\n  data-slot=\"label\"\n  class={cn(\n    \"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n    className\n  )}\n  {...props}\n>\n  <slot />\n</label>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/label/index.ts",
      "content": "export { default as Label } from \"./label.astro\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}