Mobile Optimized icon

Used to represent UI refactoring for mobile screens. The Mobile Optimized 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 Mobile Optimized 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 { MobileOptimized24Regular, MobileOptimized24Filled } from "@fluentui/react-icons";

export function Example() {
  return <MobileOptimized24Regular aria-label="Mobile Optimized" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_mobile_optimized_24_regular.svg" width="24" height="24" alt="Mobile Optimized">

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 2.75C6 2.33579 5.66421 2 5.25 2C4.83579 2 4.5 2.33579 4.5 2.75V4.5H2.75C2.33579 4.5 2 4.83579 2 5.25C2 5.66421 2.33579 6 2.75 6H5.25C5.66421 6 6 5.66421 6 5.25V2.75ZM19.5 2.75C19.5 2.33579 19.1642 2 18.75 2C18.3358 2 18 2.33579 18 2.75V5.25C18 5.66421 18.3358 6 18.75 6H21.25C21.6642 6 22 5.66421 22 5.25C22 4.83579 21.6642 4.5 21.25 4.5H19.5V2.75ZM8.5 6C7.67157 6 7 6.67157 7 7.5V16.5C7 17.3284 7.67157 18 8.5 18H15.5C16.3284 18 17 17.3284 17 16.5V7.5C17 6.67157 16.3284 6 15.5 6H8.5ZM8.5 7.5H15.5V16.5H8.5V7.5ZM5.25 22C5.66421 22 6 21.6642 6 21.25V18.75C6 18.3358 5.66421 18 5.25 18H2.75C2.33579 18 2 18.3358 2 18.75C2 19.1642 2.33579 19.5 2.75 19.5H4.5V21.25C4.5 21.6642 4.83579 22 5.25 22ZM18.75 22C19.1642 22 19.5 21.6642 19.5 21.25V19.5H21.25C21.6642 19.5 22 19.1642 22 18.75C22 18.3358 21.6642 18 21.25 18H18.75C18.3358 18 18 18.3358 18 18.75V21.25C18 21.6642 18.3358 22 18.75 22ZM10.25 9.5C9.83579 9.5 9.5 9.83579 9.5 10.25C9.5 10.6642 9.83579 11 10.25 11H13.75C14.1642 11 14.5 10.6642 14.5 10.25C14.5 9.83579 14.1642 9.5 13.75 9.5H10.25ZM10.25 12.5C9.83579 12.5 9.5 12.8358 9.5 13.25C9.5 13.6642 9.83579 14 10.25 14H12.25C12.6642 14 13 13.6642 13 13.25C13 12.8358 12.6642 12.5 12.25 12.5H10.25Z" 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/mobile_optimized_24_regular.svg";

Details

NameMobile Optimized
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_mobile_optimized_24_regular.svg
Filled fileic_fluent_mobile_optimized_24_filled.svg
React componentsMobileOptimized24Regular, MobileOptimized24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

mobilescalefitresizepageresponsive

Related icons