ComponentsCombobox
Combobox
A searchable option picker for longer lists where a native select is not enough.
Installation
bunx @swift-rust/ui add combobox
Usage
tsx
1import { Combobox } from "@/components/ui/combobox";23<Combobox4options={[5{ value: "next", label: "Next.js" },6{ value: "swift-rust", label: "swift-rust" },7]}8placeholder="Choose a framework"9/>