Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">views_add</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#views-add" />
</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-views-add" viewBox="0 0 24 24">
<path d="M17.504 7.348h2.757c.956 0 1.739.782 1.739 1.739v10.435c0 .956-.783 1.739-1.74 1.739H6.349c-.957 0-1.74-.783-1.74-1.74v-8.695h2.61V8.218h2.608v-2.61h6.087zm-4.2 2.608a4.35 4.35 0 0 0-4.348 4.349 4.35 4.35 0 0 0 4.349 4.347 4.35 4.35 0 0 0 4.347-4.347 4.35 4.35 0 0 0-4.347-4.349m0 1.566a2.78 2.78 0 0 1 2.783 2.783 2.78 2.78 0 0 1-2.782 2.782 2.78 2.78 0 0 1-2.783-2.782 2.78 2.78 0 0 1 2.783-2.783M6.349 5.608h2.608v1.74H6.348v2.608h-1.74V7.348H2v-1.74h2.608V3h1.74z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.