Flip Vertical icon

Used to flip objects on canvas. The Flip 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.

Regular (outlined)

SVG

Filled

SVG

Use the Flip 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 { FlipVertical24Regular, FlipVertical24Filled } from "@fluentui/react-icons";

export function Example() {
  return <FlipVertical24Regular aria-label="Flip Vertical" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_flip_vertical_24_regular.svg" width="24" height="24" alt="Flip 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="M19.6561 2.11942C19.8705 2.25747 20.0001 2.495 20.0001 2.75V10.25C20.0001 10.6642 19.6643 11 19.2501 11H2.75007C2.39705 11 2.09181 10.7538 2.01707 10.4088C1.94234 10.0637 2.11834 9.71331 2.43972 9.56723L18.9397 2.06723C19.1719 1.96171 19.4417 1.98137 19.6561 2.11942ZM6.21253 9.5H18.5001V3.91476L6.21253 9.5ZM20 21.5C20 21.6712 19.9125 21.8304 19.768 21.9222C19.6234 22.0139 19.442 22.0253 19.2872 21.9524L2.28715 13.9524C2.07532 13.8527 1.96102 13.6194 2.01209 13.3909C2.06317 13.1624 2.26593 13 2.50005 13H19.5C19.7762 13 20 13.2239 20 13.5V21.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/flip_vertical_24_regular.svg";

Details

NameFlip Vertical
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_flip_vertical_24_regular.svg
Filled fileic_fluent_flip_vertical_24_filled.svg
React componentsFlipVertical24Regular, FlipVertical24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

editcreatemirror

Related icons