Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">caret_up_bold</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#caret-up-bold" />
</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-caret-up-bold" viewBox="0 0 24 24">
<path d="m17.19 13.5-4.22-4.58c-.49-.53-1.45-.53-1.94 0L6.81 13.5c-.32.35-.4.83-.22 1.25.2.45.67.75 1.19.75h8.43c.52 0 .99-.29 1.19-.75.19-.42.1-.91-.22-1.25Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.