import { FaRegHeart } from 'react-icons/fa';
const IconHeart = styled(FaRegHeart)`
width:21px;
height:18px;
position: absolute;
left: 28%;
top:30%;
cursor: pointer;
&:hover{
background-color:red;
}
`
function Heart() {
return (
<HeartBox>
<IconHeart />
</HeartBox>
)
}
Guestion:
I what full contorl over the svg icon, hover do not work on this icon. LIke to heart have border around icons, but if i set border he put put border around icon not on inon itsef