Toolbox icon
Used in general tooling and settings scenarios. The 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 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 { Toolbox24Regular, Toolbox24Filled } from "@fluentui/react-icons";
export function Example() {
return <Toolbox24Regular aria-label="Toolbox" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_toolbox_24_regular.svg" width="24" height="24" alt="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="M7 6.25293V7.00031H4.25C3.00736 7.00031 2 8.00766 2 9.2503V17.7471C2 18.9897 3.00736 19.9971 4.25 19.9971H19.75C20.9926 19.9971 22 18.9897 22 17.7471V9.25031C22 8.00766 20.9926 7.00031 19.75 7.00031H17V6.25293C17 5.01029 15.9926 4.00293 14.75 4.00293H9.25C8.00736 4.00293 7 5.01029 7 6.25293ZM9.25 5.50293H14.75C15.1642 5.50293 15.5 5.83872 15.5 6.25293V7.00031H8.5V6.25293C8.5 5.83872 8.83579 5.50293 9.25 5.50293ZM7 8.50293H8.5V8.50031H15.5V8.50293H17V8.50031H19.75C20.1642 8.50031 20.5 8.83609 20.5 9.25031V11.5003H17.5V10.7503C17.5 10.3361 17.1642 10.0003 16.75 10.0003C16.3358 10.0003 16 10.3361 16 10.7503V11.5003H8V10.7503C8 10.3361 7.66421 10.0003 7.25 10.0003C6.83579 10.0003 6.5 10.3361 6.5 10.7503V11.5003H3.5V9.2503C3.5 8.83609 3.83579 8.50031 4.25 8.50031H7V8.50293ZM16 13.0003V14.2503C16 14.6645 16.3358 15.0003 16.75 15.0003C17.1642 15.0003 17.5 14.6645 17.5 14.2503V13.0003H20.5V17.7471C20.5 18.1613 20.1642 18.4971 19.75 18.4971H4.25C3.83579 18.4971 3.5 18.1613 3.5 17.7471V13.0003H6.5V14.2503C6.5 14.6645 6.83579 15.0003 7.25 15.0003C7.66421 15.0003 8 14.6645 8 14.2503V13.0003H16Z" 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/toolbox_24_regular.svg";Details
| Name | Toolbox |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_toolbox_24_regular.svg |
| Filled file | ic_fluent_toolbox_24_filled.svg |
| React components | Toolbox24Regular, Toolbox24Filled |
| License | MIT (© Microsoft Corporation) |