Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">battery_50_horizontal</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#battery-50-horizontal" />
</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-battery-50-horizontal" viewBox="0 0 24 24">
<path d="M5 10v4h6v-4zm15 5.67V14h1c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-1V8.33C20 7.6 19.4 7 18.67 7H3.34C2.6 7 2 7.6 2 8.34v7.32C2 16.4 2.6 17 3.33 17h15.34c.73 0 1.33-.6 1.33-1.33M4 15V9h14v6z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.