Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">star_border</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#star-border" />
</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-star-border" viewBox="0 0 24 24">
<path d="m14.81 9.12 7.19.62-5.45 4.73 1.63 7.03L12 17.77 5.82 21.5l1.64-7.03L2 9.74l7.19-.61L12 2.5zm-4.51 1.51-4.38.38 3.32 2.88-1 4.28L12 15.9l3.77 2.28-1-4.28 3.32-2.88-4.38-.38L12 6.6z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.