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_map</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-map" />
</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-map" viewBox="0 0 24 24">
<path d="M9.59 15.83 6.7 18.7 9 21H3v-6l2.3 2.3 2.87-2.89zm9.11 1.47L21 15v6h-6l2.3-2.3-2.89-2.87 1.42-1.42zm-12-12 2.89 2.87-1.42 1.42L5.3 6.7 3 9V3h6zM21 9l-2.3-2.3-2.87 2.89-1.42-1.42L17.3 5.3 15 3h6z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.