Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">pulse</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#pulse" />
</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-pulse" viewBox="0 0 24 24">
<path d="m14 20.37-2.71-8.13-1.24-4.34-1.81 7.25-2.33-4.66-1.36 2.04c-.09.14-.25.22-.42.22H2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.85l2.49-3.74 1.67 3.34L9.95 2.1l2.77 9.69L14 15.62l4-11.99 2.54 7.62h.71c.41 0 .75.34.75.75s-.34.75-.75.75h-1.43c-.22 0-.41-.14-.47-.34L18 8.37z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.