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_warning</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-warning" />
</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-warning" viewBox="0 0 24 24">
<path d="M12 5a7 7 0 1 0 5.144 11.747A2 2 0 0 1 17 16v-3.992a5 5 0 1 1 0-.016V7.101l-.05-.05A7 7 0 0 0 12 5"/>
<path d="M12 21a9 9 0 0 0 5-1.517v2.315a11 11 0 0 1-7.146.99A11 11 0 1 1 20.485 5H19a2 2 0 0 0-1.016.277A9 9 0 1 0 12 21"/>
<path d="M19 16V7h3v9z"/>
<path fill-rule="evenodd" d="M12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6m0 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2"/>
<path d="M22 22h-3v-3h3z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.