11 lines
520 B
XML
11 lines
520 B
XML
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#f093fb;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#f5576c;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="300" height="300" fill="url(#grad3)"/>
|
|
<text x="150" y="150" font-family="Arial, sans-serif" font-size="32" fill="white" text-anchor="middle" dominant-baseline="middle">🎤</text>
|
|
</svg>
|