Story — design systems
Auditing a drifting icon library, screen by screen
“I inherited a product with icons from four different eras stacked on top of each other. Before I could consolidate anything, I needed to know exactly what was on the page — not what the Figma file claimed was on the page.”
The setup
Six hundred screens, and a design file nobody trusted
What wasn't working
“The Figma library had drifted years ago. Three ‘settings’ gears, two ‘close’ crosses at different stroke weights, an ‘export’ arrow that had been quietly redrawn in 2022 but never updated in the design file. I couldn't audit against Figma because Figma was part of the problem. The truth was in the DOM.”
Maya's first pass was the manual one every front-end person knows: open DevTools, find the <svg> node, copy the outer HTML, paste it into a scratch file, add the xmlns by hand so it would actually render, repeat. “About forty icons in, on a Tuesday, I admitted this was going to eat my whole week and I'd still make transcription mistakes.”
The switch
Instead of copying nodes one at a time, Maya ran SVG Downloader on each major screen. The popup walks the DOM and reports a count — 0 → 24 SVGs found — then hands over every one as a real file, namespace repaired so it opens straight into Figma and VS Code.
“The count was the first thing that helped. A screen I thought had eight icons reported fourteen — six were decorative backgrounds set in CSS that never showed up in any inventory. Then Download All as ZIP gave me the whole screen's set, de-duplicated and numbered, in one go.” Diffing standalone files is trivial; diffing a running app is not.
“It turned the audit from archaeology into a diff. I had the actual markup for every icon in the product, side by side, in an afternoon — and I could finally prove which ones were genuinely the same.”
— Maya Okafor, design systems engineerThe result
- ~40near-duplicate icons found and collapsed to a canonical set
- 1 afternooninstead of the week the manual copy-paste pass was tracking toward
- 0hand-typed
xmlnsfixes — every file opened first try
- What did the work
- Inline SVG detection for the components, CSS background catch for the decorative ones, and Download All as ZIP per screen.
- Why not DevTools
- Copying nodes by hand loses the
xmlns, misses CSS and sprite sources entirely, and doesn't scale past a few icons. See extract SVG icons. - Privacy
- Proprietary dashboard, so it mattered: nothing left the machine. No upload, no account, no analytics.
Composite story — an illustrative but representative workflow. The person and company are fictional; the extension's behaviour described here is real. More stories →
Audit what's really on the page
Count the vectors, pull the real markup, take the whole screen as a ZIP. Free and on-device.