Eraser Tool icon

#fluent-icon The Eraser Tool 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 Eraser Tool 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 { EraserTool24Regular, EraserTool24Filled } from "@fluentui/react-icons";

export function Example() {
  return <EraserTool24Regular aria-label="Eraser Tool" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_eraser_tool_24_regular.svg" width="24" height="24" alt="Eraser Tool">

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="M3.75 2C4.16421 2 4.5 2.33579 4.5 2.75V7H19.5V2.75C19.5 2.33579 19.8358 2 20.25 2C20.6642 2 21 2.33579 21 2.75V17.25C21 19.8734 18.8734 22 16.25 22H7.75C5.12665 22 3 19.8734 3 17.25V2.75C3 2.33579 3.33579 2 3.75 2ZM19.5 8.5H4.5V12H19.5V8.5ZM4.5 17.25C4.5 19.0449 5.95507 20.5 7.75 20.5H16.25C18.0449 20.5 19.5 19.0449 19.5 17.25V13.5H4.5V17.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/eraser_tool_24_regular.svg";

Details

NameEraser Tool
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_eraser_tool_24_regular.svg
Filled fileic_fluent_eraser_tool_24_filled.svg
React componentsEraserTool24Regular, EraserTool24Filled
LicenseMIT (© Microsoft Corporation)

Related icons