Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">cloud_off</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#cloud-off" />
</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-cloud-off" viewBox="0 0 24 24">
<path d="M21 19.73 19.73 21l-2-2H6c-3.31 0-6-2.69-6-6 0-3.23 2.56-5.85 5.75-5.99L3 4.27 4.27 3zM12 3a7.49 7.49 0 0 1 7.35 6.04C21.95 9.22 24 11.36 24 14c0 1.68-.84 3.16-2.11 4.07l-1.45-1.45C21.36 16.11 22 15.13 22 14c0-1.66-1.34-3-3-3h-1.5v-.5a5.497 5.497 0 0 0-8.05-4.87L7.99 4.17A7.4 7.4 0 0 1 12 3M6 9c-2.21 0-4 1.79-4 4s1.79 4 4 4h9.73l-8-8z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.