Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">heart</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#heart" />
</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-heart" viewBox="0 0 24 24">
<path d="M12 20c-.51 0-.98-.2-1.34-.56L4.12 12.9a5.25 5.25 0 0 1-1.53-3.95c.07-1.47.76-2.85 1.91-3.8 2.05-1.7 5.19-1.49 7.15.47l.35.35.35-.35c1.96-1.96 5.1-2.17 7.15-.47 1.14.94 1.84 2.33 1.91 3.8s-.49 2.91-1.53 3.95l-6.54 6.54c-.36.36-.84.56-1.34.56M7.75 6a3.1 3.1 0 0 0-1.98.69c-.72.59-1.14 1.43-1.18 2.35-.04.91.3 1.8.94 2.44L12 17.95l6.47-6.47c.64-.64.99-1.53.94-2.44-.04-.92-.46-1.76-1.18-2.35-1.27-1.05-3.23-.89-4.47.34L12.7 8.09a.996.996 0 0 1-1.41 0l-1.06-1.06c-.69-.69-1.6-1.04-2.48-1.04Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.