Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">comment_message</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-outlined-icons.svg#comment-message" />
</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-outline mi-comment-message" viewBox="0 0 24 24">
<path d="M8 8a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2zm-2 4a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1m1 3a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1"/>
<path d="m4.06 19.56-.023.084a14 14 0 0 1-.227.726q-.053.164-.11.323l-.008.022a9 9 0 0 1-.182.465c-.1.23.09.49.34.45q.248-.042.494-.087l.016-.003a25 25 0 0 0 1.258-.27c1.755-.423 2.883-.905 3.442-1.18.96.25 1.94.38 2.93.38 5.51 0 9.98-3.91 9.98-8.74S17.5 3 11.98 3C6.47 3 2 6.91 2 11.74c0 2.2.93 4.21 2.46 5.74a13.4 13.4 0 0 1-.4 2.08m5.504-1.405-.36-.094a1 1 0 0 0-.694.07l-.333.165c-.323.159-.96.44-1.936.735q.132-.659.207-1.33l.053-.478a1 1 0 0 0-.287-.817l-.34-.34C4.678 14.87 4 13.354 4 11.74 4 8.256 7.316 5 11.98 5c4.678 0 7.99 3.25 7.99 6.73 0 3.484-3.316 6.74-7.98 6.74a9.6 9.6 0 0 1-2.426-.315"/>
<path d="m5.618 21.27-.139.032a25 25 0 0 1-1.028.22q.092-.219.174-.447l.004-.009q0-.005.004-.01v-.002l.008-.022q.061-.172.118-.346zm0 0c1.755-.423 2.883-.905 3.442-1.18zm-.358-2.435-.314 1.563-.099.022q.081-.25.153-.504v-.003l.024-.084v-.003q.136-.49.236-.991"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.