Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">edit_mode</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#edit-mode" />
</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-edit-mode" viewBox="0 0 24 24">
<path d="M6.668 8H5.334v8h1.334zM16 17.334H8v1.333h8zM9.665 12.25v2.083h2.084l6.144-6.144-2.083-2.084zm9.84-5.672a.553.553 0 0 0 0-.784l-1.3-1.3a.553.553 0 0 0-.784 0l-1.017 1.017 2.084 2.083z"/>
<path fill-rule="evenodd" d="M4 4v4h4V4zm2.855 1.145h-1.71v1.71h1.71zM4 16v4h4v-4zm2.855 1.145h-1.71v1.71h1.71zM16 16v4h4v-4zm2.855 1.145h-1.71v1.71h1.71z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.