ComponentsNative Select
Native Select
A styled native select that keeps platform behavior, performance, and accessibility.
Installation
bunx @swift-rust/ui add native-select
Usage
tsx
1import { NativeSelect } from "@/components/ui/native-select";23<NativeSelect defaultValue="swift-rust">4<option value="swift-rust">swift-rust</option>5<option value="next">Next.js</option>6</NativeSelect>