Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">rotation_left</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#rotation-left" />
</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-rotation-left" viewBox="0 0 24 24">
<path d="m8.415 7.085 4.55 4.45v-3.91c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.06-7.44-7-7.93v-3.07zm-1.35 12.76c1.16.9 2.51 1.44 3.9 1.61v-2.02c-.87-.14-1.71-.49-2.46-1.03zm-3.03-5.31c.17 1.39.72 2.73 1.62 3.89l1.42-1.41a5.9 5.9 0 0 1-1.02-2.48zm1.62-5.89c-.9 1.16-1.45 2.5-1.62 3.89h2.02c.14-.87.48-1.72 1.02-2.47z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.