{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "native-select", "files": [ { "path": "registry/radix-nova/ui/native-select.tsx", "content": "import * as React from \"react\"\n\nimport { cn } from \"@/registry/bases/radix/lib/utils\"\nimport { IconPlaceholder } from \"@/app/(create)/components/icon-placeholder\"\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