13 lines
615 B
XML
13 lines
615 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60">
|
|
<defs>
|
|
<linearGradient id="goldGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#e50914"/>
|
|
<stop offset="100%" style="stop-color:#b2070f"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Play button icon -->
|
|
<circle cx="25" cy="30" r="22" fill="url(#goldGradient)"/>
|
|
<polygon points="20,20 20,40 38,30" fill="#141414"/>
|
|
<!-- Text -->
|
|
<text x="55" y="40" font-family="Arial, sans-serif" font-size="28" font-weight="bold" fill="#ffffff">Stream<tspan fill="url(#goldGradient)">Flix</tspan></text>
|
|
</svg>
|