Arrow Between Down icon
The Arrow Between Down 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 Between Down 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 { ArrowBetweenDown24Regular, ArrowBetweenDown24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowBetweenDown24Regular aria-label="Arrow Between Down" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_between_down_24_regular.svg" width="24" height="24" alt="Arrow Between Down"> 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="M6 1.75C6 1.33579 5.66421 1 5.25 1C4.83579 1 4.5 1.33579 4.5 1.75V2.25C4.5 3.49264 5.50736 4.5 6.75 4.5H16.75C17.9926 4.5 19 3.49264 19 2.25V1.75C19 1.33579 18.6642 1 18.25 1C17.8358 1 17.5 1.33579 17.5 1.75V2.25C17.5 2.66421 17.1642 3 16.75 3H6.75C6.33579 3 6 2.66421 6 2.25V1.75ZM11.75 6C12.1642 6 12.5 6.33579 12.5 6.75V15.4393L16.2197 11.7197C16.5126 11.4268 16.9874 11.4268 17.2803 11.7197C17.5732 12.0126 17.5732 12.4874 17.2803 12.7803L12.2803 17.7803C11.9874 18.0732 11.5126 18.0732 11.2197 17.7803L6.21967 12.7803C5.92678 12.4874 5.92678 12.0126 6.21967 11.7197C6.51256 11.4268 6.98744 11.4268 7.28033 11.7197L11 15.4393V6.75C11 6.33579 11.3358 6 11.75 6ZM4.5 21.75C4.5 20.5074 5.50736 19.5 6.75 19.5H16.75C17.9926 19.5 19 20.5074 19 21.75V22.25C19 22.6642 18.6642 23 18.25 23C17.8358 23 17.5 22.6642 17.5 22.25V21.75C17.5 21.3358 17.1642 21 16.75 21H6.75C6.33579 21 6 21.3358 6 21.75V22.25C6 22.6642 5.66421 23 5.25 23C4.83579 23 4.5 22.6642 4.5 22.25V21.75Z" 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_between_down_24_regular.svg";Details
| Name | Arrow Between Down |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_between_down_24_regular.svg |
| Filled file | ic_fluent_arrow_between_down_24_filled.svg |
| React components | ArrowBetweenDown24Regular, ArrowBetweenDown24Filled |
| License | MIT (© Microsoft Corporation) |