25 lines
891 B
XML
25 lines
891 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
|
<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="4" y="4" width="56" height="56" rx="12" fill="url(#grad)"/>
|
|
<!-- Mail envelope -->
|
|
<path d="M18 22 L32 34 L46 22 M18 22 L18 38 L46 38 L46 22"
|
|
stroke="white"
|
|
stroke-width="2.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
fill="none"/>
|
|
<!-- Envelope flap (top triangle) -->
|
|
<path d="M18 22 L32 34 L46 22"
|
|
stroke="white"
|
|
stroke-width="2.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
fill="none"/>
|
|
</svg>
|