Projection Screen Dismiss icon
Used to represent slide view or general presentation. The Projection Screen Dismiss 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 Projection Screen Dismiss 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 { ProjectionScreenDismiss24Regular, ProjectionScreenDismiss24Filled } from "@fluentui/react-icons";
export function Example() {
return <ProjectionScreenDismiss24Regular aria-label="Projection Screen Dismiss" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_projection_screen_dismiss_24_regular.svg" width="24" height="24" alt="Projection Screen Dismiss"> 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="M23 6.5C23 9.53757 20.5376 12 17.5 12C14.4624 12 12 9.53757 12 6.5C12 3.46243 14.4624 1 17.5 1C20.5376 1 23 3.46243 23 6.5ZM15.8536 4.14645C15.6583 3.95118 15.3417 3.95118 15.1464 4.14645C14.9512 4.34171 14.9512 4.65829 15.1464 4.85355L16.7929 6.5L15.1464 8.14645C14.9512 8.34171 14.9512 8.65829 15.1464 8.85355C15.3417 9.04882 15.6583 9.04882 15.8536 8.85355L17.5 7.20711L19.1464 8.85355C19.3417 9.04882 19.6583 9.04882 19.8536 8.85355C20.0488 8.65829 20.0488 8.34171 19.8536 8.14645L18.2071 6.5L19.8536 4.85355C20.0488 4.65829 20.0488 4.34171 19.8536 4.14645C19.6583 3.95118 19.3417 3.95118 19.1464 4.14645L17.5 5.79289L15.8536 4.14645ZM19.5 13.25V12.6865C20.0335 12.5142 20.5368 12.2747 21 11.9782V13.25C21 15.3211 19.3211 17 17.25 17H12.75V19.5H16.25C16.6642 19.5 17 19.8358 17 20.25C17 20.6642 16.6642 21 16.25 21H7.75C7.33579 21 7 20.6642 7 20.25C7 19.8358 7.33579 19.5 7.75 19.5H11.25V17H6.75C4.67893 17 3 15.3211 3 13.25V5.91465C2.4174 5.70873 2 5.15311 2 4.5C2 3.67157 2.67157 3 3.5 3H12.0218C11.4594 3.8784 11.1025 4.90101 11.0189 6H4.5V13.25C4.5 14.4926 5.50736 15.5 6.75 15.5H17.25C18.4926 15.5 19.5 14.4926 19.5 13.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/projection_screen_dismiss_24_regular.svg";Details
| Name | Projection Screen Dismiss |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_projection_screen_dismiss_24_regular.svg |
| Filled file | ic_fluent_projection_screen_dismiss_24_filled.svg |
| React components | ProjectionScreenDismiss24Regular, ProjectionScreenDismiss24Filled |
| License | MIT (© Microsoft Corporation) |