receipt pound icon
Free receipt pound 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="M13.5 10a2 2 0 0 0-4 .2V16"/>
<line x1="9" y1="13" x2="13" y2="13"/>
<line x1="8.5" y1="16.5" x2="14" y2="16.5"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/receipt-pound.svg"
width="24" height="24" alt="receipt pound icon">
<!-- …or paste the raw SVG from the SVG tab -->import { ReceiptPoundIcon } from "@softicons/react";
export default function Example() {
return <ReceiptPoundIcon size={24} strokeWidth={2} />;
}<script setup>
import { ReceiptPoundIcon } from "@softicons/vue";
</script>
<template>
<ReceiptPoundIcon :size="24" :stroke-width="2" />
</template>import { ReceiptPoundIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [ReceiptPoundIconComponent],
template: `<receipt-pound-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}