Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">system</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#system" />
</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-system" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="m6.257 14.03 6-1.5.486 1.94-6 1.5z"/>
<path fill-rule="evenodd" d="M13.652 6.012a1 1 0 0 1 .836 1.14l-.917 5.962 4.093 3.639a1 1 0 0 1-1.328 1.494l-4.907-4.361 1.083-7.038a1 1 0 0 1 1.14-.836"/>
<path d="M17.25 14.25a3 3 0 1 1 0 6 3 3 0 0 1 0-6M6.75 12a3 3 0 1 1 0 6 3 3 0 0 1 0-6m6.75-8.25a3 3 0 1 1 0 6 3 3 0 0 1 0-6"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.