Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">dispatch</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#dispatch" />
</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-dispatch" viewBox="0 0 24 24">
<path d="M18 4a3.95 3.95 0 0 0-4 4 4 4 0 0 0 8 0 3.95 3.95 0 0 0-4-4m1.226 7-2.032-2.291A.9.9 0 0 1 17 8.164V5h1.065v3.055L20 10.236ZM4.309 10H8v5.779A2.974 2.974 0 0 0 3.184 17H2v-2.861l.05-.217 1.813-3.646A.5.5 0 0 1 4.309 10M8 18a2 2 0 1 1-2-2 2 2 0 0 1 2 2m12-4.334V17h-2.184a2.983 2.983 0 0 0-5.632 0H9V8h3a5.923 5.923 0 0 0 6 6 6.2 6.2 0 0 0 2-.334M17 18a2 2 0 1 1-2-2 2 2 0 0 1 2 2"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.