I am using Icons as symbols in my React app that is using Material UI library. I added the baseClassName: 'material-symbols-rounded' to all my icons using the theme.js global file like this:
MuiIcon: { defaultProps: { baseClassName: 'material-symbols-rounded' }},
MuiIconButton: { defaultProps: { className: 'material-symbols-rounded' }}
On the Google Icon Symbols documentation it states that I could add a FILL 1 to change the look from outlined to filled. I can't seem to make it work. i tried adding it as a style directly to the MUI Icon component, tried adding a stylerOverride to the theme.js MUIIcon root style object and nothing seems to be work. Any ideas how can I add the fill to the MUI Icon component since I am using Icons as symbol and not Icons?