Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">user_supervisor</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="/connect-icons.svg#user-supervisor" />
</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-connect mi-user-supervisor" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M11.99 8c0 1.66-1.33 3-2.99 3S6 9.66 6 8s1.34-3 3-3 2.99 1.34 2.99 3m7 1.5c0 1.38-1.11 2.5-2.49 2.5a2.5 2.5 0 0 1 0-5c1.38 0 2.49 1.12 2.49 2.5M16.5 14c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75M2 16.5C2 14.17 6.67 13 9 13c.66 0 1.5.1 2.37.28C9.33 14.41 9 15.9 9 16.75V19H2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.