Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">pager</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#pager" />
</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-pager" viewBox="0 0 24 24">
<path d="M16 13.066a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1zM5 14.983l1.599 1.065a.5.5 0 0 0 .777-.416v-2.131a.5.5 0 0 0-.777-.416L5 14.15a.5.5 0 0 0 0 .832Zm5.153-1.898 1.599 1.066a.5.5 0 0 1 0 .832l-1.599 1.065a.5.5 0 0 1-.777-.416v-2.131a.5.5 0 0 1 .777-.416"/>
<path d="M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2m16 6V7H4v4zm0 6v-5H4v5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.