Components/Combobox

Combobox

A searchable dropdown that filters options as you type. Supports keyboard navigation, custom options, and disabled states.

import { Combobox } from "@animui/ui"

Basic

With search

Disabled

Props

PropTypeDefaultDescription
optionsComboboxOption[]Array of { value, label, disabled? } options.
valuestringCurrently selected value (controlled).
onChange(value: string) => voidCalled when a selection is made.
placeholderstring"Select..."Input placeholder text.
disabledbooleanfalseDisables the combobox.
classNamestringAdditional classes for the wrapper.

Keyboard navigation

  • ↑ ↓Navigate options
  • EnterSelect highlighted option
  • EscClose dropdown
© 2026 Steal Shadow. MIT License.Report an issue