Image Shadow icon
Used to represent images in content and photo editing scenarios. The Image Shadow 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 Image Shadow 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 { ImageShadow24Regular, ImageShadow24Filled } from "@fluentui/react-icons";
export function Example() {
return <ImageShadow24Regular aria-label="Image Shadow" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_image_shadow_24_regular.svg" width="24" height="24" alt="Image Shadow"> 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="M13.9963 6.74817C13.9963 7.43751 13.4375 7.99633 12.7482 7.99633C12.0588 7.99633 11.5 7.43751 11.5 6.74817C11.5 6.05882 12.0588 5.5 12.7482 5.5C13.4375 5.5 13.9963 6.05882 13.9963 6.74817ZM2 5.25C2 3.45507 3.45507 2 5.25 2H14.25C16.0449 2 17.5 3.45507 17.5 5.25V14.25C17.5 16.0449 16.0449 17.5 14.25 17.5H5.25C3.45507 17.5 2 16.0449 2 14.25V5.25ZM5.25 3.5C4.2835 3.5 3.5 4.2835 3.5 5.25V14.25C3.5 14.481 3.54474 14.7015 3.62602 14.9033L8.21252 10.6128C9.07751 9.80361 10.4217 9.80361 11.2867 10.6128L15.8738 14.9038C15.9552 14.7018 16 14.4812 16 14.25V5.25C16 4.2835 15.2165 3.5 14.25 3.5H5.25ZM14.7669 15.9224L10.262 11.7082C9.97365 11.4385 9.52558 11.4385 9.23725 11.7082L4.73252 15.9222C4.89607 15.9728 5.06985 16 5.25 16H14.25C14.4299 16 14.6035 15.9728 14.7669 15.9224ZM6.49902 18.75V18.5H14.5C14.58 18.5 14.6594 18.4977 14.7382 18.493C16.8369 18.3702 18.5009 16.6294 18.5009 14.4999V6.5H18.749C20.5439 6.5 21.999 7.95507 21.999 9.75V16.75C21.999 19.6495 19.6485 22 16.749 22H9.74902C7.9541 22 6.49902 20.5449 6.49902 18.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/image_shadow_24_regular.svg";Details
| Name | Image Shadow |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_image_shadow_24_regular.svg |
| Filled file | ic_fluent_image_shadow_24_filled.svg |
| React components | ImageShadow24Regular, ImageShadow24Filled |
| License | MIT (© Microsoft Corporation) |