Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">inspect</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#inspect" />
</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-inspect" viewBox="0 0 24 24">
<path d="M11.29 2.02C6 2.39 2 7.01 2 12.31V20c0 1.1.9 2 2 2h7.69c5.3 0 9.92-4 10.28-9.29.42-6.08-4.6-11.11-10.69-10.69Zm8.69 10.55c-.29 4.16-3.93 7.43-8.29 7.43H4v-7.69c0-4.36 3.26-8 7.42-8.29.19-.01.39-.02.58-.02 2.24 0 4.32.9 5.85 2.54a7.93 7.93 0 0 1 2.13 6.03m-8.05-4.24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1M15 16.86h-2.07V9.63h-2.79c-.28 0-.5.22-.5.5s.22.5.5.5h.79v6.23H8.94c-.28 0-.5.22-.5.5s.22.5.5.5H15c.28 0 .5-.22.5-.5s-.22-.5-.5-.5"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.