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_locked</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-locked" />
</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-locked" viewBox="0 0 24 24">
<path d="m9.808 4 2 2h8c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2h-16c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm5.478 4.8a1.897 1.897 0 0 0-1.903 1.905v.762h-.381a.76.76 0 0 0-.763.76v3.811a.76.76 0 0 0 .763.762h4.612a.76.76 0 0 0 .763-.762v-3.81c-.043-.423-.382-.761-.805-.761h-.38v-.762A1.897 1.897 0 0 0 15.285 8.8m0 .72c.636 0 1.186.55 1.186 1.184v.763h-2.37v-.763c0-.635.55-1.184 1.185-1.184"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.