Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">contrast</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#contrast" />
</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-contrast" viewBox="0 0 24 24">
<path d="M12 5c-1.57 0-3.02.52-4.19 1.4L4.7 3.29A.996.996 0 1 0 3.29 4.7L6.4 7.81A7 7 0 0 0 5 12a6.995 6.995 0 0 0 11.19 5.6l3.11 3.11c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41l-3.11-3.11c.87-1.17 1.4-2.61 1.4-4.19 0-3.87-3.13-7-7-7Zm2.75 11.17c-.79.52-1.74.83-2.75.83-.24 0-.46-.04-.69-.07l2.1-2.1zm-2.05-2.05-2.52 2.52c-.49-.19-.93-.47-1.33-.79l2.79-2.79zm-1.77-1.77-2.79 2.79c-.33-.4-.6-.84-.79-1.33l2.52-2.52zm-1.77-1.77-2.1 2.1c-.03-.23-.07-.45-.07-.69 0-1.02.31-1.96.83-2.75zm7.83 1.41c0 1.02-.31 1.96-.83 2.75L9.24 7.82c.79-.52 1.74-.83 2.75-.83 2.76 0 5 2.24 5 5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.