Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">freight_matching</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#freight-matching" />
</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-freight-matching" viewBox="0 0 24 24">
<path d="M19.75 12.5h-6c-.69 0-1.25.56-1.25 1.25v6c0 .69.56 1.25 1.25 1.25h6c.69 0 1.25-.56 1.25-1.25v-6c0-.69-.56-1.25-1.25-1.25m-.25 7H14V14h2v2h2v-2h1.5zm-9.25-7h-6c-.69 0-1.25.56-1.25 1.25v6c0 .69.56 1.25 1.25 1.25h6c.69 0 1.25-.56 1.25-1.25v-6c0-.69-.56-1.25-1.25-1.25m-.25 7H4.5V14H6v2h2v-2h2zM9 12h6c.69 0 1.25-.56 1.25-1.25v-6c0-.69-.56-1.25-1.25-1.25H9c-.69 0-1.25.56-1.25 1.25v6c0 .69.56 1.25 1.25 1.25m.25-7H11v2h2V5h1.75v5.5h-5.5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.