File size: 1,141 Bytes
a22ae4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Robot head -->
<rect x="50" y="30" width="100" height="120" rx="15" fill="#4A90E2"/>
<!-- Robot face -->
<rect x="70" y="70" width="20" height="20" rx="4" fill="white"/>
<rect x="110" y="70" width="20" height="20" rx="4" fill="white"/>
<rect x="80" y="110" width="40" height="10" rx="5" fill="white"/>
<!-- Robot antenna -->
<rect x="90" y="10" width="20" height="20" rx="10" fill="#FFD700"/>
<rect x="95" y="20" width="10" height="10" fill="#4A90E2"/>
<!-- Robot body -->
<rect x="30" y="150" width="140" height="80" rx="10" fill="#4A90E2"/>
<!-- Robot details -->
<rect x="60" y="160" width="80" height="10" rx="5" fill="#3A7BC8"/>
<rect x="70" y="180" width="20" height="40" rx="5" fill="#3A7BC8"/>
<rect x="110" y="180" width="20" height="40" rx="5" fill="#3A7BC8"/>
<!-- Decorative elements -->
<circle cx="80" y="80" r="4" fill="#4A90E2"/>
<circle cx="120" y="80" r="4" fill="#4A90E2"/>
</svg>
|