Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">zoom_center</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="/field-systems-icons.svg#zoom-center" />
</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-zoom-center" viewBox="0 0 24 24">
<path d="M14.571 5.571V3H21v6.429h-2.571V5.57zm-9 9H3V21h6.429v-2.571H5.57zm12.858 3.858H14.57V21H21v-6.429h-2.571zM3 9.429h2.571V5.57H9.43V3H3zM14.571 12a2.571 2.571 0 1 1-5.142 0 2.571 2.571 0 0 1 5.142 0"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.