16 lines
708 B
XML
16 lines
708 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
|
<!-- Simplified awesome icon for small sizes -->
|
|
<defs>
|
|
<linearGradient id="awesome-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#DA22FF;stop-opacity:1" />
|
|
<stop offset="50%" style="stop-color:#FF69B4;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Center star shape -->
|
|
<circle cx="16" cy="16" r="14" fill="url(#awesome-gradient)" />
|
|
<circle cx="16" cy="16" r="8" fill="#FF69B4" />
|
|
<circle cx="16" cy="16" r="4" fill="#DA22FF" />
|
|
</svg>
|