Open GitHub repository
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";
2 
3<NativeSelect defaultValue="swift-rust">
4 <option value="swift-rust">swift-rust</option>
5 <option value="next">Next.js</option>
6</NativeSelect>

Examples