Hey there! I'm currently utilizing the React select component, with the following import statement:
import ReactSelect, {ValueType} from 'react-select';
Here is what my component currently looks like: https://i.stack.imgur.com/yTmW4.png
This snippet represents the code for it:
<div>
<ReactSelect
className='react-select react-select-top'
classNamePrefix='react-select'
id='displayLanguage'
menuIsOpen={this.state.openMenu}
menuPortalTarget={document.body}
options={timeOptions}
clearable={false}
onChange={this.onChange}
onKeyDown={this.handleKeyDown}
value={this.state.selectedOption}
onMenuClose={this.handleMenuClose}
onMenuOpen={this.handleMenuOpen}
aria-labelledby='changeInterfaceLanguageLabel'
isDisabled={false}
/>
</div>
I wish to switch the color scheme to a shade of grey to resemble this appearance, but I'm unsure how to achieve that: https://i.stack.imgur.com/D8EK9.png