Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">arrow_expand_diagonal_right</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#arrow-expand-diagonal-right" />
</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-arrow-expand-diagonal-right" viewBox="0 0 24 24">
<path d="M21 3.5v4.29a.495.495 0 0 1-.85.35L18.7 6.69l-12 12 1.45 1.45a.501.501 0 0 1-.36.85H3.5c-.28 0-.5-.22-.5-.5V16.2a.495.495 0 0 1 .85-.35L5.3 17.3l12-12-1.45-1.45a.501.501 0 0 1 .36-.85h4.29c.28 0 .5.22.5.5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.