Current SVG "parsing" fails on one icon

The logic for extracting path data could likely be improved in scripts/generateIconTypescriptFiles/exportIconTypescriptFile.ts.

Currently, it looks for a specific string on every line in the file and returns the SVG path data from that line. That is what is used to build the IconDefinition object which is written to the icon Typescript file.

Instead, is there a better way to parse this file and retrieve the necessary SVG data to build the IconDefinition?

This method currently errors on the remixicon/icons/System/checkbox-blank-circle-fill.svg icon as it uses a <circle> tag to build the SVG instead of a <path> with d.