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_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#arrow-expand-diagonal-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-arrow-expand-diagonal-left" viewBox="0 0 24 24">
<path d="M3.5 3h4.29c.28 0 .5.22.5.5a.5.5 0 0 1-.14.35L6.7 5.3l12 12 1.45-1.45c.2-.19.51-.19.71 0a.5.5 0 0 1 .14.35v4.29c0 .28-.22.5-.5.5h-4.29c-.28 0-.5-.22-.5-.5a.5.5 0 0 1 .14-.35l1.45-1.45L5.3 6.7 3.85 8.15c-.2.19-.51.19-.71 0A.5.5 0 0 1 3 7.8V3.5c0-.28.22-.5.5-.5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.