I have created a dropdown list in my reactjs project as follows
const sortDropDown = <div className={classes.customselect}>
<select
className={classes.sortSelector}
id="lang"
onChange={onChangeSort}
// defaultValue={8}
value={sortValue}
>
<option className={classes.selectOption} value={''}>{sortValue}</option>
{availableSortMethods.map((method,index)=>
<option className={classes.selectOption} value={[method.text,method.attribute,method.sortDirection]}>{method.text}</option>
)}
</select>
</div>
The options list is fetched from an array.I need to customize the options list box to add a border-radius as follows
How can I do this with CSS to change border-radius values of the dropdown options list not the button.Please help