Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">buildings</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="/modus-outlined-icons.svg#buildings" />
</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-outline mi-buildings" viewBox="0 0 24 24">
<path d="M8 18H6v2h2zm5-8h2V8h-2zm0 3h2v-2h-2zm0 3h2v-2h-2zm-5-4H6v2h2zm-5 5h2v-2H3zm5-2H6v2h2zm-5 5h2v-2H3zm16-7h2v-2h-2zm-6-6h2V5h-2zm6 0h2V5h-2zm0 9h2v-2h-2zm2.5-13H20V2h-6v1h-1.5c-.83 0-1.5.67-1.5 1.5V21h-1V10H5c-.55 0-1 .45-1 1v1.5H2c-.55 0-1 .45-1 1V22h22V4.5c0-.83-.67-1.5-1.5-1.5M9 21H2v-7.5h3V11h4zm13 0h-4v-2.5h-2V21h-4V4.5c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5zm-3-11h2V8h-2zm-3 6h2v-2h-2zm0-3h2v-2h-2zm0-3h2V8h-2zm0-3h2V5h-2z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.