Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">person_add</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-solid-icons.svg#person-add" />
</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-solid mi-person-add" viewBox="0 0 24 24">
<path d="M9 11c0-.55-.45-1-1-1H6V8c0-.55-.45-1-1-1s-1 .45-1 1v2H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1m5.5.94c2.23 0 4.04-1.81 4.04-4.04s-1.81-4.04-4.04-4.04-4.04 1.81-4.04 4.04 1.81 4.04 4.04 4.04m6.81 2.75c-1.31-.6-3.72-1.48-6.82-1.47-3.08 0-5.51.87-6.82 1.47s-1.68 1.08-1.68 1.93c0 .46.25 1.39.47 2.18.21.72.88 1.22 1.63 1.22h12.8c.76 0 1.42-.5 1.63-1.22.23-.77.47-1.72.47-2.18 0-.85-.37-1.33-1.68-1.93"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.