Cannot pass className inside props
AntoineKM opened this issue · comments
Antoine Kingue commented
nusu commented
That's not possible at the moment but you can tweak it. Wrap the component around a div
<div class="avatar-wrapper">
<Avvvatars value="something" />
</div>
then apply styles like this:
.avatar-wrapper > div {
background-color: #000;
}
that should do the trick