Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">file_merge</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#file-merge" />
</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-file-merge" viewBox="0 0 24 24">
<path d="M6.7 5.64a.754.754 0 0 0-1.06 0c-.29.29-.29.77 0 1.06l1.71 1.71L5.76 10H10V5.76L8.41 7.35zm3.71 6.89 1.06 1.06 2.12-2.12-1.06-1.06zM20 8h-4V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h4v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2m0 12H10v-6H4V4h10v6h6zm-6-1.76 1.59-1.59 1.71 1.71c.29.29.77.29 1.06 0s.29-.77 0-1.06l-1.71-1.71L18.24 14H14z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.