Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">camera_orbit</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#camera-orbit" />
</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-camera-orbit" viewBox="0 0 24 24">
<path d="M16.044 8.792 12 13.583V9.998c-4.982 0-8.638 2.044-8.639 3.887s3.721 3.886 8.671 3.887 8.671-2.044 8.671-3.887c0-.972-1.003-1.944-2.621-2.714l.97-2.212C21.545 10.165 23 11.975 23 13.885c0 3.619-4.756 6.3-11 6.3s-11-2.715-11-6.3 4.756-6.3 11-6.3V4z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.