26 lines
1021 B
XML
26 lines
1021 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#4f46e5;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<!-- Dice/Box shape -->
|
||
|
|
<rect x="10" y="10" width="80" height="80" rx="12" fill="url(#grad)"/>
|
||
|
|
|
||
|
|
<!-- Dots representing game selection -->
|
||
|
|
<circle cx="30" cy="30" r="6" fill="white" opacity="0.9"/>
|
||
|
|
<circle cx="50" cy="30" r="6" fill="white" opacity="0.9"/>
|
||
|
|
<circle cx="70" cy="30" r="6" fill="white" opacity="0.9"/>
|
||
|
|
|
||
|
|
<circle cx="30" cy="50" r="6" fill="white" opacity="0.9"/>
|
||
|
|
<circle cx="50" cy="50" r="6" fill="white" opacity="1"/>
|
||
|
|
<circle cx="70" cy="50" r="6" fill="white" opacity="0.9"/>
|
||
|
|
|
||
|
|
<circle cx="30" cy="70" r="6" fill="white" opacity="0.9"/>
|
||
|
|
<circle cx="50" cy="70" r="6" fill="white" opacity="0.9"/>
|
||
|
|
<circle cx="70" cy="70" r="6" fill="white" opacity="0.9"/>
|
||
|
|
</svg>
|
||
|
|
|