astro-ghostcms/.pnpm-store/v3/files/b0/e8d0138bc81773b78e7a41b5c1f...

12 lines
405 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
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>";
}
exports.iconToHTML = iconToHTML;