Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">3d_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="/transportation-icons.svg#3d-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-solid mi-3d-buildings" viewBox="0 0 24 24">
<path d="M2 19.872V10l7 2v10ZM2 9l7.5 2.137L17 9 9.5 6.863Zm8 13 7-2V10l-7 2Zm8-16.572V18l4-1.143V4.285ZM17.5 2 13 3.284l4.5 1.285L22 3.284ZM13 4.28v2.583l4 1.143V5.423Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.