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-solid-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-solid mi-video-disabled" viewBox="0 0 24 24">
<path d="M16.87 16.45v-.01L6.68 6.25h-.02L3.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.41zm3.7-9.78L17 10.25v-2c0-1.1-.9-2-2-2H8.8l8.2 8.2v-.7l3.57 3.57c.16.16.43.05.43-.18V6.85c0-.22-.27-.33-.43-.18"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.