SVGCircle = (x, y, r, fill) =>
`
<rect x="${x}" y="${y}" width="${r}" height="${r}" fill=${randomColor()} stroke="white" stroke-opacity="0.5">
<animate attributeName="x"from="${x}" to="${random(
random(0, 200),
random(0, 200)
)}" dur="50s" repeatCount="indefinite"
/>
<animate attributeName="y" from="${y}" to="${random(
random(0, 200),
random(0, 200)
)}" dur="50s" repeatCount="indefinite"
/>
<animate attributeName="width" from="${r}" to="${
Math.random() * 50
}" dur="50s" repeatCount="indefinite"
/>
<animateTransform attributeName="transform"
type="rotate"
from="1 ${x + r / 2} ${y + r / 2}"
to="360 ${x + r / 2} ${y + r / 2}"
dur="10s"
repeatCount="indefinite"/>
</rect>
`