Position Backward icon
Used in canvas edit scenarios when layering. The Position Backward 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 Position Backward 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 { PositionBackward24Regular, PositionBackward24Filled } from "@fluentui/react-icons";
export function Example() {
return <PositionBackward24Regular aria-label="Position Backward" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_position_backward_24_regular.svg" width="24" height="24" alt="Position Backward"> 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.5 16.5H5.25C3.45507 16.5 2 15.0449 2 13.25V5.25C2 3.45507 3.45508 2 5.25 2L13.25 2C15.0449 2 16.5 3.45508 16.5 5.25V6.5L14.8477 6.5L15 6.34766V5.25C15 5.01859 14.9551 4.79767 14.8735 4.59549L12.969 6.5L10.8477 6.5L13.7693 3.57834C13.6052 3.52743 13.4308 3.5 13.25 3.5L11.969 3.5L3.5 11.969L3.5 13.25C3.5 13.4308 3.52742 13.6052 3.57834 13.7693L6.5 10.8477L6.5 12.969L4.59548 14.8735C4.79767 14.9551 5.01859 15 5.25 15L6.34766 15L6.5 14.8477L6.5 16.5ZM9.84766 3.5L7.96898 3.5L3.5 7.96898L3.5 9.84766L9.84766 3.5ZM5.84766 3.5H5.25C4.2835 3.5 3.5 4.2835 3.5 5.25V5.84766L5.84766 3.5ZM22 18.75C22 20.5449 20.5449 22 18.75 22L10.75 22C8.95508 22 7.5 20.5449 7.5 18.75L7.5 10.75C7.5 8.95507 8.95508 7.5 10.75 7.5L18.75 7.5C20.5449 7.5 22 8.95507 22 10.75L22 18.75ZM18.75 20.5C19.7165 20.5 20.5 19.7165 20.5 18.75L20.5 10.75C20.5 9.7835 19.7165 9 18.75 9L10.75 9C9.78351 9 9 9.7835 9 10.75L9 18.75C9 19.7165 9.7835 20.5 10.75 20.5L18.75 20.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/position_backward_24_regular.svg";Details
| Name | Position Backward |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_position_backward_24_regular.svg |
| Filled file | ic_fluent_position_backward_24_filled.svg |
| React components | PositionBackward24Regular, PositionBackward24Filled |
| License | MIT (© Microsoft Corporation) |