22 lines
977 B
XML
22 lines
977 B
XML
<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#6366F1;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#8B5CF6;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="600" height="400" fill="url(#grad1)"/>
|
|
<g transform="translate(300, 200)">
|
|
<!-- User icons -->
|
|
<circle cx="-60" cy="0" r="30" fill="white" opacity="0.2"/>
|
|
<circle cx="0" cy="0" r="30" fill="white" opacity="0.3"/>
|
|
<circle cx="60" cy="0" r="30" fill="white" opacity="0.2"/>
|
|
<!-- Webcam icon -->
|
|
<rect x="-40" y="50" width="80" height="60" rx="8" fill="white" opacity="0.3"/>
|
|
<circle cx="0" cy="80" r="15" fill="white" opacity="0.5"/>
|
|
</g>
|
|
<text x="300" y="350" font-family="system-ui, -apple-system, sans-serif" font-size="20" fill="white" text-anchor="middle" opacity="0.9">
|
|
Invitados Remotos
|
|
</text>
|
|
</svg>
|