Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">shortcut</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#shortcut" />
</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-shortcut" viewBox="0 0 24 24">
<path d="M19 14c-.55 0-1 .45-1 1v5H4V6h5c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1m3.82-5.66L14.76 2.1a.5.5 0 0 0-.28-.1c-.07 0-.14.02-.2.05-.16.08-.26.24-.26.41v3.12C6.86 5.85 6.38 12.34 6 17.59c-.02.22.13.42.34.48.04 0 .08.01.11.01.18 0 .34-.1.42-.27 1.68-3.69 3.03-5.9 5.66-5.9.45 0 .94.07 1.48.2v3.3c0 .18.1.34.26.42.06.03.13.04.19.04.11 0 .21-.04.29-.11l8.06-6.7a.46.46 0 0 0 .17-.36.47.47 0 0 0-.18-.36Zm-6.8 3.78v-1.57l-1.51-.38c-.7-.18-1.34-.26-1.97-.26-1.37 0-2.49.42-3.43 1.09.81-2.09 2.25-3.32 4.99-3.42l1.93-.07v-1.9l4.06 3.15-4.06 3.37Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.