sbx-react-select
npm install sbx-react-select---
```
sbx i --save sbx-react-select
```
import Select from 'sbx-react-select';
placeholder="Search" // by default "Search"
notFoundText="No result found" // by default "No result found"
options={[{
value: '',
label: 'All'
}, {
value: 'popular',
label: 'Popular
}]}
onSelect={option => {
console.log(option); // as example - {value: '', label: 'All'}
}}
listMaxHeight={200} //by default 140
/>