Dual Screen Status Bar icon

Used in foldable screen scenarios. The Dual Screen Status Bar 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 Dual Screen Status Bar 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 { DualScreenStatusBar24Regular, DualScreenStatusBar24Filled } from "@fluentui/react-icons";

export function Example() {
  return <DualScreenStatusBar24Regular aria-label="Dual Screen Status Bar" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_dual_screen_status_bar_24_regular.svg" width="24" height="24" alt="Dual Screen Status Bar">

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="M12.7476 4.00195L12.747 4.00395L20.2451 4.00439C21.2116 4.00439 21.9951 4.78789 21.9951 5.75439V18.2495C21.9951 19.216 21.2116 19.9995 20.2451 19.9995H11.2476L11.247 19.997L3.75 19.9971C2.7835 19.9971 2 19.2136 2 18.2471V5.75195C2 4.78545 2.7835 4.00195 3.75 4.00195H12.7476ZM20.2451 5.50439H12.7476V18.4995H20.2451C20.3832 18.4995 20.4951 18.3876 20.4951 18.2495V5.75439C20.4951 5.61632 20.3832 5.50439 20.2451 5.50439ZM11.2476 5.50195H3.75C3.61193 5.50195 3.5 5.61388 3.5 5.75195V18.2471C3.5 18.3851 3.61193 18.4971 3.75 18.4971H11.2476V5.50195ZM18.7499 6.50073C19.1641 6.50073 19.4999 6.83652 19.4999 7.25073C19.4999 7.66495 19.1641 8.00073 18.7499 8.00073H14.2483C13.8341 8.00073 13.4983 7.66495 13.4983 7.25073C13.4983 6.83652 13.8341 6.50073 14.2483 6.50073H18.7499Z" 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/dual_screen_status_bar_24_regular.svg";

Details

NameDual Screen Status Bar
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_dual_screen_status_bar_24_regular.svg
Filled fileic_fluent_dual_screen_status_bar_24_filled.svg
React componentsDualScreenStatusBar24Regular, DualScreenStatusBar24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

duoopendoublescreenfoldable

Related icons