Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">lightbulb_off</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#lightbulb-off" />
</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-lightbulb-off" viewBox="0 0 24 24">
<path d="M13.98 19.02h-4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1M12 2C8.16 2 5.04 5.12 5.04 8.96c0 2.36 1.18 4.45 2.98 5.7v1.63c0 .55.45 1 1 1h5.96c.55 0 1-.45 1-1v-1.63a6.95 6.95 0 0 0 2.98-5.7C18.96 5.12 15.84 2 12 2"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.