softicons.dev

receipt euro icon

Free receipt euro SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce 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="M5 21V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v17l-2.5-1.5L14 21l-2-1.5L10 21l-2.5-1.5Z"/>
  <path d="M14.5 9.5a3 3 0 1 0 0 6"/>
  <line x1="9" y1="11.5" x2="13" y2="11.5"/>
  <line x1="9" y1="13.5" x2="13" y2="13.5"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/receipt-euro.svg"
     width="24" height="24" alt="receipt euro icon">

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

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

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

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