15 lines
677 B
XML
15 lines
677 B
XML
<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="emailGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Envelope -->
|
|
<rect x="6" y="12" width="28" height="18" fill="url(#emailGrad)" rx="2"/>
|
|
<!-- Envelope flap -->
|
|
<path d="M 6 12 L 20 22 L 34 12" stroke="white" stroke-width="2" fill="none"/>
|
|
<!-- @ symbol inside -->
|
|
<circle cx="20" cy="21" r="3" fill="none" stroke="white" stroke-width="1"/>
|
|
<circle cx="22" cy="21" r="1" fill="white"/>
|
|
</svg> |