Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">folder_group</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#folder-group" />
</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-folder-group" viewBox="0 0 24 24">
<path d="M3.667 7.333V19h15v1.667h-15C2.75 20.667 2 19.917 2 19l.009-7.5H2V7.333zM12 4l1.667 1.667h6.666c.917 0 1.667.75 1.667 1.666v8.334a1.67 1.67 0 0 1-1.667 1.666H7c-.917 0-1.667-.75-1.667-1.666l.009-10C5.342 4.75 6.083 4 7 4z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.