softicons.dev

pen tool icon

Free pen tool SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <path d="m12 19 7-7 3 3-7 7Z"/>
  <path d="m18 13-1.5-7.5L2 2l3.5 14.5L13 18Z"/>
  <path d="m2 2 7.6 7.6"/>
  <circle cx="11" cy="11" r="2"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/pen-tool.svg"
     width="24" height="24" alt="pen tool icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { PenToolIcon } from "@softicons/react";

export default function Example() {
  return <PenToolIcon size={24} strokeWidth={2} />;
}
<script setup>
import { PenToolIcon } from "@softicons/vue";
</script>

<template>
  <PenToolIcon :size="24" :stroke-width="2" />
</template>
import { PenToolIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [PenToolIconComponent],
  template: `<pen-tool-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}