Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">map_layers</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#map-layers" />
</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-map-layers" viewBox="0 0 24 24">
<path d="M20.46 11.14c.65.39.65 1.33 0 1.72l-7.43 4.43c-.63.38-1.42.38-2.05 0l-7.43-4.43c-.65-.39-.65-1.33 0-1.72.28-.17.62-.17.9 0l6.53 3.89c.63.38 1.42.38 2.05 0l6.53-3.89c.28-.17.62-.17.9 0m-9.48-8.43L3.54 7.14c-.65.39-.65 1.33 0 1.72l7.43 4.43c.63.38 1.42.38 2.05 0l7.43-4.43c.65-.39.65-1.33 0-1.72l-7.43-4.43c-.63-.38-1.42-.38-2.05 0Zm2.05 16.32c-.63.38-1.42.38-2.05 0l-6.53-3.89a.86.86 0 0 0-.9 0c-.65.39-.65 1.33 0 1.72l7.43 4.43c.63.38 1.42.38 2.05 0l7.43-4.43c.65-.39.65-1.33 0-1.72a.86.86 0 0 0-.9 0z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.