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_underline</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-underline" />
</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-underline" viewBox="0 0 24 24">
<path d="M21.05 20.31H2.65v1.7h18.4zM8.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"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.