Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">business_off</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#business-off" />
</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-business-off" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M1 2.3 2.2 1l21 20.9-1.3 1.3-3-3h-16v-16zm7.9 1.9h2v2H10l2.9 2.9v-.9h8v8.9l2 2V6.2h-10v-4H6l2.9 2.9zm8 6h2v2h-2zm-10 8h-2v-2h2zm-2-4h2v-2h-2zm2-4h-2v-2h2zm2 8h2v-2h-2zm2-4h-2v-2h2zm2 2v2h4l-2-2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.