Caret Left icon

Used in dropdown & expanding contracting scenarios. Contains directional variants. The Caret Left icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Use the Caret Left icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { CaretLeft24Regular, CaretLeft24Filled } from "@fluentui/react-icons";

export function Example() {
  return <CaretLeft24Regular aria-label="Caret Left" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_caret_left_24_regular.svg" width="24" height="24" alt="Caret Left">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.9268 18.839C13.7351 19.5462 15 18.9722 15 17.8983L15 6.10204C15 5.02809 13.7351 4.45412 12.9268 5.16132L6.61617 10.6831C5.81935 11.3804 5.81935 12.6199 6.61617 13.3172L12.9268 18.839ZM13.5 17.3473L7.60393 12.1883C7.4901 12.0887 7.4901 11.9116 7.60393 11.812L13.5 6.65298L13.5 17.3473Z" fill="currentColor"/></svg>

Use it from the SVG package

Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/caret_left_24_regular.svg";

Details

NameCaret Left
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_caret_left_24_regular.svg
Filled fileic_fluent_caret_left_24_filled.svg
React componentsCaretLeft24Regular, CaretLeft24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

arrowdropdowndirectionexpandcontract

Related icons