Component used to select options
npm install @smashing/select-menu``sh`
yarn add @smashing/select-menu
#### Default appearance

`jsx`
value={singleSelectedOption}
onSelect={changeSingleSelectedOption}
hasFilter
hasTitle
title="Select Item"
/>
#### Card appearance

`jsx`
value={singleSelectedOption}
onSelect={changeSingleSelectedOption}
appearance="card"
hasFilter
/>
#### Minimal appearance and multiselect option

`jsxItems: ${selected.length}
value={selectedOptions}
placeholderForMultipleSelected={selected => }`
onSelect={select}
onDeselect={deselect}
appearance="minimal"
/>
#### Custom select menu

`jsx`
value={selectedOptions}
onSelect={select}
onDeselect={deselect}
appearance="primary"
renderItem={(option, click, options, selected) => {
return (
)
}}
children={props => (
)}
/>
#### Change the height and width
`jsx`
height={100}
options={options}
value={singleSelectedOption}
onSelect={changeSingleSelectedOption}
/>
- hasFilter={false}: to remove the search input filter.hasTitle={false}`: to remove the title from the popover.
-