Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">right_angle</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#right-angle" />
</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-right-angle" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="m17.175 19.56 1.192-1.192L21 21H5.25A2.257 2.257 0 0 1 3 18.75V3l2.633 2.633L4.44 6.825l.799.799L6.43 6.43l2.183 2.183L7.42 9.806l.799.799 1.192-1.193 2.194 2.194-1.192 1.193.799.799 1.192-1.193 2.183 2.183-1.193 1.192.799.799 1.192-1.193 2.183 2.183-1.193 1.192zm-10.8-8.415v6.48h6.48z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.