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_left_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-left-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-left-bold" viewBox="0 0 24 24">
<path d="M14.75 6.6c-.43-.19-.91-.11-1.25.22l-4.58 4.22c-.26.24-.42.6-.42.97s.15.73.42.97l4.58 4.21c.22.21.51.32.79.32.16 0 .31-.03.46-.1.45-.2.75-.67.75-1.19V7.79c0-.52-.29-.99-.75-1.19"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.