Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">location_add</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-solid-icons.svg#location-add" />
</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-solid mi-location-add" viewBox="0 0 24 24">
<path d="M5 9.2C4.96 5.3 8.1 2.04 12.01 2c3.03.1 5.68 2.07 6.63 4.95a7.24 7.24 0 0 1-4.59 9.15l-1.57 4.53c-.16.45-.79.45-.95 0L9.96 16.1A7.21 7.21 0 0 1 5 9.2M15.75 9c0-.41-.34-.75-.75-.75h-2.25V6c0-.41-.34-.75-.75-.75s-.75.34-.75.75v2.25H9c-.41 0-.75.34-.75.75s.34.75.75.75h2.25V12c0 .41.34.75.75.75s.75-.34.75-.75V9.75H15c.41 0 .75-.34.75-.75"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.