I have this div
export const LIIconHolder = styled.div`
margin-right: 16px;
width: 16px;
height: 16px;
border: solid 1px #45cc8a;
border-radius: 20px;
text-align: center;
background-image:url(${check});
`
check
is an svg
icon.
Somewhy the icon is not being displayed.The path is correct I checked it.
I checked inspect element and it is not reading it
Any suggestions on how to fix this?