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_northern</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="/modus-solid-icons.svg#star-northern" />
</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-solid mi-star-northern" viewBox="0 0 24 24">
<path d="M21.75 12c0 .41-.34.75-.75.75h-7.19l5.08 5.08c.29.29.29.77 0 1.06-.15.15-.34.22-.53.22s-.38-.07-.53-.22l-5.08-5.08V21c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-7.19l-5.08 5.08c-.15.15-.34.22-.53.22s-.38-.07-.53-.22a.754.754 0 0 1 0-1.06l5.08-5.08H3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h7.19L5.11 6.17c-.29-.29-.29-.77 0-1.06s.77-.29 1.06 0l5.08 5.08V3c0-.41.34-.75.75-.75s.75.34.75.75v7.19l5.08-5.08c.29-.29.77-.29 1.06 0s.29.77 0 1.06l-5.08 5.08H21c.41 0 .75.34.75.75"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.