25 lines
903 B
XML
25 lines
903 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180" width="180" height="180">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#22c55e;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#16a34a;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Background with rounded square -->
|
|
<rect x="10" y="10" width="160" height="160" rx="32" fill="url(#grad)"/>
|
|
<!-- Mail envelope -->
|
|
<path d="M50 60 L90 100 L130 60 M50 60 L50 110 L130 110 L130 60"
|
|
stroke="white"
|
|
stroke-width="7"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
fill="none"/>
|
|
<!-- Envelope flap (top triangle) -->
|
|
<path d="M50 60 L90 100 L130 60"
|
|
stroke="white"
|
|
stroke-width="7"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
fill="none"/>
|
|
</svg>
|