softicons.dev

paint roller icon

Free paint roller 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">
  <rect x="2" y="4" width="14" height="6" rx="2"/>
  <path d="M16 7h3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-7a2 2 0 0 0-2 2v1"/>
  <rect x="9" y="16" width="4" height="6" rx="1"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/paint-roller.svg"
     width="24" height="24" alt="paint roller icon">

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

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

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

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