I am converting SVG to vector asset by importing it to android studio. How can I draw that vector to canvas with jetpack compose. The only option I see is drawImage, which only takes ImageBitmap. But this is a vector and not a bitmap, so is there a way to just draw ImageVector.
val logoVector: ImageVector = ImageVector.vectorResource(id = R.drawable.diasyst_logo)