Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">bullseye_off</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#bullseye-off" />
</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-bullseye-off" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="m2 1.414-1 1 2.547 2.547a11 11 0 0 0 15.492 15.492l2.467 2.467 1.414-1.414-.414.414zm2.968 4.969a9 9 0 0 0 12.65 12.649l-1.426-1.426a7 7 0 0 1-9.142-.656 7 7 0 0 1-.656-9.142zm2.86 2.86a5 5 0 0 0 6.93 6.928l-1.465-1.464a3 3 0 0 1-4-4z"/>
<path d="M21.296 17.882A11 11 0 0 0 6.119 2.704l1.457 1.458a9 9 0 0 1 12.262 12.262z"/>
<path d="M18.353 14.94a7 7 0 0 0-9.292-9.293l1.55 1.55A5.002 5.002 0 0 1 17 12c0 .474-.068.942-.198 1.39z"/>
<path d="M14.967 11.553a3 3 0 0 0-2.52-2.52z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.