Wallpaper icon

Used to represent images made for device backgrounds. The Wallpaper 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 Wallpaper 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 { Wallpaper24Regular, Wallpaper24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Wallpaper24Regular aria-label="Wallpaper" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_wallpaper_24_regular.svg" width="24" height="24" alt="Wallpaper">

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="M3 6.25C3 4.45507 4.45507 3 6.25 3H10.25C10.6642 3 11 3.33579 11 3.75C11 4.16421 10.6642 4.5 10.25 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V10.25C4.5 10.6642 4.16421 11 3.75 11C3.33579 11 3 10.6642 3 10.25V6.25ZM13 3.75C13 3.33579 13.3358 3 13.75 3H17.75C19.5449 3 21 4.45507 21 6.25V10.25C21 10.6642 20.6642 11 20.25 11C19.8358 11 19.5 10.6642 19.5 10.25V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H13.75C13.3358 4.5 13 4.16421 13 3.75ZM3.75 13C4.16421 13 4.5 13.3358 4.5 13.75V17.75C4.5 17.9563 4.5357 18.1543 4.60126 18.3381L10.2322 12.7071C11.2085 11.7308 12.7915 11.7308 13.7678 12.7071L19.3987 18.3381C19.4643 18.1543 19.5 17.9563 19.5 17.75V13.75C19.5 13.3358 19.8358 13 20.25 13C20.6642 13 21 13.3358 21 13.75V17.75C21 19.5449 19.5449 21 17.75 21H13.75C13.3358 21 13 20.6642 13 20.25C13 19.8358 13.3358 19.5 13.75 19.5H17.75C17.9563 19.5 18.1543 19.4643 18.3381 19.3987L12.7071 13.7678C12.3166 13.3772 11.6834 13.3772 11.2929 13.7678L5.66192 19.3987C5.84572 19.4643 6.04369 19.5 6.25 19.5H10.25C10.6642 19.5 11 19.8358 11 20.25C11 20.6642 10.6642 21 10.25 21H6.25C4.45507 21 3 19.5449 3 17.75V13.75C3 13.3358 3.33579 13 3.75 13ZM15.25 8C14.8358 8 14.5 8.33579 14.5 8.75C14.5 9.16421 14.8358 9.5 15.25 9.5C15.6642 9.5 16 9.16421 16 8.75C16 8.33579 15.6642 8 15.25 8ZM13 8.75C13 7.50736 14.0074 6.5 15.25 6.5C16.4926 6.5 17.5 7.50736 17.5 8.75C17.5 9.99264 16.4926 11 15.25 11C14.0074 11 13 9.99264 13 8.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/wallpaper_24_regular.svg";

Details

NameWallpaper
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_wallpaper_24_regular.svg
Filled fileic_fluent_wallpaper_24_filled.svg
React componentsWallpaper24Regular, Wallpaper24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

imagebackgroundpicturedesktoplaptopartdevice

Related icons