blob: 2aae97f39164568396a2c820e7a3dfae47395c52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
<defs>
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#5b6af0"/>
<stop offset="100%" style="stop-color:#9b59f7"/>
</linearGradient>
<linearGradient id="arrow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#e0d8ff;stop-opacity:1"/>
</linearGradient>
</defs>
<!-- Rounded square background -->
<rect x="2" y="2" width="60" height="60" rx="14" ry="14" fill="url(#bg)"/>
<!-- Send/dispatch arrow icon: a paper-plane style arrow pointing upper-right -->
<!-- Main arrow body -->
<polygon points="10,50 54,10 38,32" fill="url(#arrow)" opacity="0.95"/>
<!-- Arrow tail fill -->
<polygon points="10,50 28,36 22,54" fill="url(#arrow)" opacity="0.75"/>
<!-- Subtle highlight line -->
<line x1="54" y1="10" x2="28" y2="36" stroke="white" stroke-width="1.5" stroke-linecap="round" opacity="0.5"/>
</svg>
|