Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">refresh</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#refresh" />
</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-refresh" viewBox="0 0 24 24">
<path d="M18.355 5.644A8.96 8.96 0 0 0 11.995 3 8.99 8.99 0 0 0 3 12c0 4.973 4.019 9 8.994 9 4.2 0 7.7-2.869 8.702-6.75h-2.341a6.74 6.74 0 0 1-6.36 4.5c-3.727 0-6.755-3.026-6.755-6.75s3.028-6.75 6.754-6.75c1.869 0 3.535.776 4.75 2.003l-3.624 3.622H21V3z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.