Building Retail More icon
Used to represent a database which contains business scenario specific data. The Building Retail More 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 Building Retail More 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 { BuildingRetailMore24Regular, BuildingRetailMore24Filled } from "@fluentui/react-icons";
export function Example() {
return <BuildingRetailMore24Regular aria-label="Building Retail More" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_building_retail_more_24_regular.svg" width="24" height="24" alt="Building Retail More"> 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="M7.75 16C8.44036 16 9 15.4404 9 14.75C9 14.0596 8.44036 13.5 7.75 13.5C7.05964 13.5 6.5 14.0596 6.5 14.75C6.5 15.4404 7.05964 16 7.75 16ZM13.25 14.75C13.25 15.4404 12.6904 16 12 16C11.3096 16 10.75 15.4404 10.75 14.75C10.75 14.0596 11.3096 13.5 12 13.5C12.6904 13.5 13.25 14.0596 13.25 14.75ZM16.25 16C16.9404 16 17.5 15.4404 17.5 14.75C17.5 14.0596 16.9404 13.5 16.25 13.5C15.5596 13.5 15 14.0596 15 14.75C15 15.4404 15.5596 16 16.25 16ZM4.87305 3.63305C5.20552 3.23205 5.69934 3 6.22024 3H17.7804C18.3013 3 18.7952 3.23205 19.1276 3.63305L22.7086 7.95218C23.3841 8.76691 22.8046 10 21.7463 10H21V18.75C21 20.1307 19.8807 21.25 18.5 21.25H5.5C4.11929 21.25 3 20.1307 3 18.75V10H2.25434C1.19601 10 0.616569 8.7669 1.29206 7.95218L4.87305 3.63305ZM6.22024 4.5C6.14583 4.5 6.07528 4.53315 6.02779 4.59044L2.78636 8.5H21.2143L17.9729 4.59044C17.9254 4.53315 17.8548 4.5 17.7804 4.5H6.22024ZM4.5 10V18.75C4.5 19.3023 4.94772 19.75 5.5 19.75H18.5C19.0523 19.75 19.5 19.3023 19.5 18.75V10H4.5Z" 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/building_retail_more_24_regular.svg";Details
| Name | Building Retail More |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_building_retail_more_24_regular.svg |
| Filled file | ic_fluent_building_retail_more_24_filled.svg |
| React components | BuildingRetailMore24Regular, BuildingRetailMore24Filled |
| License | MIT (© Microsoft Corporation) |