Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">weather_alerts</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#weather-alerts" />
</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-weather-alerts" viewBox="0 0 24 24">
<path d="M7 20h10l-5-8Zm5.6-1.093h-1.1v-1.093h1.1Zm0-1.987h-1.1v-2.584h1.1Zm5.5-7.95A6.202 6.202 0 0 0 6.5 7.378a4.93 4.93 0 0 0 .3 9.839l1-1.69H7A3.28 3.28 0 1 1 7 8.97h.6A4.526 4.526 0 0 1 12 5.69a4.64 4.64 0 0 1 4.6 4.572v.398h1.3a2.485 2.485 0 1 1 0 4.969h-1.7l1 1.69h.6a4.179 4.179 0 0 0 .3-8.349"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.