Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">tablet</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#tablet" />
</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-tablet" viewBox="0 0 24 24">
<path d="M18.632 1C19.939 1 21 2.027 21 3.292v17.416C21 21.973 19.94 23 18.632 23H5.368C4.061 23 3 21.973 3 20.708V3.292C3 2.027 4.06 1 5.368 1zM12 19.333c-.786 0-1.42.614-1.42 1.375 0 .76.634 1.375 1.42 1.375s1.42-.614 1.42-1.375c0-.76-.634-1.375-1.42-1.375m-7.105-.916h14.21V3.75H4.895z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.