Building Retail Toolbox icon
Used for location scenarios. The Building Retail Toolbox 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 Toolbox 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 { BuildingRetailToolbox24Regular, BuildingRetailToolbox24Filled } from "@fluentui/react-icons";
export function Example() {
return <BuildingRetailToolbox24Regular aria-label="Building Retail Toolbox" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_building_retail_toolbox_24_regular.svg" width="24" height="24" alt="Building Retail Toolbox"> 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="M6.75 8C6.33579 8 6 8.33579 6 8.75V12.25C6 12.6642 6.33579 13 6.75 13H13.1875C13.447 12.3354 13.9577 11.7965 14.6028 11.5H7.5V9.5H16.5V11.25H18V8.75C18 8.33579 17.6642 8 17.25 8H6.75ZM11.5 14.75V14.9998C11.186 15.4176 11 15.9371 11 16.5V21H3.75C3.33579 21 3 20.6642 3 20.25V6.73244C2.4022 6.38663 2 5.74028 2 5C2 3.89543 2.89543 3 4 3H20C21.1046 3 22 3.89543 22 5C22 5.74028 21.5978 6.38663 21 6.73244V11.8786C20.5848 11.5357 20.0672 11.3123 19.5 11.2612V7H4.5V19.5H6V14.75C6 14.3358 6.33579 14 6.75 14H10.75C11.1642 14 11.5 14.3358 11.5 14.75ZM3.5 5C3.5 5.27614 3.72386 5.5 4 5.5H20C20.2761 5.5 20.5 5.27614 20.5 5C20.5 4.72386 20.2761 4.5 20 4.5H4C3.72386 4.5 3.5 4.72386 3.5 5ZM10 19.5V15.5H7.5V19.5H10ZM14 15H13.5C12.6716 15 12 15.6716 12 16.5V18H14.5V17.75C14.5 17.3358 14.8358 17 15.25 17C15.6642 17 16 17.3358 16 17.75V18H19V17.75C19 17.3358 19.3358 17 19.75 17C20.1642 17 20.5 17.3358 20.5 17.75V18H23V16.5C23 15.6716 22.3284 15 21.5 15H21V14C21 13.0335 20.2165 12.25 19.25 12.25H15.75C14.7835 12.25 14 13.0335 14 14V15ZM15.5 14C15.5 13.8619 15.6119 13.75 15.75 13.75H19.25C19.3881 13.75 19.5 13.8619 19.5 14V15H15.5V14ZM12 21.5V19.5H14.5V20.25C14.5 20.6642 14.8358 21 15.25 21C15.6642 21 16 20.6642 16 20.25V19.5H19V20.25C19 20.6642 19.3358 21 19.75 21C20.1642 21 20.5 20.6642 20.5 20.25V19.5H23V21.5C23 22.3284 22.3284 23 21.5 23H13.5C12.6716 23 12 22.3284 12 21.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_toolbox_24_regular.svg";Details
| Name | Building Retail Toolbox |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_building_retail_toolbox_24_regular.svg |
| Filled file | ic_fluent_building_retail_toolbox_24_filled.svg |
| React components | BuildingRetailToolbox24Regular, BuildingRetailToolbox24Filled |
| License | MIT (© Microsoft Corporation) |