JSFiddle - React, Tailwind, and code Playground
HTML
<div id="my-div"></div>
JavaScript
const content = `
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path d="M10 2v2.933C3.778 5.667.889 10.333 0 14c2.222-2.567 5.556-3 10-3v3l6-6-6-6z"/>
</svg>
`;
const myDivElement = document.getElementByID('my-div');
myDivElement.innerHTML = content;