Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">text_highlight</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#text-highlight" />
</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-text-highlight" viewBox="0 0 24 24">
<path d="M9.76 13.08h3.86l-1.93-4.61zm5.46 3.68-.75-1.75H8.9l-1.28 3H5.48L10.3 6.65c.16-.41.56-.67 1-.64h1c.42.03.8.27 1 .64l2 4.91V4.01H5.7c-1.23 0-2.22.99-2.22 2.22v11.56c0 1.23.99 2.22 2.22 2.22h9.52zm5-14.75v20h-2v-20z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.