I'm having trouble adding a hover effect to material icons in my code. Despite everything else looking good, the hover effect is not working as expected. Below is the code snippet I've been using:
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
import NotificationsIcon from '@mui/icons-material/Notifications';
import HelpIcon from '@mui/icons-material/Help';
const iconStyle =
{
"fontSize": "25px",
"color": "grey",
"padding-right":"30px",
"padding-top":"20px",
"cursor":"pointer",
"borderRadius": "10%",
"&:hover": { "color": "black" }
}
<HelpIcon style={iconStyle}/>
<NotificationsIcon style={iconStyle}/>
<ManageAccountsIcon style={iconStyle}/>