Frame icon

Used to represent a frame or art board in canvas UI. The Frame 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 Frame 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 { Frame24Regular, Frame24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

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

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 6H4.5V18H2.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 22C5.66421 22 6 21.6642 6 21.25V19.5H18V21.25C18 21.6642 18.3358 22 18.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 18H19.5V6H21.25C21.6642 6 22 5.66421 22 5.25C22 4.83579 21.6642 4.5 21.25 4.5H19.5V2.75C19.5 2.33579 19.1642 2 18.75 2C18.3358 2 18 2.33579 18 2.75V4.5H6V2.75ZM18 18H6V6H18V18Z" 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/frame_24_regular.svg";

Details

NameFrame
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_frame_24_regular.svg
Filled fileic_fluent_frame_24_filled.svg
React componentsFrame24Regular, Frame24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

canvasgroupcollectionartboard

Related icons