When using react select, I include isRtl as a prop like so:
<Select onChange={handleChange} isRtl isMulti options={colourOptions} />
However, only the input receives the rtl direction style and not the options. How can I ensure that both the input and options have rtl direction with react select?