Arrow Step In Diagonal Down Left icon
Used for debugging scenarios. The Arrow Step In Diagonal Down Left 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 Step In Diagonal Down Left 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 { ArrowStepInDiagonalDownLeft24Regular, ArrowStepInDiagonalDownLeft24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowStepInDiagonalDownLeft24Regular aria-label="Arrow Step In Diagonal Down Left" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_step_in_diagonal_down_left_24_regular.svg" width="24" height="24" alt="Arrow Step In Diagonal Down Left"> 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 4.28033C20.0732 3.98744 20.0732 3.51256 19.7803 3.21967C19.4874 2.92678 19.0126 2.92678 18.7197 3.21967L10.5 11.4393V5.75C10.5 5.33579 10.1642 5 9.75 5C9.33579 5 9 5.33579 9 5.75V13.25C9 13.6642 9.33579 14 9.75 14H17.25C17.6642 14 18 13.6642 18 13.25C18 12.8358 17.6642 12.5 17.25 12.5H11.5607L19.7803 4.28033ZM6 21C7.65685 21 9 19.6569 9 18C9 16.3431 7.65685 15 6 15C4.34315 15 3 16.3431 3 18C3 19.6569 4.34315 21 6 21ZM6 19.5C5.17157 19.5 4.5 18.8284 4.5 18C4.5 17.1716 5.17157 16.5 6 16.5C6.82843 16.5 7.5 17.1716 7.5 18C7.5 18.8284 6.82843 19.5 6 19.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_step_in_diagonal_down_left_24_regular.svg";Details
| Name | Arrow Step In Diagonal Down Left |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_step_in_diagonal_down_left_24_regular.svg |
| Filled file | ic_fluent_arrow_step_in_diagonal_down_left_24_filled.svg |
| React components | ArrowStepInDiagonalDownLeft24Regular, ArrowStepInDiagonalDownLeft24Filled |
| License | MIT (© Microsoft Corporation) |