Combobox
Autocomplete input and command palette with a list of suggestions.
Preview
Installation
bash
npx auralix-ui add comboboxUsage
Default Combobox
tsx
import { Combobox } from "@/components/ui/Combobox";
<Combobox
options={[
{ value: "next.js", label: "Next.js" },
{ value: "sveltekit", label: "SvelteKit" },
{ value: "astro", label: "Astro" },
]}
/>Props
| Name | Type | Default | Description |
|---|---|---|---|
options | { value: string, label: string }[] | [] | Options to display. |
value | string | - | Selected value. |
Variants
Standard
With Label
Large List
On this page