Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">flowchart</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#flowchart" />
</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-flowchart" viewBox="0 0 24 24">
<path d="M20 16.5h-.25V10h-7V7.5H15c.83 0 1.5-.67 1.5-1.5V4c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2.25V10h-7v6.5H4c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5h-.25v-5h12.5v5H18c-.83 0-1.5.67-1.5 1.5v.25h-2.13A2.5 2.5 0 0 0 12 16.5a2.5 2.5 0 0 0 0 5c1.12 0 2.05-.74 2.37-1.75h2.13V20c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5M8.5 6V4c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5H9c-.28 0-.5-.22-.5-.5m-2 12v2c0 .28-.22.5-.5.5H4c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5m5.5 2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m8.5-.5c0 .28-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.