softicons.dev

heart pulse icon

Free heart pulse 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">
  <path d="M20.8 5.6a5.4 5.4 0 0 0-7.7 0L12 6.7l-1.1-1.1a5.4 5.4 0 1 0-7.7 7.7l1.1 1.1L12 21l7.7-6.6 1.1-1.1a5.4 5.4 0 0 0 0-7.7Z"/>
  <path d="M3.5 13H8l2-3 2 5 2-3h4.5"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/heart-pulse.svg"
     width="24" height="24" alt="heart pulse icon">

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

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

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

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