Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">reply</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#reply" />
</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-reply" viewBox="0 0 24 24">
<path d="M12.52 7.4V4a.5.5 0 0 0-.28-.45.53.53 0 0 0-.53.05l-8.77 6.8c-.12.09-.19.23-.19.39 0 .15.06.3.18.39l8.77 7.29c.15.12.36.15.53.07.18-.08.29-.26.29-.45V14.5c3.98-1 5.64 1.5 7.78 6.21.08.18.26.29.46.29.04 0 .08 0 .12-.02.23-.06.39-.28.38-.52-.42-5.71-.94-12.78-8.73-13.07Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.