Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">warning</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#warning" />
</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-warning" viewBox="0 0 24 24">
<path d="M11.246 2.435a.87.87 0 0 1 1.507 0l10.129 17.493a.872.872 0 0 1-.755 1.307H1.872a.872.872 0 0 1-.754-1.307zM12 15.945a1.058 1.058 0 1 0 .002 2.117A1.058 1.058 0 0 0 12 15.945m-.894-6.348a.165.165 0 0 0-.164.164v3.904c0 .091.074.164.164.164h1.79c.09 0 .163-.073.163-.164V9.761a.164.164 0 0 0-.163-.164z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.