Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">map</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#map" />
</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-map" viewBox="0 0 24 24">
<path d="M21 2.32c-.11 0-.23.02-.35.06l-5.4 1.98-6.3-2.29a.96.96 0 0 0-.67 0l-5.6 1.95c-.4.14-.67.52-.67.94v15.78a1.003 1.003 0 0 0 1.35.94l5.29-1.96 6.29 2.22a.96.96 0 0 0 .64.01l5.71-1.87a1 1 0 0 0 .69-.95l.03-15.81c0-.57-.47-1-1-1ZM7.58 17.98 4 19.31V5.67l3.58-1.25zm6.69 1.61-4.69-1.66V4.42l4.69 1.71zm5.7-1.19-3.7 1.21V6.11l3.72-1.36z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.