Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">brush</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#brush" />
</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-brush" viewBox="0 0 24 24">
<path d="M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33 0-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1m0-2c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.5 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3M20.72 3.28a1.49 1.49 0 0 0-2.12 0l-9.41 9.41 2.12 2.12 9.41-9.41c.59-.59.59-1.54 0-2.12"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.