Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">helicopter</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="/modus-solid-icons.svg#helicopter" />
</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-helicopter" viewBox="0 0 24 24">
<path d="M18.03 18h-7.06c-.39 0-.77-.09-1.12-.26l-1.58-.79a.49.49 0 0 1-.22-.67c.12-.25.42-.35.67-.22l1.58.79c.21.1.44.16.67.16h7.06c.23 0 .46-.05.67-.16l1.58-.79c.25-.12.55-.02.67.22.12.25.02.55-.22.67l-1.58.79c-.35.17-.73.26-1.12.26M15.5 9c0-.16.01-.32.04-.48-.18 0-.36-.02-.54-.02v-2c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.05c-2.01.2-3.68.97-4.48 2.03l-5.44-.42L3 8H2v3c0 .55.45 1 1 1l6.27 1.05c.76 1.42 3.04 2.45 5.73 2.45 2.48 0 4.6-.87 5.52-2.12-2.87-.47-5.02-2.25-5.02-4.38m1.03-.38c-.02.12-.03.25-.03.38 0 1.7 1.92 3.12 4.45 3.43.03-.14.05-.29.05-.43 0-1.62-1.9-2.98-4.47-3.38M21.5 7H16v1h5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5M13 7H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H13z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.