Line Flow Diagonal Up Right icon
Used for scenarios involving connection points. The Line 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 Line 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 { LineFlowDiagonalUpRight24Regular, LineFlowDiagonalUpRight24Filled } from "@fluentui/react-icons";
export function Example() {
return <LineFlowDiagonalUpRight24Regular aria-label="Line Flow Diagonal Up Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_line_flow_diagonal_up_right_24_regular.svg" width="24" height="24" alt="Line 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="M19.7803 5.28033C20.0732 4.98744 20.0732 4.51256 19.7803 4.21967C19.4874 3.92678 19.0126 3.92678 18.7197 4.21967L9.24822 13.6911C8.60751 13.2549 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.7518L19.7803 5.28033ZM4.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/line_flow_diagonal_up_right_24_regular.svg";Details
| Name | Line Flow Diagonal Up Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_line_flow_diagonal_up_right_24_regular.svg |
| Filled file | ic_fluent_line_flow_diagonal_up_right_24_filled.svg |
| React components | LineFlowDiagonalUpRight24Regular, LineFlowDiagonalUpRight24Filled |
| License | MIT (© Microsoft Corporation) |