# Icons
The ZigZagUI library uses an svg-based icon system, with a generated
spritesheet.svg.
# Format
All icons must be on a 24 x 24 artboard, with no color information encoded (prefer to use currentColor in the svg source code).
- Remove the
widthandheightproperties - Make sure its
viewBoxis0 0 24 24 - Replace
fillcolor on the paths from a hexcode tocurrentColor
The final SVG should look similar to the following
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g fill="currentColor">
<path d="M0 0h24v24H0z"/>
...
← Accessibility List →