Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">explorer</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#explorer" />
</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-explorer" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.162 14.402a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0m4.42 5.5-1.42 1.42-3.12-3.12c-.69.44-1.51.7-2.39.7-2.48 0-4.49-2.01-4.49-4.5s2.01-4.5 4.5-4.5 4.5 2.01 4.5 4.5c0 .88-.26 1.69-.7 2.391zM11.51 18H3c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h6l2 2h8c1.1 0 2 .9 2 2v7.1c-.587-2.406-2.754-4.198-5.338-4.198a5.507 5.507 0 0 0-5.5 5.5c0 1.376.511 2.632 1.347 3.598"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.