Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">shapes</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#shapes" />
</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-shapes" viewBox="0 0 24 24">
<path d="M15.9 8.2C15.9 4 12.4.5 8.2.5S.5 4 .5 8.2s3.5 7.7 7.7 7.7 7.7-3.5 7.7-7.7m-2.4 0c0 2.9-2.4 5.3-5.3 5.3s-5.3-2.4-5.3-5.3 2.4-5.3 5.3-5.3 5.3 2.4 5.3 5.3"/>
<path d="M20.4 7.1h-3.2l.1.6c.1.5.1 1 .1 1.5v.5h2.4v10.2H9.7v-2.4h-.5c-.5 0-1 0-1.5-.1l-.6-.1v3.2c0 1.2.9 2.1 2.1 2.1h11.2c1.2 0 2.1-.9 2.1-2.1V9.2c0-1.2-.9-2.1-2.1-2.1"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.