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_disabled</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="/modus-outlined-icons.svg#camera-disabled" />
</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-outline mi-camera-disabled" viewBox="0 0 24 24">
<path d="M4.96 4.55v-.01L3.72 3.3a.996.996 0 1 0-1.41 1.41L4.6 7h-.59c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2H17.6l1.71 1.71c.2.2.45.29.71.29s.51-.1.71-.29a.984.984 0 0 0 0-1.4zM4 18V9h2.59l2.57 2.57c-.1.29-.16.6-.16.93 0 1.66 1.34 3 3 3 .33 0 .63-.06.93-.16L15.59 18zm8.04-8.5L15 12.46a2.99 2.99 0 0 0-2.96-2.96M20 7h-1.5l-2.41-2.41c-.38-.38-.88-.59-1.41-.59H9.34c-.53 0-1.04.21-1.41.59l-.4.4L8.94 6.4l.4-.4h5.34l3 3h2.33v8.47l1.65 1.65c.22-.32.35-.7.35-1.12V9c0-1.1-.9-2-2-2Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.