Image Reflection icon
Used to represent images in content and photo editing scenarios. The Image Reflection 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 Reflection 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 { ImageReflection24Regular, ImageReflection24Filled } from "@fluentui/react-icons";
export function Example() {
return <ImageReflection24Regular aria-label="Image Reflection" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_image_reflection_24_regular.svg" width="24" height="24" alt="Image Reflection"> 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="M16.25 7.75C16.25 8.44036 15.6904 9 15 9C14.3096 9 13.75 8.44036 13.75 7.75C13.75 7.05964 14.3096 6.5 15 6.5C15.6904 6.5 16.25 7.05964 16.25 7.75ZM16.9174 16.9921C16.8623 16.9973 16.8065 17 16.75 17H15.75C15.3358 17 15 17.3358 15 17.75C15 18.1642 15.3358 18.5 15.75 18.5H16.75C17.7165 18.5 18.5 19.2835 18.5 20.25V21C18.5 21.4142 18.8358 21.75 19.25 21.75C19.6642 21.75 20 21.4142 20 21V20.25C20 19.2448 19.5436 18.3462 18.8268 17.75C19.5436 17.1538 20 16.2552 20 15.25V6.25C20 4.45507 18.5449 3 16.75 3H7.25C5.45507 3 4 4.45507 4 6.25V15.25C4 16.2552 4.45637 17.1538 5.17322 17.75C4.45637 18.3462 4 19.2448 4 20.25V21C4 21.4142 4.33579 21.75 4.75 21.75C5.16421 21.75 5.5 21.4142 5.5 21V20.25C5.5 19.2835 6.2835 18.5 7.25 18.5H8.25C8.66421 18.5 9 18.1642 9 17.75C9 17.3358 8.66421 17 8.25 17H7.25C7.19323 17 7.1371 16.9973 7.08172 16.992L11.4762 12.7079C11.7675 12.4239 12.2321 12.4239 12.5233 12.7079L16.9174 16.9921ZM7.25 4.5H16.75C17.7165 4.5 18.5 5.2835 18.5 6.25V15.25C18.5 15.5916 18.4021 15.9104 18.2329 16.1797L13.5705 11.6339C12.6967 10.7819 11.303 10.7819 10.4291 11.6338L5.76674 16.1791C5.59773 15.9099 5.5 15.5914 5.5 15.25V6.25C5.5 5.2835 6.2835 4.5 7.25 4.5ZM11.25 17C10.8358 17 10.5 17.3358 10.5 17.75C10.5 18.1642 10.8358 18.5 11.25 18.5H12.75C13.1642 18.5 13.5 18.1642 13.5 17.75C13.5 17.3358 13.1642 17 12.75 17H11.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/image_reflection_24_regular.svg";Details
| Name | Image Reflection |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_image_reflection_24_regular.svg |
| Filled file | ic_fluent_image_reflection_24_filled.svg |
| React components | ImageReflection24Regular, ImageReflection24Filled |
| License | MIT (© Microsoft Corporation) |