Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">paper_plane</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#paper-plane" />
</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-paper-plane" viewBox="0 0 24 24">
<path d="M3.063 13.5q-.062.241-.063.5v3.874a2 2 0 0 0 2.838 1.816l14.695-6.782a1 1 0 0 0 0-1.816L5.838 4.31A2 2 0 0 0 3 6.126V10a2 2 0 0 0 2 2 2 2 0 0 0-1.937 1.5M5 12V6.126L17.727 12 5 17.874z"/>
<path d="M14 12.5H5v-1h9a.5.5 0 0 1 0 1"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.