n8n-nodes-sendit 1.0.4 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodes/SendIt/sendit.svg +22 -4
- package/package.json +1 -1
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="grad" x1="0%" y1="100%" x2="100%" y2="0%">
|
|
4
|
+
<stop offset="0%" stop-color="#00D4D4"/>
|
|
5
|
+
<stop offset="50%" stop-color="#00E890"/>
|
|
6
|
+
<stop offset="100%" stop-color="#7AF08F"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
<rect width="60" height="60" rx="8" fill="#1B2727"/>
|
|
10
|
+
<!-- Main lightning/arrow shape with outline style -->
|
|
11
|
+
<path d="M32 6 L32 18 L42 18 L28 34 L28 22 L18 22 L32 6 Z"
|
|
12
|
+
fill="none" stroke="url(#grad)" stroke-width="2.5" stroke-linejoin="round"/>
|
|
13
|
+
<!-- Lower lightning continuation -->
|
|
14
|
+
<path d="M28 34 L28 46 L38 46 L24 54 L24 42 L18 42 L28 34 Z"
|
|
15
|
+
fill="none" stroke="url(#grad)" stroke-width="2.5" stroke-linejoin="round"/>
|
|
16
|
+
<!-- Circuit dots -->
|
|
17
|
+
<circle cx="12" cy="16" r="1.5" fill="#00D4D4"/>
|
|
18
|
+
<circle cx="16" cy="12" r="1" fill="#00D4D4" opacity="0.7"/>
|
|
19
|
+
<circle cx="48" cy="44" r="1.5" fill="#7AF08F"/>
|
|
20
|
+
<circle cx="44" cy="48" r="1" fill="#7AF08F" opacity="0.7"/>
|
|
21
|
+
<!-- Circuit lines -->
|
|
22
|
+
<path d="M12 16 L12 22" stroke="#00D4D4" stroke-width="1" opacity="0.6"/>
|
|
23
|
+
<path d="M48 38 L48 44" stroke="#7AF08F" stroke-width="1" opacity="0.6"/>
|
|
6
24
|
</svg>
|