# MultiSelect

![size](https://img.shields.io/bundlephobia/min/@propellerads/multi-select.svg)
![](https://img.shields.io/npm/v/@propellerads/multi-select.svg?style=flat-square)

[NPM](https://www.npmjs.com/package/@propellerads/multi-select) |
[Github](https://github.com/propellerads/ui-components/tree/master/Components/MultiSelect)

## Installation
* `yarn add @propellerads/multi-select` or `npm install @propellerads/multi-select -S`

### How to use
* `import MultiSelect from '@propellerads/multi-select';`
* And render
```
<MultiSelect
    onChange={() => {}}
    elementId="elementId"
    options={[{ value: 1, label: '1' }]}
/>
```
