Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">footprints</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#footprints" />
</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-footprints" viewBox="0 0 24 24">
<path d="M9.75 17.51H5.48v2.23A2.56 2.56 0 0 0 7.97 22c1.1.02 2.02-.85 2.04-1.95 0-.1 0-.21-.02-.31zm4.49-3.82-.23 2.23c-.15 1.09.62 2.1 1.72 2.24.1.01.21.02.31.02 1.28-.03 2.34-.99 2.5-2.26v-2.23h-4.29ZM9.66 6.42c-.4-.4-.93-.6-1.47-.6-.46 0-.91.15-1.29.45a5.1 5.1 0 0 0-1.75 3.11 10 10 0 0 0 .02 3.57c.11.75.38 2.45.41 2.55h4.15c.24-.71.45-1.4.7-2.07.67-1.73.73-3.65.17-5.42-.17-.61-.5-1.16-.96-1.59Zm-.62 6.48c-.14.37-.27.74-.39 1.1h-1.8c-.07-.45-.15-.94-.2-1.27 0-.02 0-.05-.01-.07-.19-1-.2-2.01-.01-3.06.13-.86.57-1.63 1.19-2.16.13-.11.27-.13.37-.13s.27.02.44.19c.26.24.45.55.54.9 0 .02 0 .03.02.05.46 1.44.4 3.02-.15 4.44Zm9.8-7.33a5.05 5.05 0 0 0-1.75-3.12c-.38-.3-.84-.45-1.3-.45-.53 0-1.06.2-1.46.6-.46.43-.79.98-.96 1.59-.56 1.77-.5 3.69.18 5.42.26.67.46 1.36.7 2.07h4.15c.02-.11.3-1.8.41-2.55.23-1.18.23-2.38.02-3.56Zm-1.5 3.28s0 .04-.01.07c-.05.32-.12.81-.2 1.27h-1.8q-.18-.555-.39-1.11c-.55-1.41-.6-2.98-.14-4.43 0-.02.01-.03.02-.05.09-.34.28-.65.56-.92.15-.15.32-.17.42-.17s.23.02.33.1c.65.55 1.08 1.31 1.22 2.15 0 .03 0 .06.01.09.18 1 .17 2.01-.02 3.01Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.