Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">view_hide_others</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="/connect-icons.svg#view-hide-others" />
</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-connect mi-view-hide-others" viewBox="0 0 24 24">
<path d="M10.4 22h-2v-2h2zm4-2v2h-2v-2zm4 0v2h-2v-2zm4 0c0 1-1 2-2 2v-2zM17 3c1.1 0 2 .9 2 2v11c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zm5.4 13v2h-2v-2zM3 16h14V5H3zm7-9.4c2.6 0 4.8 1.6 5.7 3.9-.9 2.3-3.1 3.9-5.7 3.9s-4.8-1.6-5.7-3.9c.9-2.3 3.1-3.9 5.7-3.9M22.4 14h-2v-2h2zM10 7.9c-1.5.1-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6 2.6-1.2 2.6-2.6-1.2-2.6-2.6-2.6m0 1c.9 0 1.6.7 1.6 1.6s-.7 1.6-1.6 1.6-1.6-.7-1.6-1.6.7-1.6 1.6-1.6M22.4 10h-2V8h2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.