Arrow Bidirectional Up Down icon
Used for measuring height. The Arrow Bidirectional Up 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 Bidirectional Up 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 { ArrowBidirectionalUpDown24Regular, ArrowBidirectionalUpDown24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowBidirectionalUpDown24Regular aria-label="Arrow Bidirectional Up Down" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_bidirectional_up_down_24_regular.svg" width="24" height="24" alt="Arrow Bidirectional Up 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="M11.25 5.6284V18.3716L7.79375 14.7334C7.50846 14.4331 7.03374 14.421 6.73344 14.7063C6.43313 14.9915 6.42096 15.4663 6.70625 15.7666L11.4563 20.7666C11.5978 20.9156 11.7944 21 12 21C12.2056 21 12.4022 20.9156 12.5438 20.7666L17.2938 15.7666C17.579 15.4663 17.5669 14.9915 17.2666 14.7063C16.9663 14.421 16.4915 14.4331 16.2063 14.7334L12.75 18.3716V5.6284L16.2063 9.26656C16.4915 9.56687 16.9663 9.57904 17.2666 9.29375C17.5669 9.00846 17.579 8.53374 17.2938 8.23344L12.5449 3.23461C12.4082 3.09013 12.2146 3 12 3C11.7854 3 11.5918 3.09013 11.4551 3.23461L6.70625 8.23344C6.42096 8.53374 6.43313 9.00846 6.73344 9.29375C7.03374 9.57904 7.50846 9.56687 7.79375 9.26656L11.25 5.6284Z" 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_bidirectional_up_down_24_regular.svg";Details
| Name | Arrow Bidirectional Up Down |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_bidirectional_up_down_24_regular.svg |
| Filled file | ic_fluent_arrow_bidirectional_up_down_24_filled.svg |
| React components | ArrowBidirectionalUpDown24Regular, ArrowBidirectionalUpDown24Filled |
| License | MIT (© Microsoft Corporation) |