Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">triangle_left</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-outlined-icons.svg#triangle-left" />
</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-outline mi-triangle-left" viewBox="0 0 24 24">
<path d="M19.62 2.38c-.86-.51-1.89-.51-2.75-.01L4.4 9.56C3.52 10.07 3 10.98 3 12s.52 1.94 1.4 2.44l12.47 7.19c.86.5 1.89.49 2.75-.01.86-.51 1.38-1.42 1.38-2.43V4.81c0-1.01-.52-1.92-1.38-2.43M19 19.19c0 .41-.27.61-.39.68a.73.73 0 0 1-.76 0L5.38 12.68c-.35-.2-.39-.55-.39-.69s.04-.48.39-.69l12.47-7.19c.34-.2.64-.06.76 0 .12.07.39.27.39.68v14.37Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.