Wrench icon

Used to represent general maintenance & tooling scenarios. The Wrench 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.

Regular (outlined)

SVG

Filled

SVG

Use the Wrench 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 { Wrench24Regular, Wrench24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Wrench24Regular aria-label="Wrench" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_wrench_24_regular.svg" width="24" height="24" alt="Wrench">

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.0002 7.5C11.0002 4.46243 13.4627 2 16.5002 2C17.267 2 17.999 2.15735 18.6641 2.44223C18.8929 2.54023 19.0582 2.74534 19.1053 2.98974C19.1524 3.23414 19.0751 3.48599 18.8991 3.66198L16.3111 6.25L17.7505 7.68934L20.3384 5.10142C20.5144 4.92542 20.7663 4.8482 21.0107 4.8953C21.2551 4.94241 21.4602 5.10771 21.5582 5.33652C21.8429 6.00153 22.0002 6.73337 22.0002 7.5C22.0002 10.5376 19.5378 13 16.5002 13C16.058 13 15.6272 12.9477 15.214 12.8486L6.90165 21.1609C5.78033 22.2823 3.96231 22.2823 2.84099 21.1609C1.71967 20.0396 1.71967 18.2216 2.84099 17.1003L11.1523 8.78899C11.0528 8.37496 11.0002 7.94322 11.0002 7.5ZM16.5002 3.5C14.2911 3.5 12.5002 5.29086 12.5002 7.5C12.5002 7.94506 12.5726 8.37169 12.7057 8.76964C12.7959 9.0393 12.7258 9.33677 12.5248 9.53783L3.90165 18.1609C3.36612 18.6965 3.36612 19.5648 3.90165 20.1003C4.43718 20.6358 5.30546 20.6358 5.84099 20.1003L14.465 11.4763C14.6659 11.2754 14.9632 11.2053 15.2327 11.2952C15.6301 11.4279 16.056 11.5 16.5002 11.5C18.7094 11.5 20.5002 9.70914 20.5002 7.5C20.5002 7.35886 20.4929 7.21955 20.4787 7.08239L18.6344 8.92678C18.1462 9.41493 17.3547 9.41493 16.8666 8.92678L15.0737 7.13388C14.5855 6.64573 14.5855 5.85427 15.0737 5.36612L16.9183 3.52153C16.781 3.5073 16.6415 3.5 16.5002 3.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/wrench_24_regular.svg";

Details

NameWrench
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_wrench_24_regular.svg
Filled fileic_fluent_wrench_24_filled.svg
React componentsWrench24Regular, Wrench24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

toolmaintenanceupdate

Related icons