Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">measure_length</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="/connect-icons.svg#measure-length" />
</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-connect mi-measure-length" viewBox="0 0 24 24">
<path d="m22.972 15.164 1.028.732-1.028.73-4.8 2.741v-2.74H5.828v2.74l-4.8-2.74L0 15.895l1.028-.732 4.8-2.923v2.923h12.344V12.24zM12.052 8.27l1.028-1.875h1.646l-1.749 2.868 1.851 2.978h-1.645l-1.131-1.984-1.235 1.984H9.172l1.85-2.978-1.748-2.868h1.646z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.