Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">show_less_caret</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#show-less-caret" />
</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-show-less-caret" viewBox="0 0 24 24">
<path d="M7 12c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7c-.6.25-1.16.59-1.65 1zm9-3c.28 0 .5.22.5.5s-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5S6.72 9 7 9z"/>
<path d="M4.5 14h4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V4h-14z"/>
<path d="M7 5h9c.28 0 .5.22.5.5s-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5S6.72 5 7 5m0 2h9c.28 0 .5.22.5.5s-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5S6.72 7 7 7m14.5 10c0 2.76-2.24 5-5 5s-5-2.24-5-5 2.24-5 5-5 5 2.24 5 5m-5.335-1.645L13.87 17.65a.5.5 0 0 0 0 .705c.195.195.51.195.71 0l1.94-1.94 1.94 1.94a.5.5 0 0 0 .705-.705l-2.295-2.295a.5.5 0 0 0-.705 0"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.