Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">curly_brackets</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#curly-brackets" />
</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-curly-brackets" viewBox="0 0 24 24">
<path d="M2 12a1 1 0 0 1 1-1c.552 0 1-.948 1-1.5V6a3 3 0 0 1 3-3h2.5a1 1 0 1 1 0 2H7a1 1 0 0 0-1 1v3.5A3 3 0 0 1 4.659 12 3 3 0 0 1 6 14.5V18a1 1 0 0 0 1 1h2.5a1 1 0 1 1 0 2H7a3 3 0 0 1-3-3v-3.5c0-.552-.448-1.5-1-1.5a1 1 0 0 1-1-1m16-2.5c0 1.043.533 1.963 1.341 2.5A3 3 0 0 0 18 14.5V18a1 1 0 0 1-1 1h-2.5a1 1 0 1 0 0 2H17a3 3 0 0 0 3-3v-3.5c0-.552.448-1.5 1-1.5a1 1 0 1 0 0-2c-.552 0-1-.948-1-1.5V6a3 3 0 0 0-3-3h-2.5a1 1 0 1 0 0 2H17a1 1 0 0 1 1 1z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.