Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">update</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#update" />
</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-update" viewBox="0 0 24 24">
<path d="M4 11.99H2.21c-.45 0-.67-.54-.35-.85l2.79-2.8c.2-.2.51-.2.71 0l2.79 2.79c.31.32.09.86-.36.86H6c0 3.31 2.69 6 6 6 .79 0 1.56-.15 2.25-.44.36-.15.77-.04 1.04.23.51.51.33 1.37-.34 1.64-.91.37-1.91.57-2.95.57-4.42 0-8-3.58-8-8m14 0c0-3.31-2.69-6-6-6-.79 0-1.56.15-2.25.44-.36.15-.77.04-1.04-.23-.51-.51-.33-1.37.34-1.64.91-.37 1.91-.57 2.95-.57 4.42 0 8 3.58 8 8h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.51.2-.71 0l-2.79-2.79a.5.5 0 0 1 .36-.85z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.