Open GitHub repository
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";
2 
3<Combobox
4 options={[
5 { value: "next", label: "Next.js" },
6 { value: "swift-rust", label: "swift-rust" },
7 ]}
8 placeholder="Choose a framework"
9/>

Examples