Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">view_show_all</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#view-show-all" />
</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-view-show-all" viewBox="0 0 24 24">
<path d="M23 8v12c0 1.1-.899 2-2 2H7v-2h14V8zm-6-5c1.101 0 2 .9 2 2v11c0 1.1-.899 2-2 2H3c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2zM3 16h14V5H3zm7.001-9.386a6.13 6.13 0 0 1 5.7 3.886 6.13 6.13 0 0 1-5.7 3.886A6.13 6.13 0 0 1 4.3 10.5 6.13 6.13 0 0 1 10 6.614m0 1.295A2.59 2.59 0 0 0 7.409 10.5a2.592 2.592 0 0 0 5.183 0 2.59 2.59 0 0 0-2.591-2.59m0 1.037c.859 0 1.553.694 1.553 1.554S10.86 12.054 10 12.054a1.553 1.553 0 1 1 0-3.108"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.