export function pauseSVG(namespace: string): SVGElement { const NS = "http://www.w3.org/2000/svg"; const $svg = document.createElementNS(NS, "svg"); $svg.setAttribute("class", `${namespace}-footer-icon-pause`); $svg.setAttribute("viewBox", "0 0 500 500"); const $path = document.createElementNS(NS, "path"); $path.setAttribute("fill", "currentColor"); $path.setAttribute( "d", "M312.491 78.261c0-6.159 4.893-11.213 11.04-11.213 6.158 0 11.211 5.054 11.211 11.213v343.478c0 6.159-5.053 11.213-11.211 11.213-6.147 0-11.04-5.054-11.04-11.213V78.261zM165.257 78.261c0-6.159 4.893-11.213 11.04-11.213 6.158 0 11.211 5.054 11.211 11.213v343.478c0 6.159-5.053 11.213-11.211 11.213-6.147 0-11.04-5.054-11.04-11.213V78.261z" ); $svg.appendChild($path); return $svg; }