Re Order icon
Used as handles for content. The Re Order 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 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 { ReOrder24Regular, ReOrder24Filled } from "@fluentui/react-icons";
export function Example() {
return <ReOrder24Regular aria-label="Re Order" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_re_order_24_regular.svg" width="24" height="24" alt="Re Order"> 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="M2.75 13.25H21.25C21.6642 13.25 22 13.5858 22 14C22 14.3797 21.7178 14.6935 21.3518 14.7432L21.25 14.75H2.75C2.33579 14.75 2 14.4142 2 14C2 13.6203 2.28215 13.3065 2.64823 13.2568L2.75 13.25H21.25H2.75ZM2.75 9.25H21.25C21.6642 9.25 22 9.58579 22 10C22 10.3797 21.7178 10.6935 21.3518 10.7432L21.25 10.75H2.75C2.33579 10.75 2 10.4142 2 10C2 9.6203 2.28215 9.30651 2.64823 9.25685L2.75 9.25H21.25H2.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/re_order_24_regular.svg";Details
| Name | Re Order |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_re_order_24_regular.svg |
| Filled file | ic_fluent_re_order_24_filled.svg |
| React components | ReOrder24Regular, ReOrder24Filled |
| License | MIT (© Microsoft Corporation) |