JSFiddle - React, Tailwind, and code Playground

by Palpatim

HTML

<svg version="1.1"
     xmlns="http://www.w3.org/2000/svg" xmlns:xlink= "http://www.w3.org/1999/xlink">
</svg>

JavaScript

var SVGDaddy = "http://www.w3.org/2000/svg";
    var TESTOBRAZKA = document.createElementNS(SVGDaddy, "image");
    with(TESTOBRAZKA) {
        setAttributeNS('http://www.w3.org/1999/xlink','href','http://6962mnpm.blox.pl/resource/118392wtf.jpg');
        setAttribute("height", "250px");
        setAttribute("width", "250px");
        setAttribute("x", "100px");
    }
    document.querySelector("svg").appendChild(TESTOBRAZKA);