Square Shadow icon
Used to represent general UI, app tile, content or other general layouts. The Square 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 Square 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 { SquareShadow24Regular, SquareShadow24Filled } from "@fluentui/react-icons";
export function Example() {
return <SquareShadow24Regular aria-label="Square Shadow" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_square_shadow_24_regular.svg" width="24" height="24" alt="Square 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.875 2C15.6009 2 17 3.39911 17 5.125V7H18.875C20.6009 7 22 8.39911 22 10.125V18.875C22 20.6009 20.6009 22 18.875 22H10.125C8.39911 22 7 20.6009 7 18.875V17H5.125C3.39911 17 2 15.6009 2 13.875V5.125C2 3.39911 3.39911 2 5.125 2H13.875ZM5.25 3.5C4.2835 3.5 3.5 4.2835 3.5 5.25V13.75C3.5 14.7165 4.2835 15.5 5.25 15.5H13.75C14.7165 15.5 15.5 14.7165 15.5 13.75V5.25C15.5 4.2835 14.7165 3.5 13.75 3.5H5.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/square_shadow_24_regular.svg";Details
| Name | Square Shadow |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_square_shadow_24_regular.svg |
| Filled file | ic_fluent_square_shadow_24_filled.svg |
| React components | SquareShadow24Regular, SquareShadow24Filled |
| License | MIT (© Microsoft Corporation) |