Arrow Circle Down Right icon
The Arrow Circle 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 Arrow Circle 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 { ArrowCircleDownRight24Regular, ArrowCircleDownRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowCircleDownRight24Regular aria-label="Arrow Circle Down Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_circle_down_right_24_regular.svg" width="24" height="24" alt="Arrow Circle 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="M13.4905 14.5H8.75C8.33579 14.5 8 14.8358 8 15.25C8 15.6642 8.33579 16 8.75 16H15.25C15.6642 16 16 15.6642 16 15.25V8.75C16 8.33579 15.6642 8 15.25 8C14.8358 8 14.5 8.33579 14.5 8.75V13.3886L9.2778 8.21703C8.98349 7.92556 8.50862 7.92787 8.21715 8.22219C7.92569 8.51651 7.928 8.99137 8.22232 9.28284L13.4905 14.5ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5Z" 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/arrow_circle_down_right_24_regular.svg";Details
| Name | Arrow Circle Down Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_circle_down_right_24_regular.svg |
| Filled file | ic_fluent_arrow_circle_down_right_24_filled.svg |
| React components | ArrowCircleDownRight24Regular, ArrowCircleDownRight24Filled |
| License | MIT (© Microsoft Corporation) |