How you Change MUI icon border thickness

Viewed 1179

How you Change MUI icon border thickness

  • suppose this icon is having thickness how to make setting icon border lighter

enter image description here

1 Answers

There is a trick with css (stroke must have the same color as your background)

<YourMuiIcon sx={{ stroke: "#ffffff", strokeWidth: 1 }} />
Related