Tyler Sticka avatar Tyler Sticka

Which SVG technique performs best for way too many icons?

Screenshot of “Which SVG technique performs best for way too many icons?”

Using SVG with performance in mind is not an easy topic because there are many ways to show SVG images in pages.

Just yesterday, I chose to inline all SVG icons on my photography site because there's a bug in Firefox which downloads my nice SVG sprite multiple times for each shown icon…

I agree with Tyler that having so many different icons in one single screen is not so common, so be careful also with UX and DX when you chose your way.

For example, you'll see in Tyler's chart that many "Inline SVG" render faster than an inline "Symbol Sprite". But if your HTML weights 10 times more with many inline SVG, the browser will take more time to get it, so render will start later. "Render time" is not the only useful metric there.

On the DX side, there are multiple tradeoffs to consider. It can be more difficult to maintain an SVG sprite (here's some help) than a folder with all SVG images. It can be simpler to have all color variants available as individual files, but it's more efficient to have one single SVG per symbol and use CSS to style it in different ways (color, stroke width, etc.), but it's not possible with every method. Difficult choices, and difficult to change once the project is started.


  1. How I build my SVG sprites

    I'm using an SVG sprite on this site to make sure I don't repeat SVG code for icons that are used multiple times, and I inline it so the rendering doesn't depend on another resource loading. Here's how I build this sprite from individual SVG icons.