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_none</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="/connect-icons.svg#wifi-none" />
</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-connect mi-wifi-none" viewBox="0 0 24 24">
<path d="M9 18.21a4.237 4.237 0 0 1 6 0l-3 3zm11.25 1.74-1.27 1.26-7.07-7.06c-1.78.02-3.56.7-4.92 2.06L5 14.22v-.01a9.7 9.7 0 0 1 4.43-2.53L7.19 9.44c-1.53.61-2.96 1.53-4.2 2.77l-1.99-2c1.22-1.22 2.6-2.18 4.07-2.9L2 4.26 3.29 3zm-5.75-8.3c1.65.43 3.2 1.27 4.49 2.56l-.96.97zM8.84 5.99c4.96-1.02 10.31.38 14.15 4.22l-2 2c-2.64-2.65-6.16-3.87-9.63-3.7z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.