Skip to main content

Examples

Heading
Smaller heading

Inline text 

Example link text 

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</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" />
</svg>

SVG code

Use when you don't want any dependency.

<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-solid mi-star" viewBox="0 0 24 24">
  <path d="m12 18.09 5.52 3.33c.43.26.96-.13.85-.62l-1.46-6.27 4.87-4.22c.38-.33.18-.95-.32-1l-6.42-.54-2.51-5.92a.572.572 0 0 0-1.05 0L8.97 8.77l-6.42.54c-.5.04-.7.67-.32 1l4.87 4.22-1.46 6.27c-.11.49.42.87.85.62l5.52-3.33Z"/>
</svg>

SVG CSS code

Use for embedding your icons in CSS with no dependency.