Screenshot icon
Used in screen capture scenarios. The Screenshot 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.
Use the Screenshot 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 { Screenshot24Regular, Screenshot24Filled } from "@fluentui/react-icons";
export function Example() {
return <Screenshot24Regular aria-label="Screenshot" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_screenshot_24_regular.svg" width="24" height="24" alt="Screenshot"> 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.25 3C4.45507 3 3 4.45507 3 6.25V17.75C3 19.5449 4.45507 21 6.25 21H17.75C19.5449 21 21 19.5449 21 17.75V6.25C21 4.45507 19.5449 3 17.75 3H6.25ZM4.5 6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H17.75C18.7165 4.5 19.5 5.2835 19.5 6.25V17.75C19.5 18.7165 18.7165 19.5 17.75 19.5H6.25C5.2835 19.5 4.5 18.7165 4.5 17.75V6.25ZM8 7.5C7.72386 7.5 7.5 7.72386 7.5 8V10.25C7.5 10.6642 7.16421 11 6.75 11C6.33579 11 6 10.6642 6 10.25V8C6 6.89543 6.89543 6 8 6H10.25C10.6642 6 11 6.33579 11 6.75C11 7.16421 10.6642 7.5 10.25 7.5H8ZM8 16.5C7.72386 16.5 7.5 16.2761 7.5 16V13.75C7.5 13.3358 7.16421 13 6.75 13C6.33579 13 6 13.3358 6 13.75V16C6 17.1046 6.89543 18 8 18H10.25C10.6642 18 11 17.6642 11 17.25C11 16.8358 10.6642 16.5 10.25 16.5H8ZM16.5 8C16.5 7.72386 16.2761 7.5 16 7.5H13.75C13.3358 7.5 13 7.16421 13 6.75C13 6.33579 13.3358 6 13.75 6H16C17.1046 6 18 6.89543 18 8V10.25C18 10.6642 17.6642 11 17.25 11C16.8358 11 16.5 10.6642 16.5 10.25V8ZM16 16.5C16.2761 16.5 16.5 16.2761 16.5 16V13.75C16.5 13.3358 16.8358 13 17.25 13C17.6642 13 18 13.3358 18 13.75V16C18 17.1046 17.1046 18 16 18H13.75C13.3358 18 13 17.6642 13 17.25C13 16.8358 13.3358 16.5 13.75 16.5H16Z" 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/screenshot_24_regular.svg";Details
| Name | Screenshot |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_screenshot_24_regular.svg |
| Filled file | ic_fluent_screenshot_24_filled.svg |
| React components | Screenshot24Regular, Screenshot24Filled |
| License | MIT (© Microsoft Corporation) |