Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">frame_stop</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#frame-stop" />
</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-frame-stop" viewBox="0 0 24 24">
<path d="M5 14c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1H6v-3c0-.6-.4-1-1-1m0-4c.6 0 1-.4 1-1V6h3c.6 0 1-.4 1-1s-.4-1-1-1H5c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1m13 8h-3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1s-1 .4-1 1zM14 5c0 .6.4 1 1 1h3v3c0 .6.4 1 1 1s1-.4 1-1V5c0-.6-.4-1-1-1h-4c-.6 0-1 .4-1 1m-2 4c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.