Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">box_zoom</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#box-zoom" />
</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-box-zoom" viewBox="0 0 24 24">
<path d="M5 14v1H2v-3h1v2ZM3 8H2v2h1Zm2-5H2v3h1V4h2Zm4 0H7v1h2Zm4 0h-2v1h2Zm2 0v1h2v2h1V3Zm-1 7h-1v2h-2v1h2v2h1v-2h2v-1h-2Zm8 9.887L20.887 21l-3.554-3.553v-.564l-.329-.329a5.463 5.463 0 1 1 .55-.55l.33.33h.563Zm-4.667-7.443a3.889 3.889 0 1 0-3.889 3.89 3.893 3.893 0 0 0 3.89-3.89Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.