Select
A select displays a collapsible list of options and allows a user to select one of them.
Favorite Animal
isDisabled
Example
Select.tsx
Select.css
theme.css
Example
Select.tsx
Select.css
theme.css
import {Select, SelectItem} from './Select';
<Select label="Favorite Animal">
<SelectItem>Aardvark</SelectItem>
<SelectItem>Cat</SelectItem>
<SelectItem>Dog</SelectItem>
<SelectItem>Kangaroo</SelectItem>
<SelectItem>Panda</SelectItem>
<SelectItem>Snake</SelectItem>
</Select>