ComboBox
A combo box combines a text input with a listbox, allowing users to filter a list of options to items matching a query.
isDisabled
Example
ComboBox.tsx
ComboBox.css
theme.css
Example
ComboBox.tsx
ComboBox.css
theme.css
import {ComboBox, ComboBoxItem} from './ComboBox';
<ComboBox label="Favorite Animal">
<ComboBoxItem>Aardvark</ComboBoxItem>
<ComboBoxItem>Cat</ComboBoxItem>
<ComboBoxItem>Dog</ComboBoxItem>
<ComboBoxItem>Kangaroo</ComboBoxItem>
<ComboBoxItem>Panda</ComboBoxItem>
<ComboBoxItem>Snake</ComboBoxItem>
</ComboBox>