Orientation Portrait icon

The Orientation Portrait 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 Orientation Portrait 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 { OrientationPortrait24Regular, OrientationPortrait24Filled } from "@fluentui/react-icons";

export function Example() {
  return <OrientationPortrait24Regular aria-label="Orientation Portrait" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_orientation_portrait_24_regular.svg" width="24" height="24" alt="Orientation Portrait">

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="M4.75 19C5.16421 19 5.5 19.3358 5.5 19.75V20.25C5.5 20.3881 5.61193 20.5 5.75 20.5H6.25C6.66421 20.5 7 20.8358 7 21.25C7 21.6642 6.66421 22 6.25 22H5.75C4.7835 22 4 21.2165 4 20.25V19.75C4 19.3358 4.33579 19 4.75 19ZM10.25 20.5C10.6642 20.5 11 20.8358 11 21.25C11 21.6642 10.6642 22 10.25 22H8.75C8.33579 22 8 21.6642 8 21.25C8 20.8358 8.33579 20.5 8.75 20.5H10.25ZM18.0996 8C19.1489 8 20 8.85105 20 9.90039V20.0996C20 21.149 19.1489 22 18.0996 22H12.9004C11.8511 22 11 21.149 11 20.0996V11.75C11 12.1642 10.6642 12.5 10.25 12.5H8.75C8.33579 12.5 8 12.1642 8 11.75C8 11.3358 8.33579 11 8.75 11H10.25C10.6642 11 11 11.3358 11 11.75V9.90039C11 8.85105 11.851 8 12.9004 8H18.0996ZM12.9004 9.5C12.6795 9.5 12.5 9.67948 12.5 9.90039V20.0996C12.5 20.3205 12.6795 20.5 12.9004 20.5H18.0996C18.3205 20.5 18.5 20.3205 18.5 20.0996V9.90039C18.5 9.67948 18.3205 9.5 18.0996 9.5H12.9004ZM4.75 15C5.16421 15 5.5 15.3358 5.5 15.75V17.25C5.5 17.6642 5.16421 18 4.75 18C4.33579 18 4 17.6642 4 17.25V15.75C4 15.3358 4.33579 15 4.75 15ZM6.25 11C6.66421 11 7 11.3358 7 11.75C7 12.1642 6.66421 12.5 6.25 12.5H5.75C5.61193 12.5 5.5 12.6119 5.5 12.75V13.25C5.5 13.6642 5.16421 14 4.75 14C4.33579 14 4 13.6642 4 13.25V12.75C4 11.7835 4.7835 11 5.75 11H6.25ZM11.5 2C14.0581 2 16.2082 3.74667 16.8232 6.1123C16.945 6.58111 16.5596 7 16.0752 7C15.729 6.99978 15.4433 6.73931 15.3486 6.40625C14.8727 4.72895 13.3298 3.5 11.5 3.5C9.5374 3.5 7.90536 4.91385 7.56543 6.77832L8.26172 6.18066C8.57616 5.91115 9.04974 5.94738 9.31934 6.26172C9.58886 6.57616 9.55263 7.04975 9.23828 7.31934L7.48828 8.81934C7.20741 9.06008 6.79259 9.06008 6.51172 8.81934L4.76172 7.31934C4.44738 7.04974 4.41115 6.57616 4.68066 6.26172C4.95025 5.94737 5.42384 5.91114 5.73828 6.18066L6.09375 6.48535C6.56995 3.9326 8.80915 2 11.5 2Z" 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/orientation_portrait_24_regular.svg";

Details

NameOrientation Portrait
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_orientation_portrait_24_regular.svg
Filled fileic_fluent_orientation_portrait_24_filled.svg
React componentsOrientationPortrait24Regular, OrientationPortrait24Filled
LicenseMIT (© Microsoft Corporation)

Related icons