ComponentsSelect
Select
A lightweight styled native select for choosing one value from a short list.
Installation
bunx @swift-rust/ui add select
Usage
tsx
1import { Select } from "@/components/ui/select";23<Select defaultValue="swift-rust">4<option value="swift-rust">swift-rust</option>5<option value="next">Next.js</option>6</Select>