{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "native-select", "title": "Native Select", "description": "Stitch native select primitive.", "registryDependencies": ["askyourpolicy/ss-registry/stitch-base"], "files": [ { "path": "src/components/ui/native-select.tsx", "content": "import * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\nimport { CaretDownIcon as ChevronDownIcon } from \"@phosphor-icons/react\";\n\ntype NativeSelectProps = Omit, \"size\"> & {\n size?: \"sm\" | \"default\";\n};\n\nfunction NativeSelect({ className, size = \"default\", ...props }: NativeSelectProps) {\n return (\n \n \n \n \n );\n}\n\nfunction NativeSelectOption({ className, ...props }: React.ComponentProps<\"option\">) {\n return (\n \n );\n}\n\nfunction NativeSelectOptGroup({ className, ...props }: React.ComponentProps<\"optgroup\">) {\n return (\n \n );\n}\n\nexport { NativeSelect, NativeSelectOptGroup, NativeSelectOption };\n", "type": "registry:ui" } ], "type": "registry:ui" }