softicons.dev

calendar heart icon

Free calendar heart 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">
  <rect x="3" y="4.5" width="18" height="17" rx="2.5"/>
  <line x1="3" y1="9.5" x2="21" y2="9.5"/>
  <line x1="8" y1="2.5" x2="8" y2="6.5"/>
  <line x1="16" y1="2.5" x2="16" y2="6.5"/>
  <path d="M12 16.68C8.4 14.04 10.32 12.6 12 14.4C13.68 12.6 15.6 14.04 12 16.68Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/calendar-heart.svg"
     width="24" height="24" alt="calendar heart icon">

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

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

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

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