https://i.sstatic.net/S5zWD.png
Attempting to style with CSS as shown in the following example:
<CustomColorIconButton>
<DeleteForeverIcon />
</CustomColorIconButton>
const CustomColorIconButton = withStyles({
root: {
color: "#ff8833",
outline: 'none',
}
})(IconButton);
I have also attempted this:
<IconButton classes={{outline: 'none'}} >
<DeleteForeverIcon />
</IconButton>