| 9 | * @returns {SVGElement} Created SVG element |
| 10 | */ |
| 11 | const createSVGElement = tagName => { |
| 12 | return document.createElementNS('http://www.w3.org/2000/svg', tagName); |
| 13 | }; |
| 14 | |
| 15 | /** |
| 16 | * SVG Renderer for JustGage - Modern implementation using native SVG APIs |