softicons.dev

printer icon

Free printer SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons files 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">
  <polyline points="6 9 6 3 18 3 18 9"/>
  <path d="M6 18H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"/>
  <rect x="6" y="14" width="12" height="7" rx="1"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/files/printer.svg"
     width="24" height="24" alt="printer icon">

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

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

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

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