Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">cloud</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="/modus-solid-icons.svg#cloud" />
</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-cloud" viewBox="0 0 24 24">
<path d="M19.47 17.86c-.32.09-.65.12-.97.12L6.99 18c-2.76 0-5-2.24-5-5s2.24-5 5-5c.52 0 1.01.1 1.48.25A5.51 5.51 0 0 1 13.49 5c3.04 0 5.5 2.46 5.5 5.5q0 .27-.03.54c1.33.18 2.49 1.12 2.89 2.49.54 1.86-.53 3.8-2.39 4.33Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.