Phone Status Bar icon

Used to represent top ui in phone scenarios. The Phone 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 Phone 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 { PhoneStatusBar24Regular, PhoneStatusBar24Filled } from "@fluentui/react-icons";

export function Example() {
  return <PhoneStatusBar24Regular aria-label="Phone Status Bar" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_phone_status_bar_24_regular.svg" width="24" height="24" alt="Phone 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="M15.75 2C16.9926 2 18 3.00736 18 4.25V19.75C18 20.9926 16.9926 22 15.75 22H8.25C7.00736 22 6 20.9926 6 19.75V4.25C6 3.00736 7.00736 2 8.25 2H15.75ZM15.75 3.5H8.25C7.83579 3.5 7.5 3.83579 7.5 4.25V19.75C7.5 20.1642 7.83579 20.5 8.25 20.5H15.75C16.1642 20.5 16.5 20.1642 16.5 19.75V4.25C16.5 3.83579 16.1642 3.5 15.75 3.5ZM14.75 4.5C15.1642 4.5 15.5 4.83579 15.5 5.25C15.5 5.66421 15.1642 6 14.75 6H9.25C8.83579 6 8.5 5.66421 8.5 5.25C8.5 4.83579 8.83579 4.5 9.25 4.5H14.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/phone_status_bar_24_regular.svg";

Details

NamePhone Status Bar
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_phone_status_bar_24_regular.svg
Filled fileic_fluent_phone_status_bar_24_filled.svg
React componentsPhoneStatusBar24Regular, PhoneStatusBar24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

devicemobilesmallscreencellulartelephoneappleandroiduiheader

Related icons