softicons.dev

brush icon

Free brush 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="m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08"/>
  <path d="M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/brush.svg"
     width="24" height="24" alt="brush icon">

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

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

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

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