ComboBox
MoleculeSingle-select combobox with type-to-filter behavior, keyboard navigation, and optional async search.
Search or pick from the list.
Selected: nextjs
function Demo() {
const [value, setValue] = useState('nextjs');
return (
<ComboBox
id="framework"
label="Framework"
options={COMBO_OPTIONS}
value={value}
onChange={setValue}
/>
);
}Selected: none
<ComboBox id="search" label="Async search" options={COMBO_OPTIONS} onSearch={search} value={value} onChange={setValue} />