Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">bolt</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#bolt" />
</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-bolt" viewBox="0 0 24 24">
<path d="m1.83 22.77 7.63-10.26H5.53L12.43 3h10.39l-6.05 6.01h5.77zm6.64-11.76h3.97l-4.27 5.74 9.39-6.24h-4.44l6.05-6.01h-5.99l-4.72 6.51Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.