Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">corner</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#corner" />
</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-corner" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="m16.974 4 .756.764-1.528 1.514-.757-.764zm-1.537 3.082-.757-.764-1.529 1.513.757.765zm-2.293 2.27-.757-.764-1.53 1.514.758.764zm-2.28 2.303-.757-.765-1.528 1.513.757.765zm-2.293 2.27-.756-.765-1.53 1.513.758.765zM5.53 15.426l.757.765-1.53 1.513L4 16.94zM8.487 7.81h3.555L10.68 9.164H9.164v1.51L7.81 12.022V8.487c0-.374.303-.677.677-.677m.677 10.836v-4.112L7.81 15.882v3.44c0 .375.303.678.677.678h10.836a.677.677 0 0 0 .677-.677V8.487a.677.677 0 0 0-.677-.677H15.92l-1.36 1.354h4.085v9.481z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.