base64SVG.mjs11 lines · main
1const base64SVG = (svgContents) =>
2 Buffer.from(
3 svgContents
4 .replace('\n', '')
5 .replace(
6 'stroke="currentColor"',
7 'stroke="#000" style="background-color: #fff; border-radius: 2px"',
8 ),
9 ).toString('base64');
10
11export default base64SVG;