Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">phone_hang_up</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#phone-hang-up" />
</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-phone-hang-up" viewBox="0 0 24 24">
<path d="M14.12 15.47 13 16.59V12c0-.55-.45-1-1-1s-1 .45-1 1v4.59l-1.12-1.12c-.39-.39-1.03-.39-1.41 0s-.39 1.03 0 1.41l2.83 2.83c.39.39 1.03.39 1.41 0l2.83-2.83c.39-.39.39-1.03 0-1.41s-1.03-.39-1.41 0ZM15.78 4H8.24c-2.04-.02-3.9.86-5.18 2.27a6.97 6.97 0 0 0-1.77 3.95 2.32 2.32 0 0 0 2.31 2.57h2.78c.84 0 1.64-.37 2.16-1.03.5-.62.71-1.41.57-2.19l5.78-.03c-.15.79.05 1.6.56 2.24a2.75 2.75 0 0 0 2.16 1.04h2.78a2.317 2.317 0 0 0 2.32-2.56A6.97 6.97 0 0 0 15.78 4m4.86 6.72s-.12.11-.24.11h-2.78a.79.79 0 0 1-.6-.29.76.76 0 0 1-.15-.65c.13-.56 0-1.14-.37-1.59-.36-.45-.89-.71-1.47-.71H8.98c-.57-.01-1.1.24-1.47.69-.36.45-.5 1.03-.37 1.59.07.31-.07.54-.15.65s-.28.29-.6.29H3.61a.3.3 0 0 1-.24-.11.29.29 0 0 1-.08-.25A4.97 4.97 0 0 1 8.25 6h7.54c2.55.02 4.68 1.93 4.94 4.48.01.13-.06.2-.08.25Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.