Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">grid</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#grid" />
</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-grid" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M17 2v3.182h-4.091V2h-1.818v3.182H7V2H5.182v3.182H2V7h3.182v4.091H2v1.818h3.182V17H2v1.817h3.182V22H7v-3.183h4.091V22h1.818v-3.183H17V22h1.818v-3.183h3.181V17h-3.181v-4.091h3.181v-1.818h-3.181V7h3.181V5.182h-3.181V2zm-4.091 9.09H17V7h-4.091zM7 11.09h4.09V7H7zM12.909 17H17v-4.091h-4.091zM7 17h4.09v-4.091H7z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.