Store Microsoft icon
Used to represent the Microsoft Store. The Store Microsoft 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 Store Microsoft 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 { StoreMicrosoft24Regular, StoreMicrosoft24Filled } from "@fluentui/react-icons";
export function Example() {
return <StoreMicrosoft24Regular aria-label="Store Microsoft" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_store_microsoft_24_regular.svg" width="24" height="24" alt="Store Microsoft"> 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="M11.5 9.5V13H8V9.5H11.5ZM11.5 17.5V14H8V17.5H11.5ZM16 9.5V13H12.5V9.5H16ZM16 17.5V14H12.5V17.5H16ZM8 6V3.75C8 2.7835 8.7835 2 9.75 2H14.25C15.2165 2 16 2.7835 16 3.75V6H21.25C21.6642 6 22 6.33579 22 6.75V18.25C22 19.7688 20.7688 21 19.25 21H4.75C3.23122 21 2 19.7688 2 18.25V6.75C2 6.33579 2.33579 6 2.75 6H8ZM9.5 3.75V6H14.5V3.75C14.5 3.61193 14.3881 3.5 14.25 3.5H9.75C9.61193 3.5 9.5 3.61193 9.5 3.75ZM3.5 18.25C3.5 18.9404 4.05964 19.5 4.75 19.5H19.25C19.9404 19.5 20.5 18.9404 20.5 18.25V7.5H3.5V18.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/store_microsoft_24_regular.svg";Details
| Name | Store Microsoft |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_store_microsoft_24_regular.svg |
| Filled file | ic_fluent_store_microsoft_24_filled.svg |
| React components | StoreMicrosoft24Regular, StoreMicrosoft24Filled |
| License | MIT (© Microsoft Corporation) |