ListBox
A listbox displays a list of options and allows a user to select one or more of them.
Aardvark
Cat
Dog
Kangaroo
Panda
Snake
selectionMode
Example
ListBox.tsx
ListBox.css
theme.css
Example
ListBox.tsx
ListBox.css
theme.css
import {ListBox, ListBoxItem} from './ListBox';
<ListBox aria-label="Favorite animal">
<ListBoxItem>Aardvark</ListBoxItem>
<ListBoxItem>Cat</ListBoxItem>
<ListBoxItem>Dog</ListBoxItem>
<ListBoxItem>Kangaroo</ListBoxItem>
<ListBoxItem>Panda</ListBoxItem>
<ListBoxItem>Snake</ListBoxItem>
</ListBox>