Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">printer</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#printer" />
</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-printer" viewBox="0 0 24 24">
<path d="M13.5 18h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5m-.5 1.5c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5m7-8.5v5h-3v-1h-1v7H8v-7H7v1H4v-5c0-1.65 1.35-3 3-3h1V5.5C8 4.67 8.67 4 9.5 4h5c.83 0 1.5.67 1.5 1.5V8h1c1.65 0 3 1.35 3 3M9 8h6V5.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5zm6 7H9v6h6zm3-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2h12zm-1 .5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.