Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">arrow_down</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-outlined-icons.svg#arrow-down" />
</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-outline mi-arrow-down" viewBox="0 0 24 24">
<path d="M12 20.79c-.38 0-.77-.15-1.06-.44l-6.79-6.79A1.497 1.497 0 0 1 5.21 11H8V4.5C8 3.67 8.67 3 9.5 3h5c.83 0 1.5.67 1.5 1.5V11h2.79c.61 0 1.15.36 1.39.93s.11 1.2-.33 1.63l-6.79 6.79c-.29.29-.68.44-1.06.44M6.41 13 12 18.59 17.59 13H14V5h-4v8z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.