i have a very simple image
Image(
imageVector = vectorResource(Res.drawable.swords),
contentDescription = null,
modifier = Modifier.width(82.dp)
.clip(shape = RoundedCornerShape(16.dp))
.background(Color.DarkGray)
)
but it is not showing as you can see on image below
resources are as vector XML where they are supposed to
my question is what am i missing?

