utils.ts 105 B

123
  1. export function cleanUpSvgCode(svgCode: string): string {
  2. return svgCode.replaceAll('<br>', '<br/>')
  3. }