Skip to main content

Chevron

  • Tags:

Examples

Heading
Smaller heading

Inline text 

Example link text 

Icon font

Use in web applications, on buttons, and anywhere you need more than a few icons.

<i class="modus-icons" aria-hidden="true">chevron</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#chevron" />
</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-chevron" viewBox="0 0 24 24">
  <path d="M12 4.2 5.8 17a19.6 19.6 0 0 1 6.2-1.1 19.6 19.6 0 0 1 6.2 1.1ZM12 2a10 10 0 1 0 10 10A10.03 10.03 0 0 0 12 2m0 17.9a7.9 7.9 0 1 1 7.9-7.9 7.853 7.853 0 0 1-7.9 7.9"/>
</svg>

SVG CSS code

Use for embedding your icons in CSS with no dependency.