JSFiddle - React, Tailwind, and code Playground

by maros_urbanec

HTML

<html>
<body>
    <svg width="100" height="100">
        <defs>
            <circle id="circle" r="10" class="myCircle" />
        </defs>
        <use xlink:href="#circle" transform="translate(30 30)" />
    </svg>
</body>
</html>

CSS

.myCircle {
    fill: red;
}