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_underlined</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="/modus-solid-icons.svg#text-underlined" />
</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-solid mi-text-underlined" viewBox="0 0 24 24">
<path d="M18 21H6v-1h12zm-5.99-2.96c3.06 0 4.58-1.84 4.58-4.53V6h-1.97v7.36c0 1.82-.78 2.87-2.59 2.87s-2.61-1.07-2.61-2.88V6h-2v7.52c0 2.69 1.33 4.51 4.59 4.51Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.