Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">project_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#project-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-project-locked" viewBox="0 0 24 24">
<path d="M12 3v4h10v3.403a3.95 3.95 0 0 0-2-.852V9h-8v2h2v2h-2v2h2v2h-2v2h2.5v1c0 .355.077.693.212 1H2V3zm7.5 8a2.5 2.5 0 0 1 2.5 2.5V15c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1v-1.5a2.5 2.5 0 0 1 2.5-2.5M4 19h2v-2H4zm4 0h2v-2H8zm-4-4h2v-2H4zm4 0h2v-2H8zm11.5-3c-.83 0-1.5.67-1.5 1.5V15h3v-1.5c0-.83-.67-1.5-1.5-1.5M4 11h2V9H4zm4 0h2V9H8zM4 7h2V5H4zm4 0h2V5H8z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.