How to set the fill property of an SVG?

Is there any way to set the fill property of a SVG? (fill=“red”) With the option “Icon Color” it seems, I can only set the “stroke” color

<svg height="100" width="100">
 <circle cx="50" cy="50" r="40" stroke="black"
         stroke-width="3" fill="red" />
</svg>

You cannot in general recolor svgs arbitrarily, you’ll need to use an SVG editor if you want to do something like that. The coloring for icons is a special case that should be limited to monochromatic icons…

@yang Have you though about adding something like that? e.g. that if I click on a SVG icon/image, that it expand sub layers with the different elements, e.g. rect, circle etc. so that I can color it? (Like I can do it in Figma)

Figma is a vector image editor, Plasmic just has a different focus (on building real things), so we realistically won’t get around to tackling the superset of vector image editing anytime soon. Though, we are thinking about how to allow others to contribute so that progress is not blocked on our small team…