Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">item_does_not_equal</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#item-does-not-equal" />
</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-item-does-not-equal" viewBox="0 0 24 24">
<path d="M18.52 4.17c-.42-.35-1.05-.3-1.41.13L14 8.04H6.58c-.55 0-1 .45-1 1s.45 1 1 1h5.75l-3.27 3.93H6.5c-.55 0-1 .45-1 1s.45 1 1 1h.9l-2.05 2.46c-.35.42-.3 1.05.13 1.41a1 1 0 0 0 .73.23c.25-.02.5-.14.68-.36L10 15.97h7.5c.55 0 1-.45 1-1s-.45-1-1-1h-5.84l3.27-3.93h2.65c.55 0 1-.45 1-1s-.45-1-1-1h-.98l2.05-2.46c.35-.42.3-1.05-.13-1.41"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.