+9
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Generate <svg>
|
||||
*/
|
||||
function iconToHTML(body, attributes) {
|
||||
let renderAttribsHTML = body.indexOf("xlink:") === -1 ? "" : " xmlns:xlink=\"http://www.w3.org/1999/xlink\"";
|
||||
for (const attr in attributes) renderAttribsHTML += " " + attr + "=\"" + attributes[attr] + "\"";
|
||||
return "<svg xmlns=\"http://www.w3.org/2000/svg\"" + renderAttribsHTML + ">" + body + "</svg>";
|
||||
}
|
||||
export { iconToHTML };
|
||||
Reference in New Issue
Block a user