Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">orbit</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#orbit" />
</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-orbit" viewBox="0 0 24 24">
<path d="M21 13.44c0-1.534-1.191-2.988-3.23-3.957l-.793 1.777c1.323.619 2.144 1.4 2.144 2.18 0 1.48-3.044 3.122-7.094 3.122S4.932 14.92 4.932 13.44 7.924 10.318 12 10.318v2.88l3.309-3.85L12 5.5v2.88c-5.109 0-9 2.18-9 5.06s3.891 5.06 9 5.06 9-2.153 9-5.06"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.