Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">close_heavy</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#close-heavy" />
</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-close-heavy" viewBox="0 0 24 24">
<path d="m14.83 12 3.59-3.59c.78-.78.78-2.05 0-2.83s-2.05-.78-2.83 0L12 9.17 8.41 5.58c-.78-.78-2.05-.78-2.83 0s-.78 2.05 0 2.83L9.17 12l-3.59 3.59a2.004 2.004 0 0 0 1.41 3.42c.51 0 1.02-.2 1.41-.59l3.59-3.59 3.59 3.59c.39.39.9.59 1.41.59s1.02-.2 1.41-.59c.78-.78.78-2.05 0-2.83L14.81 12Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.