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-solid-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-solid mi-printer" viewBox="0 0 24 24">
<path d="M10 19.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5m.5-1.5h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5s.22.5.5.5m9.5-7v5h-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 3m-5 4H9v6h6zm0-9.5c0-.28-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5V8h6zm3 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.