Re Order Vertical icon
The Re Order Vertical 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 Re Order Vertical 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 { ReOrderVertical24Regular, ReOrderVertical24Filled } from "@fluentui/react-icons";
export function Example() {
return <ReOrderVertical24Regular aria-label="Re Order Vertical" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_re_order_vertical_24_regular.svg" width="24" height="24" alt="Re Order Vertical"> 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="M13.25 21.25V2.75C13.25 2.33579 13.5858 2 14 2C14.3797 2 14.6935 2.28215 14.7432 2.64823L14.75 2.75V21.25C14.75 21.6642 14.4142 22 14 22C13.6203 22 13.3065 21.7178 13.2568 21.3518L13.25 21.25ZM9.25 21.25V2.75C9.25 2.33579 9.58579 2 10 2C10.3797 2 10.6935 2.28215 10.7432 2.64823L10.75 2.75V21.25C10.75 21.6642 10.4142 22 10 22C9.6203 22 9.30651 21.7178 9.25685 21.3518L9.25 21.25Z" 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/re_order_vertical_24_regular.svg";Details
| Name | Re Order Vertical |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_re_order_vertical_24_regular.svg |
| Filled file | ic_fluent_re_order_vertical_24_filled.svg |
| React components | ReOrderVertical24Regular, ReOrderVertical24Filled |
| License | MIT (© Microsoft Corporation) |