24 lines
920 B
XML
24 lines
920 B
XML
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="L" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#6C5CE7"/>
|
|
<stop offset="100%" stop-color="#7B6DEE"/>
|
|
</linearGradient>
|
|
<linearGradient id="R" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#9B8FFF"/>
|
|
<stop offset="100%" stop-color="#B8ADFF"/>
|
|
</linearGradient>
|
|
<mask id="notch">
|
|
<rect x="-36" y="-36" width="72" height="72" fill="white"/>
|
|
<circle cx="0" cy="-28" r="4" fill="black"/>
|
|
<circle cx="0" cy="28" r="4" fill="black"/>
|
|
</mask>
|
|
</defs>
|
|
<g transform="translate(50,50)">
|
|
<g transform="rotate(45)" mask="url(#notch)">
|
|
<path d="M-28 -28 L-0.05 -28 L-6 -2 L0 2 L-0.05 28 L-28 28 Z" fill="url(#L)"/>
|
|
<path d="M0.05 -28 L28 -28 L28 28 L0.05 28 L6 2 L0 -2 Z" fill="url(#R)"/>
|
|
</g>
|
|
</g>
|
|
</svg>
|