Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">school_bus</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="/transportation-icons.svg#school-bus" />
</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-school-bus" viewBox="0 0 24 24">
<path d="m21.866 13.027.003-.036v-1.65a.24.24 0 0 0-.233-.25h-3.53V9.3h.445V8H4.261C2.706 8 2 8.67 2 10.23v1.675h13.31v.481H2.002v.864H6.71a1.54 1.54 0 0 1 1.6 0h7v.482H8.823a1.84 1.84 0 0 1 .288 1.399h8.95a2 2 0 0 1-.033-.357 1.7 1.7 0 0 1 1.637-1.747 1.66 1.66 0 0 1 1.579 1.288H22v-1.288Zm-15.314-2.13a.194.194 0 0 1-.185.196H4.26a.19.19 0 0 1-.184-.197V9.497a.19.19 0 0 1 .184-.196h2.107a.193.193 0 0 1 .185.196Zm2.92 0a.194.194 0 0 1-.185.196H7.18a.193.193 0 0 1-.185-.197V9.497a.19.19 0 0 1 .185-.196h2.107a.194.194 0 0 1 .185.196Zm2.92 0a.193.193 0 0 1-.184.196H10.1a.193.193 0 0 1-.185-.197V9.497a.19.19 0 0 1 .185-.196h2.107a.193.193 0 0 1 .184.196Zm2.92 0a.194.194 0 0 1-.184.196H13.02a.19.19 0 0 1-.184-.197V9.497a.19.19 0 0 1 .184-.196h2.107a.193.193 0 0 1 .184.196Zm1.257 3.073a.196.196 0 0 1-.185.198h-.417a.194.194 0 0 1-.186-.198v-2.24a.19.19 0 0 1 .186-.197h.417a.193.193 0 0 1 .185.197Zm0-3.074a.194.194 0 0 1-.185.197h-.417a.19.19 0 0 1-.186-.197V9.497a.19.19 0 0 1 .186-.196h.417a.193.193 0 0 1 .185.196Zm1.092 3.074a.196.196 0 0 1-.184.198h-.419a.193.193 0 0 1-.184-.198v-2.24a.19.19 0 0 1 .184-.197h.419a.19.19 0 0 1 .184.197Zm0-3.074a.193.193 0 0 1-.184.197h-.419a.19.19 0 0 1-.184-.197V9.497a.19.19 0 0 1 .184-.196h.419a.19.19 0 0 1 .184.196ZM6.198 13.733a1.8 1.8 0 0 0-.325 1.042 2 2 0 0 0 .034.357H2v-1.399zm1.312-.18a1.226 1.226 0 0 0 0 2.447 1.226 1.226 0 0 0 0-2.447m0 1.825a.603.603 0 1 1 .564-.602.584.584 0 0 1-.564.602m12.118-1.825a1.226 1.226 0 1 0 1.146 1.223 1.187 1.187 0 0 0-1.146-1.223m0 1.825a.603.603 0 1 1 .564-.602.584.584 0 0 1-.564.602"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.