Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">rotate_clockwise</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#rotate-clockwise" />
</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-rotate-clockwise" viewBox="0 0 24 24">
<path d="m21.85 7.84-3.33 4.17-3.34-4.17h2.43a5 5 0 0 0-4.93-4.16V2.01c3.36-.01 6.2 2.49 6.61 5.83zm-8 4.37v8.3c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5 1.5-1.5h5.3c.06-.01.13-.01.19 0h.07c.08.04.16.09.22.15l4.5 4.5c.06.06.12.14.15.22v.07c.04.08.07.17.07.26m-2 7.8v-7H8.6a.77.77 0 0 1-.75-.75V9.01h-4v11z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.