Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">delivery_truck</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#delivery-truck" />
</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-delivery-truck" viewBox="0 0 24 24">
<path d="M21.12 10.5h-.09L19.29 7h1.72l-.72-1.45A1 1 0 0 0 19.4 5H3c-.55 0-1 .45-1 1.01v9.49h1.5c0 1.66 1.34 3 3 3s3-1.34 3-3h4.52c0 1.66 1.34 3 3 3s3-1.34 3-3H22v-4.03c0-.51-.39-.91-.88-.97M6.5 17c-.83 0-1.5-.67-1.5-1.5v-.03c0-.17.04-.33.09-.48 0-.02 0-.03.01-.05.06-.16.15-.3.26-.42.28-.32.67-.52 1.13-.52.17 0 .34.04.5.09.43.15.77.49.92.92 0 .02.01.03.02.05.04.14.07.28.07.44 0 .83-.67 1.5-1.5 1.5m7.46-3.5H8.72c-.11-.12-.23-.23-.36-.34-.51-.41-1.15-.66-1.86-.66-1.04 0-1.96.54-2.5 1.35V7h9.96zm3.06 3.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m-1.06-6.5V7h1.65l1.74 3.5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.