19 lines
891 B
XML
19 lines
891 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
|
|
<!-- Background circle -->
|
|
<circle cx="50" cy="50" r="48" fill="#f0f0f0" stroke="#333" stroke-width="2" />
|
|
|
|
<!-- Star for achievement/advancement -->
|
|
<path d="M 50 20 L 55 38 L 74 38 L 59 49 L 64 67 L 50 56 L 36 67 L 41 49 L 26 38 L 45 38 Z"
|
|
fill="#ffd700" stroke="#333" stroke-width="1.5" />
|
|
|
|
<!-- Upward arrow for progression -->
|
|
<path d="M 50 75 L 50 85" stroke="#333" stroke-width="3" stroke-linecap="round" />
|
|
<path d="M 45 78 L 50 73 L 55 78" fill="none" stroke="#333" stroke-width="3"
|
|
stroke-linecap="round" stroke-linejoin="round" />
|
|
|
|
<!-- Small accent dots for decoration -->
|
|
<circle cx="20" cy="30" r="2" fill="#666" />
|
|
<circle cx="80" cy="30" r="2" fill="#666" />
|
|
<circle cx="20" cy="70" r="2" fill="#666" />
|
|
<circle cx="80" cy="70" r="2" fill="#666" />
|
|
</svg> |