Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">image_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-solid-icons.svg#image-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-solid mi-image-add" viewBox="0 0 24 24">
<path d="M4 2h16c1.1 0 2 .9 2 2v9.31a6.5 6.5 0 0 0-10.958 3.951l-.162.179-2.36-2.63a.553.553 0 0 0-.83 0l-2.64 2.93c-.32.36-.07.93.41.93l5.574.004A6.47 6.47 0 0 0 12.377 22H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2m6.89 7.23c0-.92-.75-1.67-1.67-1.67s-1.67.75-1.67 1.67.75 1.67 1.67 1.67 1.67-.75 1.67-1.67"/>
<path d="M17.5 23a4.98 4.98 0 0 0 3.133-1.103A4.98 4.98 0 0 0 22.5 18a5 5 0 1 0-5 5m-.747-7.252a.749.749 0 0 1 1.497 0v1.504h1.503a.749.749 0 1 1 0 1.497H18.25v1.503a.748.748 0 1 1-1.497 0v-1.503H15.25a.748.748 0 1 1 0-1.497h1.503v-1.503Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.