Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">undo</i>
SVG sprite
Use for static sites when you only need a few icons.
<svg class="mi" width="1em" height="1em" fill="currentColor">
<use xlink:href="/modus-outlined-icons.svg#undo" />
</svg>
SVG code
Use when you don't want any dependency.
info_outlined
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-outline mi-undo" viewBox="0 0 24 24">
<path d="M15.79 7H7V5.04c0-.42-.48-.65-.81-.39l-3.7 2.96a.5.5 0 0 0 0 .78l3.7 2.96c.33.26.81.03.81-.39V9h8.82c2.09 0 3.96 1.52 4.16 3.6.23 2.38-1.64 4.4-3.98 4.4H8c-.55 0-1 .45-1 1s.45 1 1 1h8c3.57 0 6.42-3.13 5.95-6.79C21.56 9.19 18.84 7 15.79 7"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.