Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">sort_ascending</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#sort-ascending" />
</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-sort-ascending" viewBox="0 0 24 24">
<path d="M9 6H3v2h6zm12.66 4.52h-1.935V6h-1.29v4.52H16.5l2.58 2.574zM15 11H3v2h12zm6 5H3v2h18z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.