Pen Off icon
Used to represent a signature, a device drawing input. Use edit in common editing scenarios. The Pen Off 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 Pen Off 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 { PenOff24Regular, PenOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <PenOff24Regular aria-label="Pen Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_pen_off_24_regular.svg" width="24" height="24" alt="Pen Off"> 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="M8.93934 9.9998L2.21966 3.27999C1.92677 2.98709 1.92678 2.51222 2.21968 2.21933C2.51257 1.92644 2.98745 1.92644 3.28034 2.21934L21.7801 20.7195C22.073 21.0124 22.073 21.4873 21.7801 21.7801C21.4872 22.073 21.0123 22.073 20.7194 21.7801L14 15.0605L9.00191 20.0591C8.59546 20.4656 8.08418 20.7514 7.52498 20.8845L2.92373 21.98C2.67037 22.0404 2.40385 21.9649 2.21968 21.7808C2.03552 21.5966 1.96009 21.3301 2.02041 21.0767L3.116 16.4753C3.2491 15.9162 3.5347 15.4051 3.94103 14.9987L8.93934 9.9998ZM12.9393 13.9998L9.99999 11.0605L5.00175 16.0593C4.79168 16.2694 4.64402 16.5337 4.57521 16.8227L3.76191 20.2385L7.17755 19.4253C7.46668 19.3564 7.73104 19.2087 7.94119 18.9985L12.9393 13.9998ZM19.8913 7.04704L15.0603 11.8786L16.121 12.9392L18.9995 10.0604C19.6777 10.7442 19.676 11.8484 18.9943 12.5301L17.353 14.1713L18.4137 15.232L20.055 13.5907C21.3224 12.3232 21.3242 10.2693 20.0601 8.99966L20.952 8.10763C22.3493 6.71015 22.3493 4.44453 20.9519 3.04712C19.5543 1.6496 17.2885 1.64967 15.8911 3.04727L11.0604 7.87853L12.121 8.9392L16.9518 4.10787C17.7634 3.29611 19.0795 3.29607 19.8912 4.10778C20.7028 4.91942 20.7029 6.23534 19.8913 7.04704Z" 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/pen_off_24_regular.svg";Details
| Name | Pen Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_pen_off_24_regular.svg |
| Filled file | ic_fluent_pen_off_24_filled.svg |
| React components | PenOff24Regular, PenOff24Filled |
| License | MIT (© Microsoft Corporation) |