Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">video_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#video-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-video-disabled" viewBox="0 0 24 24">
<path d="m16.87 16.45-1.37-1.37-7.34-7.33-1.5-1.5L3.7 3.29A.996.996 0 1 0 2.29 4.7l1.78 1.78C3.44 6.82 3 7.48 3 8.24v7.5c0 1.1.9 2 2 2h10c.1 0 .2-.02.3-.03l3.99 3.99c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41zM5 16.25c-.27 0-.5-.23-.5-.5v-7.5c0-.27.23-.5.5-.5h.34l8.5 8.5zm15.57-9.58L17 10.25v-2c0-1.1-.9-2-2-2H8.79l1.5 1.5H15c.27 0 .5.23.5.5v4.71l1.5 1.5v-.71l3.57 3.57c.16.16.43.05.43-.18V6.85c0-.22-.27-.33-.43-.18m-1.07 7.46L17.37 12l2.13-2.13z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.