14 lines
602 B
XML
14 lines
602 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="heartGradient" x1="0%" y1="0%" x2="0%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#ff1744;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#c51162;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- Red heart shape -->
|
||
|
|
<path d="M50,85 C50,85 15,55 15,35 C15,25 23,18 33,18 C40,18 45,22 50,28 C55,22 60,18 67,18 C77,18 85,25 85,35 C85,55 50,85 50,85 Z"
|
||
|
|
fill="url(#heartGradient)"
|
||
|
|
stroke="#d32f2f"
|
||
|
|
stroke-width="2"/>
|
||
|
|
</svg>
|