{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-205",
  "type": "registry:component",
  "title": "Comp 205",
  "description": "Comp 205",
  "files": [
    {
      "path": "registry/ui-basic/comp-205.tsx",
      "content": "import { useId } from \"react\";\n\nimport { Label } from \"@/components/ui/label\";\nimport {\n\tSelect,\n\tSelectContent,\n\tSelectItem,\n\tSelectTrigger,\n\tSelectValue,\n} from \"@/components/ui/select\";\nimport { ClockIcon } from \"lucide-react\";\n\nexport default function Component() {\n\tconst id = useId();\n\treturn (\n\t\t<div className=\"not-first:*:mt-2\">\n\t\t\t<Label htmlFor={id}>Select with icon</Label>\n\t\t\t<Select defaultValue=\"1\">\n\t\t\t\t<SelectTrigger id={id} className=\"relative ps-9\">\n\t\t\t\t\t<div className=\"text-muted-foreground/80 pointer-events-none absolute inset-y-0 inset-s-0 flex items-center justify-center ps-3 group-has-[select[disabled]]:opacity-50\">\n\t\t\t\t\t\t<ClockIcon size={16} aria-hidden=\"true\" />\n\t\t\t\t\t</div>\n\t\t\t\t\t<SelectValue placeholder=\"Select time\" />\n\t\t\t\t</SelectTrigger>\n\t\t\t\t<SelectContent>\n\t\t\t\t\t<SelectItem value=\"1\">00:00 AM - 11:59 PM</SelectItem>\n\t\t\t\t\t<SelectItem value=\"2\">01:00 AM - 12:59 PM</SelectItem>\n\t\t\t\t\t<SelectItem value=\"3\">02:00 AM - 01:59 PM</SelectItem>\n\t\t\t\t\t<SelectItem value=\"4\">03:00 AM - 02:59 PM</SelectItem>\n\t\t\t\t</SelectContent>\n\t\t\t</Select>\n\t\t</div>\n\t);\n}\n",
      "type": "registry:ui"
    },
    {
      "path": "components/ui/label.tsx",
      "content": "\"use client\";\n\nimport React from \"react\";\n\nimport { cn } from \"@/registry/utilities/cn\";\nimport * as LabelPrimitive from \"@radix-ui/react-label\";\nimport { cva, type VariantProps } from \"class-variance-authority\";\n\nconst labelVariants = cva(\n\t\"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n);\n\nconst Label = React.forwardRef<\n\tReact.ElementRef<typeof LabelPrimitive.Root>,\n\tReact.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n\t\tVariantProps<typeof labelVariants>\n>(({ className, ...props }, ref) => (\n\t<LabelPrimitive.Root\n\t\tref={ref}\n\t\tclassName={cn(labelVariants(), className)}\n\t\t{...props}\n\t/>\n));\nLabel.displayName = LabelPrimitive.Root.displayName;\n\nexport { Label };\n",
      "type": "registry:ui"
    },
    {
      "path": "registry/utilities/cn.ts",
      "content": "import { ClassValue, clsx } from \"clsx\";\r\nimport { twMerge } from \"tailwind-merge\";\r\n\r\nexport function cn(...inputs: ClassValue[]) {\r\n\treturn twMerge(clsx(inputs));\r\n}\r\n",
      "type": "registry:ui"
    }
  ]
}