JSFiddle - React, Tailwind, and code Playground
by theblang
HTML
<svg id="mySVG" width="500" height="400">
<circle cx=100 cy=100 r=50 fill="green" stroke="red" stroke-width="10"/>
<circle id="test" cx=200 cy=200 r=50 />
<rect x="100" y="230" width="30px" height="20px" />
</svg>
CSS
#mySVG {
border: solid thin black;
}
#test {
fill: blue;
}