Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">history</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-solid-icons.svg#history" />
</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-solid mi-history" viewBox="0 0 24 24">
<path d="M13.26 3C8.17 2.86 4 6.95 4 12H2.21c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8a.5.5 0 0 0-.36-.85H6c0-3.89 3.16-7.03 7.07-7s6.87 3.15 6.93 6.86c.07 3.93-3.09 7.14-7 7.14-.3 0-.59-.02-.88-.06a.99.99 0 0 0-1.12.99c0 .51.38.93.88 1 .37.05.74.07 1.12.07 5.05 0 9.14-4.17 9-9.26-.13-4.7-4.04-8.61-8.74-8.74m-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.34-.74-.75-.74"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.