Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">expression</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#expression" />
</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-expression" viewBox="0 0 24 24">
<path d="M21 19.93H5.41l7.29-7.29c.19-.19.29-.44.29-.71s-.11-.52-.29-.71L5.54 4.08h15.45c.55 0 1-.45 1-1s-.45-1-1-1H3.13c-.4 0-.77.24-.92.62-.15.37-.07.8.22 1.09l8.16 8.14-8.3 8.29c-.29.29-.37.72-.22 1.09s.52.62.92.62h18c.55 0 1-.45 1-1s-.45-1-1-1Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.