Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">comment_empty</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#comment-empty" />
</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-comment-empty" viewBox="0 0 24 24">
<path d="M2 11.74C2 6.91 6.47 3 11.98 3c5.52 0 9.99 3.9 9.99 8.73s-4.47 8.74-9.98 8.74c-.99 0-1.97-.13-2.93-.38-.65.32-2.07.92-4.35 1.38-.28.06-.57.11-.86.16-.25.04-.44-.22-.34-.45q.165-.39.3-.81c.32-.93.54-1.9.65-2.89C2.93 15.95 2 13.94 2 11.74"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.