Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">row_remove</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#row-remove" />
</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-row-remove" viewBox="0 0 24 24">
<path d="M21 6v12c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1H5v4h14V7h-1c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1M5 12v2h14v-2zm14 5v-2H5v2zM13.59 3.35 12 4.94l-1.59-1.59c-.29-.29-.77-.29-1.06 0s-.29.77 0 1.06L10.94 6 9.35 7.59c-.29.29-.29.77 0 1.06s.77.29 1.06 0L12 7.06l1.59 1.59c.29.29.77.29 1.06 0s.29-.77 0-1.06L13.06 6l1.59-1.59c.29-.29.29-.77 0-1.06s-.77-.29-1.06 0"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.