Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">activity</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#activity" />
</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-activity" viewBox="0 0 24 24">
<path d="M13.5 3a9 9 0 0 1 0 18c-2.49 0-4.73-1.01-6.36-2.64l1.42-1.42A6.94 6.94 0 0 0 13.5 19c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7h3l-4.04 4.03-.07-.14L1.5 12h3a9 9 0 0 1 9-9m.5 5v4.25l3.5 2.08-.72 1.21L12.5 13V8z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.