Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">delete_all</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#delete-all" />
</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-delete-all" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M10.9 4.1h3.3v2.2H1V4.1h3.3L5.4 3h4.4zM2.1 18.4c0 1.21.99 2.2 2.2 2.2h6.6c1.21 0 2.2-.99 2.2-2.2v-11h-11zm13.2-11H23v2.2h-7.7zm0 8.8h4.4v2.2h-4.4zm6.6-4.4h-6.6V14h6.6z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.