Caret Right icon
Used in dropdown & expanding contracting scenarios. Contains directional variants. The Caret Right 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.
Use the Caret Right 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 { CaretRight24Regular, CaretRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <CaretRight24Regular aria-label="Caret Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_caret_right_24_regular.svg" width="24" height="24" alt="Caret Right"> 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="M11.0731 18.839C10.2649 19.5462 9 18.9722 9 17.8983L9 6.10204C9 5.02809 10.2649 4.45412 11.0731 5.16132L17.3838 10.6831C18.1806 11.3804 18.1806 12.6199 17.3838 13.3172L11.0731 18.839ZM10.5 17.3473L16.396 12.1883C16.5099 12.0887 16.5099 11.9116 16.396 11.812L10.5 6.65298L10.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_right_24_regular.svg";Details
| Name | Caret Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_caret_right_24_regular.svg |
| Filled file | ic_fluent_caret_right_24_filled.svg |
| React components | CaretRight24Regular, CaretRight24Filled |
| License | MIT (© Microsoft Corporation) |