17 lines
618 B
XML
17 lines
618 B
XML
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Background Circle -->
|
|
<circle cx="50" cy="50" r="45" fill="#2563eb" />
|
|
|
|
<!-- Inner Circle -->
|
|
<circle cx="50" cy="50" r="35" fill="#1d4ed8" />
|
|
|
|
<!-- Abstract "A" shape -->
|
|
<path d="M50 20 L30 70 L40 70 L45 55 L55 55 L60 70 L70 70 L50 20Z" fill="white" />
|
|
<path d="M45 45 L55 45 L50 30 L45 45Z" fill="#1d4ed8" />
|
|
|
|
<!-- Small Decorative Elements -->
|
|
<circle cx="50" cy="80" r="5" fill="white" />
|
|
<circle cx="30" cy="30" r="3" fill="#93c5fd" opacity="0.7" />
|
|
<circle cx="70" cy="30" r="3" fill="#93c5fd" opacity="0.7" />
|
|
</svg>
|