Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">edit_rename</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#edit-rename" />
</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-edit-rename" viewBox="0 0 24 24">
<path d="M17.81 9.943 6.75 21.003H3v-3.75l11.06-11.06zm3.591 7.959v3.1h-11.5l3.1-3.1zM17.665 3c.265 0 .518.105.705.292l2.34 2.34c.39.39.39 1.02 0 1.41l-1.83 1.83-3.75-3.75 1.83-1.83A1 1 0 0 1 17.665 3"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.