Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">image_disabled</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#image-disabled" />
</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-image-disabled" viewBox="0 0 24 24">
<path d="m10.88 17.44 2.44-2.706 3.945 3.945L5.46 18.67c-.48 0-.73-.57-.41-.93l2.64-2.93c.22-.25.61-.25.83 0z"/>
<path d="M21.932 20.517v-.002l-5.02-5.02.026.029-2.13-2.13h.003l-3.937-3.937v.003L8.99 7.576h.003L3.485 2.067h-.002l-.776-.775a1 1 0 0 0-1.414 1.414l.775.776A2 2 0 0 0 2 4v16c0 1.1.9 2 2 2h16q.269-.001.517-.068l.776.775a1 1 0 0 0 1.414-1.414zM4.732 6.144H4.73l10.794 10.794.001-.001L18.59 20H4V5.411zM22 17.755V4c0-1.1-.9-2-2-2H6.246l2 2H20v11.755z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.