.icon {
display: inline-block;
width: 200px;
height: 200px;
background-color: hotpink;
mask: var(--svg) no-repeat center;
mask-size: contain;
&:hover {
background-color: chocolate;
}
}
.icon-cart {
--svg: url("cart.svg");
}