Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">text_size</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#text-size" />
</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-text-size" viewBox="0 0 24 24">
<g clip-path="url(#a)">
<path d="M8.38 13.22h6.94l1.6 3.74h2.66L13.72 2.82c-.24-.45-.69-.75-1.2-.8h-1.2c-.53-.01-1 .31-1.2.8l-6 14.14h2.66zm3.47-8.13 2.4 5.73h-4.8z"/>
<path stroke="#171c1e" stroke-width=".6" d="M24 8.429h-2.571V11h-.858V8.429H18V7.57h2.571V5h.858v2.571H24z"/>
</g>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.