Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">check_mark</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#check-mark" />
</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-check-mark" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="m17.98 9.01-7.645 7.644a1.175 1.175 0 0 1-1.665 0L5.345 13.33a1.176 1.176 0 0 1 1.663-1.664l2.494 2.493 6.815-6.814a1.175 1.175 0 0 1 1.663 0 1.18 1.18 0 0 1 0 1.664"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.