base64SVG.mjs11 lines · main
| 1 | const 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 | |
| 11 | export default base64SVG; |