What\'s the best way to style a react-select component\'s (https://github.com/JedWatson/react-select) options?
react-select
I can target the select itself just fine,
const CustomStyle = { option: (base, state) => ({ ...base, backgroundColor: state.isSelected ? {Color1} : {Color2}, }) }
There are more options for this. Have a look at the documentation for styling.
https://react-select.com/styles