19 lines
629 B
XML
19 lines
629 B
XML
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" fill="none">
|
|
<!-- Background rectangle (light gray) -->
|
|
<rect width="200" height="200" fill="#e0e0e0" rx="16"/>
|
|
|
|
<!-- Image placeholder frame (darker gray) -->
|
|
<rect x="30" y="40" width="140" height="100" fill="#c0c0c0" rx="8"/>
|
|
|
|
<!-- triangle -->
|
|
<polygon points="40,120 80,70 110,110" fill="#a0a0a0"/>
|
|
|
|
<!-- circle -->
|
|
<circle cx="120" cy="60" r="30" fill="#a000a0"/>
|
|
|
|
<!-- Text: IMG -->
|
|
<text x="100" y="170" text-anchor="middle" font-size="28" font-family="Arial, sans-serif" fill="#555">
|
|
PGGen
|
|
</text>
|
|
</svg>
|