export function parseSvg(svgStr: string): string[] {
  const matches = svgStr.match(/d="[^"]*"/g) || [];
  return matches.map(match => match.replace('d="', '').replace('"', ''));
}
