I try to use outlined icons, but they are always f...
# compose-desktop
i
I try to use outlined icons, but they are always filled. Does anyone know what am I doing wrong?
Copy code
Icon(
    imageVector = Icons.Outlined.Star,
    contentDescription = "contentDescription",
)
l
The source of truth here is the Google Fonts Icons page: https://fonts.google.com/icons?selected=Material+Icons&icon.query=star&icon.style=Outlined So it looks like the ‘outlined’ variant of the star icon, is
StarBorder
or
StarOutline
i
Thanks, that explains a lot 🙂 Developer should not suppose that outlined icons are actually outlined 😄