Files
videoPlayer/public/favicon.svg
2025-10-02 01:52:03 -06:00

18 lines
685 B
XML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="100" height="100" rx="20" fill="url(#grad1)" filter="url(#glow)"/>
<polygon points="35,25 35,75 75,50" fill="#ffffff" opacity="0.95"/>
</svg>