mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-18 18:59:45 -07:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
const SVG_NS = "http://www.w3.org/2000/svg";
|
|
|
|
/**
|
|
* @template {keyof SVGElementTagNameMap} Name
|
|
* @param {Name} name
|
|
* @returns {SVGElementTagNameMap[Name]}
|
|
*/
|
|
export function createSvgElement(name) {
|
|
return document.createElementNS(SVG_NS, name);
|
|
}
|