Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">wifi_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-outlined-icons.svg#wifi-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-outline mi-wifi-off" viewBox="0 0 24 24">
<path d="M3.534 2.498a1 1 0 0 1 .706.292l11.35 11.35 5.58 5.56a1 1 0 0 1 .217 1.087 1 1 0 0 1-.217.323c-.2.19-.45.29-.71.29s-.51-.09-.71-.29l-7.96-7.96a7 7 0 0 0-3.84 1.26c-.58.41-1.36.38-1.86-.12-.61-.6-.56-1.62.13-2.11.95-.69 2.01-1.18 3.1-1.49L7.11 8.48a12.6 12.6 0 0 0-3.17 1.89 1.4 1.4 0 0 1-1.89-.09c-.58-.59-.54-1.58.11-2.1.89-.72 1.84-1.32 2.83-1.82L2.83 4.2a1 1 0 0 1-.217-1.086 1 1 0 0 1 .921-.616"/>
<path d="M10.46 15.61a2.178 2.178 0 1 1 3.08 3.082 2.178 2.178 0 0 1-3.08-3.081m4.64-4.781c.96.312 1.856.767 2.68 1.35.56.4.69 1.14.4 1.73zM9.22 4.94c4.37-.79 9 .29 12.62 3.25.64.53.69 1.52.1 2.11-.52.51-1.33.55-1.9.08-2.38-1.95-5.31-2.89-8.23-2.85z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.