{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "native-select", "title": "Native Select", "dependencies": [ "lucide-react@^1.31.0" ], "registryDependencies": [ "https://samlinville.github.io/slds/r/utils.json" ], "files": [ { "path": "src/components/ui/native-select.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { ChevronDownIcon } from \"lucide-react\"\n\ntype NativeSelectProps = Omit, \"size\"> & {\n size?: \"sm\" | \"default\"\n}\n\nfunction NativeSelect({\n className,\n size = \"default\",\n ...props\n}: NativeSelectProps) {\n return (\n \n \n \n \n )\n}\n\nfunction NativeSelectOption({\n className,\n ...props\n}: React.ComponentProps<\"option\">) {\n return (\n \n )\n}\n\nfunction NativeSelectOptGroup({\n className,\n ...props\n}: React.ComponentProps<\"optgroup\">) {\n return (\n \n )\n}\n\nexport { NativeSelect, NativeSelectOptGroup, NativeSelectOption }\n", "type": "registry:ui" } ], "type": "registry:ui" }