Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">icons_shapes</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#icons-shapes" />
</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-icons-shapes" viewBox="0 0 24 24">
<path d="M13 14a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1zM6.126 3.573a1 1 0 0 1 1.748 0l3.3 5.941A1 1 0 0 1 10.3 11H3.7a1 1 0 0 1-.875-1.486l3.3-5.94ZM3 17a4 4 0 1 1 8 0 4 4 0 0 1-8 0M20.825 3.528c-.975-.805-2.326-.527-3.22.367L17 4.5l-.605-.605c-.894-.894-2.245-1.172-3.22-.367A2.42 2.42 0 0 0 13 7.112l3.26 3.577a1 1 0 0 0 1.479 0L21 7.111c1-1 .94-2.659-.175-3.583"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.