When we use SVG ICONS, the color cannot be changed, the solution I encountered was when the fill property filled the color so that it could not be changed
svg {
fill: currentColor;
}
path{
fill: unset;
}
Copy the code