Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">tune</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#tune" />
</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-tune" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M17 9h-2V3h2v2h4v2h-4zM3 7V5h10v2zm0 12v-2h6v2zm10 2v-2h8v-2h-8v-2h-2v6zM7 11V9h2v6H7v-2H3v-2zm14 2v-2H11v2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.