export const svgMinify = (svg: string) => { return svg .replace(/\sdata-svg-width="[^"]+"|data-svg-height="[^"]+"/g, '') .replaceAll('', '/>') .replaceAll(' aria-hidden="true"', '') // Added automatically by the block .replaceAll(' focusable="false"', '') }