Window Edit icon
Used to represent general windowed app scenarios. The Window Edit icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_window_edit_16_regular.svg
Window Edit icon in React
npm install @fluentui/react-icons
import { WindowEdit16Regular } from "@fluentui/react-icons";
export function Example() {
return <WindowEdit16Regular aria-label="Window Edit" />;
}Use the Window Edit 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 { WindowEdit16Regular, WindowEdit16Filled } from "@fluentui/react-icons";
export function Example() {
return <WindowEdit16Regular aria-label="Window Edit" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_window_edit_20_regular.svg" width="20" height="20" alt="Window Edit"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.22l.21-.84.04-.16H6a2 2 0 0 1-2-2V7h12v2.23q.48-.2 1-.23V6a3 3 0 0 0-3-3zM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2zm6.98 9.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2 2 0 0 1-1.02.58l-1.5.37a.9.9 0 0 1-1.07-1.07l.37-1.5q.16-.6.58-1.02"/></svg>Details
| Name | Window Edit |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_window_edit_20_regular.svg |
| Filled file | ic_fluent_window_edit_20_filled.svg |
| React (Regular) | WindowEdit16Regular, WindowEdit20Regular |
| React (Filled) | WindowEdit16Filled, WindowEdit20Filled |
| License | MIT (© Microsoft Corporation) |