Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">zoom_out_1</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#zoom-out-1" />
</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-zoom-out-1" viewBox="0 0 24 24">
<path d="M9.755 3.255a6.5 6.5 0 0 1 6.5 6.5c0 1.61-.59 3.09-1.57 4.23l.28.27h.79l4.99 5-1.49 1.49-5-4.99v-.79l-.27-.28a6.47 6.47 0 0 1-4.23 1.57 6.5 6.5 0 1 1 0-13m0 2c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5m2.5 5h-5v-1h5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.