components
/components/ui/combobox.tsx
/components/ui/combobox.tsx
Combobox
Autocomplete input and command palette with a list of suggestions.
Installation
The Combobox is built using a composition of the Popover and the Command components.
Usage
Imports
import { Combobox } from "@/components/ui/combobox"Code
<Combobox>
<Combobox.Input placeholder="Search..." />
<Combobox.List>
<Combobox.Item>Option 1</Combobox.Item>
<Combobox.Item>Option 2</Combobox.Item>
<Combobox.Item>Option 3</Combobox.Item>
</Combobox.List>
</Combobox>