JSFiddle - React, Tailwind, and code Playground

JavaScript

var theSvg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
var theStyle = document.createElementNS("http://www.w3.org/2000/svg", "style");
theSvg.appendChild(theStyle);
console.log("theStyle.sheet=", theStyle.sheet);
document.body.appendChild(theSvg);
console.log("theStyle.sheet=", theStyle.sheet);