Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">link_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#link-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-link-off" viewBox="0 0 24 24">
<path d="M19.808 19.74 18.548 21l-4.01-4h-1.73v-1.73L10.538 13h-2.73v-2h.73l-2.07-2.07A3.097 3.097 0 0 0 3.708 12c0 1.71 1.39 3.1 3.1 3.1h4V17h-4c-2.76 0-5-2.24-5-5 0-2.09 1.29-3.88 3.11-4.62l-3.11-3.11L3.078 3zm-3-12.74c2.76 0 5 2.24 5 5 0 1.95-1.12 3.61-2.75 4.44l-1.46-1.46a3.09 3.09 0 0 0 2.31-2.98c0-1.71-1.39-3.1-3.1-3.1h-4V7zm-1 4v2h-.19l-2-2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.