Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">check_bold</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#check-bold" />
</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-check-bold" viewBox="0 0 24 24">
<path d="M9 18.5c-.38 0-.77-.15-1.06-.44l-3.5-3.5a1.49 1.49 0 0 1 0-2.12 1.49 1.49 0 0 1 2.12 0L9 14.88l8.44-8.44a1.49 1.49 0 0 1 2.12 0c.59.59.59 1.54 0 2.12l-9.5 9.5c-.29.29-.68.44-1.06.44"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.