{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "native-select", "title": "Native Select", "description": "Styled native HTML select element with custom caret", "dependencies": [ "@phosphor-icons/react" ], "registryDependencies": [ "utils" ], "files": [ { "path": "registry/new-york/ui/native-select.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\nimport { CaretDownIcon } from \"@phosphor-icons/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({ ...props }: React.ComponentProps<\"option\">) {\n return