I am using from react-select but I am not able to remove spinners/arrows from the dropdown.
I am able to remove the default separator | and Dropdown Indicator using
<Select
components={{
IndicatorSeparator: () => null, DropdownIndicator: () => null
}}
{...}
/>
But how can I get rid of these arrows?