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_up</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-up" />
</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-up" viewBox="0 0 24 24">
<path d="M19.19 21H4.81c-1.01 0-1.92-.52-2.43-1.38s-.51-1.89-.01-2.75L9.56 4.4C10.07 3.52 10.98 3 12 3s1.94.52 2.44 1.4l7.19 12.47c.5.86.49 1.89-.01 2.75-.51.86-1.42 1.38-2.43 1.38M12 5c-.14 0-.48.04-.69.39L4.12 17.86c-.2.34-.06.64 0 .76.07.12.27.39.68.39h14.37c.41 0 .61-.27.68-.39a.73.73 0 0 0 0-.76L12.66 5.39a.78.78 0 0 0-.69-.39Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.