i have a class as follows
.Collapsible__trigger {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 400;
text-decoration: none;
position: relative;
border: 1px solid white;
padding: 10px;
color: #333;
&:after {
content: '';
background-image:url('/icons/plus.svg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
display: inline-block;
width: 10px;
height: 10px;
transition: transform 300ms;
}
i import a svg by background-img in my after psudo.how can i change color of svg because fill property not work.