Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">list_bulleted</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#list-bulleted" />
</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-list-bulleted" viewBox="0 0 24 24">
<path d="M5.5 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S7 12.83 7 12c.01-.82-.64-1.49-1.46-1.5zm0-5C4.67 5.5 4 6.17 4 7s.67 1.5 1.5 1.5S7 7.83 7 7c.01-.82-.64-1.49-1.46-1.5zm0 10c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S7 17.83 7 17c.01-.82-.64-1.49-1.46-1.5zM9 18h10c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1m0-5h10c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1M8 7c0 .55.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.