I am trying to change the border of a select component from Material-UI. So far I\'ve tried:
select
const styles = theme => ({ root: { display
You can override styling of child element classes e.g.
selectBorder: { '& .MuiOutlinedInput-notchedOutline': { borderColor: 'red' } }
If you apply className={classes.selectBorder} to your Select component, it will change the border color to red.
className={classes.selectBorder}
Select