Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">user_guide</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#user-guide" />
</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-user-guide" viewBox="0 0 24 24">
<path d="M18.5 2H7C5.35 2 4 3.35 4 5v14c0 1.65 1.35 3 3 3v-2c-.55 0-1-.45-1-1s.45-1 1-1h1v5l1.5-2 1.5 2v-5h7v2h-6v2h6.5c.83 0 1.5-.67 1.5-1.5v-17c0-.83-.67-1.5-1.5-1.5m-10 3h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5m4 5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h4c.28 0 .5.22.5.5s-.22.5-.5.5m2-2h-6c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.