Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">street_measurement</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#street-measurement" />
</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-street-measurement" viewBox="0 0 24 24">
<path d="M10 2.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5m6.85 19.62a.757.757 0 0 1-1-.36l-3.11-6.66v3.91c0 .41-.34.75-.75.75s-.75-.34-.75-.75V15.1l-3.11 6.66a.757.757 0 0 1-1 .36.74.74 0 0 1-.36-1l4.14-8.87h-.59c-.87 0-1.58-.73-1.58-1.62V5.38c0-.9.71-1.62 1.58-1.62h3.33c.87 0 1.58.73 1.58 1.62v5.25c0 .9-.71 1.62-1.58 1.62h-.59l4.14 8.87c.18.38.01.82-.36 1Zm-6.52-11.37h3.33s.08-.05.08-.12V5.38c0-.08-.05-.12-.08-.12h-3.33s-.08.05-.08.12v5.25c0 .08.05.12.08.12M12 6c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.