This repository has been archived on 2025-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
www_engageos/src/components/HeartIcon.tsx

14 lines
670 B
XML

export function HeartIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
return (
<svg
viewBox="0 0 64 64"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
fill="currentColor"
{...props}
>
<path d="M61.088 19.088c-4.482 -12.049 -16.152 -11.637 -23.15 -7.349l-5.376 11.288 9.953 -0.927 -10.249 13.159 8.429 -2.15 -5.285 20.89 -1.643 -14.132 -11.861 2.543 9.072 -14.445 -7.822 -1.139 5.381 -12.364c-6.404 -6.39 -22.973 -7.569 -26.209 7.755 -3.854 18.253 27.348 29.586 32.927 32.712l-0.011 0.071 0.066 -0.043c0.023 0.014 0.055 0.03 0.078 0.043l0.002 -0.095c8.434 -5.432 31.45 -20.359 25.698 -35.817Z" />
</svg>
)
}