22 lines
950 B
XML
22 lines
950 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
|
|
<g transform="scale(2.5)">
|
|
<defs>
|
|
<linearGradient id="whitecup" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
<stop offset="0%" stop-color="#E8E8E8"/>
|
|
<stop offset="50%" stop-color="#FFFFFF"/>
|
|
<stop offset="100%" stop-color="#E8E8E8"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Saucer -->
|
|
<ellipse cx="24" cy="42" rx="14" ry="4" fill="url(#whitecup)"/>
|
|
<ellipse cx="24" cy="41" rx="12" ry="3" fill="#F5F5F5"/>
|
|
<!-- Cup body -->
|
|
<path d="M 14 28 L 16 40 L 32 40 L 34 28 Z" fill="url(#whitecup)"/>
|
|
<!-- Cup rim -->
|
|
<ellipse cx="24" cy="28" rx="10" ry="3" fill="url(#whitecup)"/>
|
|
<!-- Empty cup interior -->
|
|
<ellipse cx="24" cy="29" rx="8" ry="2.5" fill="#F0F0F0"/>
|
|
<!-- Handle -->
|
|
<path d="M 34 30 Q 40 30 40 35 Q 40 40 34 38" fill="none" stroke="url(#whitecup)" stroke-width="3"/>
|
|
</g>
|
|
</svg>
|