const useStyles = makeStyles({
chipRoot: {
color: '#BEBEBE',
borderColor: '#BEBEBE',
"& .MuiChip-icon": {
order: 2, // the label has a default order of 0, so this icon goes after the label
marginRight: "10px", // add some space between icon and text
cursor: "pointer",
display: 'none'
},
"&:hover": {
color: '#30223E',
borderColor: '#30223E',
backgroundColor: "#E6ECFF !important",
"& .MuiChip-icon": {
display: 'inline',
color: '#30223E',
}
}
}
});
I am using Chips tag of material UI. And I am wrapping all the chip in a div and on hover I am showing and hiding the copy Icon but the problem I facing is when any chip comes near to a div on hover it flickers.