Combobox
Searchable single-value select with type-to-filter and custom option rendering.
Installation
Examples
Searchable dropdown
Type to filter options, click to select.
Next.js
Remix
Astro
Nuxt
SvelteKit
API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
| options* | ComboboxOption[] | required | Array of {value, label} options. |
| value | string | — | Controlled selected value. |
| onValueChange | (v: string) => void | — | Called on selection. |
| placeholder | string | — | Placeholder when no value selected. |
| searchable | boolean | true | Enables type-to-filter. |
| disabled | boolean | false | Disables the combobox. |