@midas-ds/combobox
v1.0.2
Published
```bash npm i @midas-ds/combobox ```
Downloads
425
Readme
select
npm i @midas-ds/combobox
import { ComboBox, Item } from '@midas-ds/combobox';
const options = [
{ id: 'apple', name: 'Apple' },
{ id: 2, name: 'Banana' },
{ id: 3, name: 'Kiwi' },
{ id: 4, name: 'Elderflower' },
{ id: 5, name: 'Nectarine' },
{ id: 6, name: 'Watermelon' },
{ id: 7, name: 'Pineapple' },
{ id: 8, name: 'Apricot' },
{ id: 9, name: 'Cloudberry' },
]
<ComboBox
label="Välj en frukt"
items={options}
>
{(item) => <Item>{item.name}</Item>}
</ComboBox>