Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">no_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#no-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-no-truck" viewBox="0 0 24 24">
<path d="M6.917 5h-.003L4.707 2.793a1 1 0 0 0-1.414 1.414L4.086 5H3.5c-.55 0-1 .45-1 1.01v9.49H4c0 1.66 1.34 3 3 3s3-1.34 3-3h4.52l.067.001L20.086 21a1 1 0 0 0 1.414-1.414l-1.911-1.911.001-.002-1.061-1.061h-.002l-2.12-2.119.002-.002-1.949-1.948v.003L8.914 7h.003zM4.5 7h1.586l6.5 6.5H9.22c-.11-.12-.23-.23-.36-.34-.51-.41-1.15-.66-1.86-.66-1.04 0-1.96.54-2.5 1.35zM7 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 .015.005.024.012.036l.008.014c.04.14.07.28.07.44 0 .83-.67 1.5-1.5 1.5m4.745-10-2-2H19.9a1 1 0 0 1 .89.55L21.51 7h-1.72l1.74 3.5h.09c.49.06.88.46.88.97v4.03h-1.98q0 .134-.011.263L14.46 9.715V7zm4.715 3.5h3.39L18.11 7h-1.65z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.