Arrow Flow Diagonal Up Right icon
Used for scenarios involving connection points. The Arrow Flow Diagonal Up 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 Flow Diagonal Up 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 { ArrowFlowDiagonalUpRight24Regular, ArrowFlowDiagonalUpRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowFlowDiagonalUpRight24Regular aria-label="Arrow Flow Diagonal Up Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_flow_diagonal_up_right_24_regular.svg" width="24" height="24" alt="Arrow Flow Diagonal Up 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="M12.75 4C12.3358 4 12 4.33579 12 4.75C12 5.16421 12.3358 5.5 12.75 5.5H17.4393L9.24822 13.6911C8.60751 13.255 7.83353 13 7 13C4.79086 13 3 14.7909 3 17C3 19.2091 4.79086 21 7 21C9.20914 21 11 19.2091 11 17C11 16.1665 10.745 15.3925 10.3089 14.7518L18.5 6.56066V11.25C18.5 11.6642 18.8358 12 19.25 12C19.6642 12 20 11.6642 20 11.25V4.75C20 4.33579 19.6642 4 19.25 4H12.75ZM4.5 17C4.5 15.6193 5.61929 14.5 7 14.5C8.38071 14.5 9.5 15.6193 9.5 17C9.5 18.3807 8.38071 19.5 7 19.5C5.61929 19.5 4.5 18.3807 4.5 17Z" 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_flow_diagonal_up_right_24_regular.svg";Details
| Name | Arrow Flow Diagonal Up Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_flow_diagonal_up_right_24_regular.svg |
| Filled file | ic_fluent_arrow_flow_diagonal_up_right_24_filled.svg |
| React components | ArrowFlowDiagonalUpRight24Regular, ArrowFlowDiagonalUpRight24Filled |
| License | MIT (© Microsoft Corporation) |