Caret Down Right icon
Used in dropdown & expanding contracting scenarios. Contains directional variants. The Caret Down 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 Down 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 { CaretDownRight24Regular, CaretDownRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <CaretDownRight24Regular aria-label="Caret Down Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_caret_down_right_24_regular.svg" width="24" height="24" alt="Caret Down 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="M16.5005 7.81114L7.81114 16.5005H16.2505C16.3885 16.5005 16.5005 16.3885 16.5005 16.2505V7.81114ZM15.8666 6.3237C16.6541 5.53624 18.0005 6.09396 18.0005 7.20758V16.2505C18.0005 17.217 17.217 18.0005 16.2505 18.0005H7.20758C6.09395 18.0005 5.53624 16.654 6.3237 15.8666L15.8666 6.3237Z" 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_down_right_24_regular.svg";Details
| Name | Caret Down Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_caret_down_right_24_regular.svg |
| Filled file | ic_fluent_caret_down_right_24_filled.svg |
| React components | CaretDownRight24Regular, CaretDownRight24Filled |
| License | MIT (© Microsoft Corporation) |