theSvg2 = {
const text = `<svg width="${100}" height="${100}">
<path d=""></path>
<path d=""></path>
<path d=""></path>
<path d=""></path>
</svg>`;
const document = new DOMParser().parseFromString(text, "image/svg+xml");
const svg = d3.select(document.documentElement).remove();
return svg;
}