n8n-nodes-perfexcrm 0.1.2 → 0.1.3
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.
|
@@ -1,5 +1,26 @@
|
|
|
1
|
-
<svg width="60" height="60" viewBox="0 0 60 60"
|
|
2
|
-
|
|
3
|
-
<
|
|
4
|
-
|
|
1
|
+
<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<!-- Background gradient -->
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" style="stop-color:#1e88e5;stop-opacity:1" />
|
|
6
|
+
<stop offset="100%" style="stop-color:#0d47a1;stop-opacity:1" />
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
|
|
10
|
+
<!-- Background rectangle -->
|
|
11
|
+
<rect width="60" height="60" rx="12" fill="url(#gradient)"/>
|
|
12
|
+
|
|
13
|
+
<!-- Letter P styled like PerfexCRM -->
|
|
14
|
+
<g fill="white">
|
|
15
|
+
<!-- Main P shape -->
|
|
16
|
+
<path d="M 18 15 L 24 15 L 24 45 L 18 45 Z M 24 15 L 36 15 C 40.418 15 44 18.582 44 23 C 44 27.418 40.418 31 36 31 L 24 31 L 24 25 L 36 25 C 37.105 25 38 24.105 38 23 C 38 21.895 37.105 21 36 21 L 24 21 Z" />
|
|
17
|
+
|
|
18
|
+
<!-- Small accent bars for modern look -->
|
|
19
|
+
<rect x="40" y="36" width="8" height="2" rx="1" opacity="0.8"/>
|
|
20
|
+
<rect x="40" y="41" width="8" height="2" rx="1" opacity="0.6"/>
|
|
21
|
+
<rect x="40" y="46" width="8" height="2" rx="1" opacity="0.4"/>
|
|
22
|
+
</g>
|
|
23
|
+
|
|
24
|
+
<!-- Small circle accent -->
|
|
25
|
+
<circle cx="48" cy="15" r="3" fill="#4ade80"/>
|
|
5
26
|
</svg>
|