Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">pin_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-outlined-icons.svg#pin-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-outline mi-pin-add" viewBox="0 0 24 24">
<path d="M21.25 17.25h-2.5v-2.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v2.5h-2.5c-.41 0-.75.34-.75.75s.34.75.75.75h2.5v2.5c0 .41.34.75.75.75s.75-.34.75-.75v-2.5h2.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75m-5.02-7.23c.79.49 1.41.68 1.65.44.46-.46-.59-2.25-2.34-4s-3.54-2.8-4-2.34c-.25.25-.05.88.45 1.68l-4.55 4.55C6.22 9.44 5.24 9 4.94 9.3c-.44.44.68 2.3 2.55 4.27L2.2 19.32l-.2.69.69-.2 5.75-5.29c1.97 1.86 3.81 2.98 4.26 2.54.3-.3-.13-1.27-1.03-2.47l4.56-4.56Zm-7.29 1.63 4.64-4.64 1.41 1.41-4.64 4.64z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.