Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">radar</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#radar" />
</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-radar" viewBox="0 0 24 24">
<path d="M18.1 8.35a6.19 6.19 0 0 0-11.6-1.6 4.96 4.96 0 0 0 .5 9.9h.3v-1.7H7a3.3 3.3 0 0 1 0-6.6h.6a4.505 4.505 0 0 1 4.4-3.4 4.653 4.653 0 0 1 4.6 4.6v.4h1.3a2.476 2.476 0 0 1 2.5 2.5 2.56 2.56 0 0 1-2.6 2.5h-.7v1.7h.7a4.225 4.225 0 0 0 4.2-4.2 4.15 4.15 0 0 0-3.9-4.1M12 19.65a.945.945 0 0 0 1 1 1 1 0 0 0 1-1c0-.6-1-1.8-1-1.8s-1 1.2-1 1.8m1.8-2.5a1.1 1.1 0 0 0 2.2 0 5.6 5.6 0 0 0-1.1-2.1 5.6 5.6 0 0 0-1.1 2.1m-.2-2.3-2-.2.7-4.1-3.7 5.6 2 .2-.6 4.2Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.