softicons.dev

badge cent icon

Free badge cent 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="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"/>
  <path d="M14 9.5a3.2 3.2 0 1 0 0 5"/>
  <line x1="12" y1="7" x2="12" y2="17"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/badge-cent.svg"
     width="24" height="24" alt="badge cent icon">

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

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

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

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