Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">save_as</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#save-as" />
</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-save-as" viewBox="0 0 24 24">
<path d="M15 6H6v2.42l1.26 1.3H15V6.01ZM5 19V5h11.17L19 7.83v2.47c.72.22 1.4.55 2 .97V7.83c0-.53-.21-1.04-.59-1.41l-2.83-2.83C17.2 3.21 16.7 3 16.17 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6.26c-.42-.6-.75-1.28-.97-2zm11.23-6.94a5.03 5.03 0 1 0 5.76 5.76 5.03 5.03 0 0 0-5.76-5.76m3.79 4.97c0 .07-.01.13-.04.19s-.06.12-.11.16l-2.24 2.22c-.2.19-.51.19-.71 0a.513.513 0 0 1 0-.71l1.38-1.36h-3.78c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3.79l-1.39-1.38a.485.485 0 0 1 0-.7c.19-.2.51-.2.71 0l2.24 2.23c.05.05.08.1.11.16s.04.13.04.19"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.