Random
- Tags:
Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">random</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#random" />
</svg>
SVG code
Use when you don't want any dependency.
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-solid mi-random" viewBox="0 0 24 24">
<path d="M10.56 9.2 5.44 4 4 5.44l5.2 5.2ZM14.48 4l2.08 2.08L4 18.56 5.44 20 17.92 7.44 20 9.52V4Zm.32 9.44-1.44 1.44L16.48 18l-2 2H20v-5.52l-2.08 2.08Z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10.56 9.2 5.44 4 4 5.44l5.2 5.2ZM14.48 4l2.08 2.08L4 18.56 5.44 20 17.92 7.44 20 9.52V4Zm.32 9.44-1.44 1.44L16.48 18l-2 2H20v-5.52l-2.08 2.08Z'/%3E%3C/svg%3E");