JSFiddle - React, Tailwind, and code Playground
HTML
<svg height="500" version="1.1" width="500" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative; left: -0.359375px;">
<path fill="none" stroke="#4572a7" d="m5,5l3,4l4,10l10,-5l3,4l4,10l10,-5l3,4l4,10l10,-5" stroke-width="2"></path>
</svg>
JavaScript
p = document.getElementsByTagName("path");
setInterval(function () {
d = p[0].getAttribute("d");
d = d.split("l").slice(1);
d.push(Math.random() * 10 + ',' + Math.random() * 10);
d = "m" + d.join("l");
p[0].setAttribute("d", d);
}, 10);