@nr1e/qwik-icons 0.0.16 → 0.0.17

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.
Files changed (49) hide show
  1. package/lib/components/brands/admini-pay-icon.qwik.cjs +124 -0
  2. package/lib/components/brands/admini-pay-icon.qwik.mjs +124 -0
  3. package/lib/components/brands/admini-pay-logo.qwik.cjs +45 -0
  4. package/lib/components/brands/admini-pay-logo.qwik.mjs +45 -0
  5. package/lib/components/brands/center-gauge-icon-dark-bg.qwik.cjs +59 -0
  6. package/lib/components/brands/center-gauge-icon-dark-bg.qwik.mjs +59 -0
  7. package/lib/components/brands/center-gauge-icon-light-bg.qwik.cjs +60 -0
  8. package/lib/components/brands/center-gauge-icon-light-bg.qwik.mjs +60 -0
  9. package/lib/components/brands/center-gauge-logo-dark-bg.qwik.cjs +202 -0
  10. package/lib/components/brands/center-gauge-logo-dark-bg.qwik.mjs +202 -0
  11. package/lib/components/brands/center-gauge-logo-light-bg.qwik.cjs +202 -0
  12. package/lib/components/brands/center-gauge-logo-light-bg.qwik.mjs +202 -0
  13. package/lib/components/brands/cloud-account-manager-icon.qwik.cjs +96 -0
  14. package/lib/components/brands/cloud-account-manager-icon.qwik.mjs +96 -0
  15. package/lib/components/brands/cloud-account-manager-logo-dark-bg.qwik.cjs +180 -0
  16. package/lib/components/brands/cloud-account-manager-logo-dark-bg.qwik.mjs +180 -0
  17. package/lib/components/brands/cloud-account-manager-logo-light-bg.qwik.cjs +180 -0
  18. package/lib/components/brands/cloud-account-manager-logo-light-bg.qwik.mjs +180 -0
  19. package/lib/components/brands/enpago-icon.qwik.cjs +2 -2
  20. package/lib/components/brands/enpago-icon.qwik.mjs +2 -2
  21. package/lib/components/brands/enpago-logo-dark-bg.qwik.cjs +2 -2
  22. package/lib/components/brands/enpago-logo-dark-bg.qwik.mjs +2 -2
  23. package/lib/components/brands/enpago-logo-light-bg.qwik.cjs +2 -2
  24. package/lib/components/brands/enpago-logo-light-bg.qwik.mjs +2 -2
  25. package/lib/components/brands/true-mark-icon-dark-bg.qwik.cjs +240 -0
  26. package/lib/components/brands/true-mark-icon-dark-bg.qwik.mjs +240 -0
  27. package/lib/components/brands/true-mark-icon-light-bg.qwik.cjs +240 -0
  28. package/lib/components/brands/true-mark-icon-light-bg.qwik.mjs +240 -0
  29. package/lib/components/brands/true-mark-logo-dark-bg.qwik.cjs +272 -0
  30. package/lib/components/brands/true-mark-logo-dark-bg.qwik.mjs +272 -0
  31. package/lib/components/brands/true-mark-logo-light-bg.qwik.cjs +272 -0
  32. package/lib/components/brands/true-mark-logo-light-bg.qwik.mjs +272 -0
  33. package/lib/index.qwik.cjs +26 -0
  34. package/lib/index.qwik.mjs +26 -0
  35. package/lib-types/components/brands/admini-pay-icon.d.ts +2 -0
  36. package/lib-types/components/brands/admini-pay-logo.d.ts +2 -0
  37. package/lib-types/components/brands/center-gauge-icon-dark-bg.d.ts +2 -0
  38. package/lib-types/components/brands/center-gauge-icon-light-bg.d.ts +2 -0
  39. package/lib-types/components/brands/center-gauge-logo-dark-bg.d.ts +2 -0
  40. package/lib-types/components/brands/center-gauge-logo-light-bg.d.ts +2 -0
  41. package/lib-types/components/brands/cloud-account-manager-icon.d.ts +2 -0
  42. package/lib-types/components/brands/cloud-account-manager-logo-dark-bg.d.ts +2 -0
  43. package/lib-types/components/brands/cloud-account-manager-logo-light-bg.d.ts +2 -0
  44. package/lib-types/components/brands/true-mark-icon-dark-bg.d.ts +2 -0
  45. package/lib-types/components/brands/true-mark-icon-light-bg.d.ts +2 -0
  46. package/lib-types/components/brands/true-mark-logo-dark-bg.d.ts +2 -0
  47. package/lib-types/components/brands/true-mark-logo-light-bg.d.ts +2 -0
  48. package/lib-types/index.d.ts +13 -0
  49. package/package.json +1 -1
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg = require("../svg.qwik.cjs");
6
+ const AdminiPayIcon = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 1024 1024",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", {
12
+ children: [
13
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", {
14
+ id: "linear-gradient",
15
+ x1: "0",
16
+ y1: "512",
17
+ x2: "1024",
18
+ y2: "512",
19
+ gradientTransform: "translate(1024 1024) rotate(180)",
20
+ gradientUnits: "userSpaceOnUse",
21
+ children: [
22
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
23
+ offset: "0",
24
+ "stop-color": "#ffc800"
25
+ }),
26
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
27
+ offset: ".38",
28
+ "stop-color": "#ff9200"
29
+ }),
30
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
31
+ offset: "1",
32
+ "stop-color": "#da5e9a"
33
+ })
34
+ ]
35
+ }),
36
+ /* @__PURE__ */ jsxRuntime.jsx("clipPath", {
37
+ id: "clippath",
38
+ children: /* @__PURE__ */ jsxRuntime.jsx("rect", {
39
+ style: "fill:none",
40
+ y: "0",
41
+ width: "1024",
42
+ height: "1024",
43
+ rx: "105.67",
44
+ ry: "105.67",
45
+ transform: "translate(1024 1024) rotate(-180)"
46
+ })
47
+ }),
48
+ /* @__PURE__ */ jsxRuntime.jsxs("filter", {
49
+ id: "drop-shadow-1",
50
+ x: "450.34",
51
+ y: "213.03",
52
+ width: "75",
53
+ height: "145",
54
+ filterUnits: "userSpaceOnUse",
55
+ children: [
56
+ /* @__PURE__ */ jsxRuntime.jsx("feOffset", {
57
+ dx: "-2",
58
+ dy: "3"
59
+ }),
60
+ /* @__PURE__ */ jsxRuntime.jsx("feGaussianBlur", {
61
+ result: "blur",
62
+ stdDeviation: "2"
63
+ }),
64
+ /* @__PURE__ */ jsxRuntime.jsx("feFlood", {
65
+ "flood-color": "#000",
66
+ "flood-opacity": ".1"
67
+ }),
68
+ /* @__PURE__ */ jsxRuntime.jsx("feComposite", {
69
+ in2: "blur",
70
+ operator: "in"
71
+ }),
72
+ /* @__PURE__ */ jsxRuntime.jsx("feComposite", {
73
+ in: "SourceGraphic"
74
+ })
75
+ ]
76
+ })
77
+ ]
78
+ }),
79
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
80
+ id: "Layer_1-2",
81
+ children: [
82
+ /* @__PURE__ */ jsxRuntime.jsx("rect", {
83
+ style: "fill:url(#linear-gradient)",
84
+ y: "0",
85
+ width: "1024",
86
+ height: "1024",
87
+ rx: "105.67",
88
+ ry: "105.67",
89
+ transform: "translate(1024 1024) rotate(-180)"
90
+ }),
91
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
92
+ style: "opacity:0.17",
93
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
94
+ style: "clip-path:url(#clippath)",
95
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
96
+ style: "opacity:0.73;fill:#fff",
97
+ d: "M-116.26,831.96c248.35-23.76,1093.19-554.57,1169.75-755.07,125.14-327.73-6.35-154.93-6.35-154.93L-54.56-21.7l-61.71,853.66Z"
98
+ })
99
+ })
100
+ }),
101
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
102
+ style: "fill:#fff",
103
+ d: "M565.02,216.59l-272.92,580.71c-8.17,11.42-20.16,16.54-36.39,16.54h-84.48S442.06,235.89,442.06,235.89c8.01-17.15,21.77-25.72,41.26-25.72h28.38s28.38,0,28.38,0l24.94,6.43"
104
+ }),
105
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
106
+ style: "fill:#fff",
107
+ d: "M458.39,216.59l272.92,580.71c8.17,11.42,20.16,16.54,36.39,16.54h84.48L581.35,235.89c-8.01-17.15-21.77-25.72-41.26-25.72h-56.76c-16.38,0-24.94,6.43-24.94,6.43"
108
+ }),
109
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
110
+ style: "fill:#fff",
111
+ cx: "511.7",
112
+ cy: "587.58",
113
+ r: "67.59"
114
+ }),
115
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
116
+ style: "fill:#fff;filter:url(#drop-shadow-1)",
117
+ points: "471.8 223.75 458.39 216.59 520.58 348.91 471.8 223.75"
118
+ })
119
+ ]
120
+ })
121
+ ]
122
+ });
123
+ });
124
+ exports.AdminiPayIcon = AdminiPayIcon;
@@ -0,0 +1,124 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const AdminiPayIcon = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 1024 1024",
8
+ children: [
9
+ /* @__PURE__ */ jsxs("defs", {
10
+ children: [
11
+ /* @__PURE__ */ jsxs("linearGradient", {
12
+ id: "linear-gradient",
13
+ x1: "0",
14
+ y1: "512",
15
+ x2: "1024",
16
+ y2: "512",
17
+ gradientTransform: "translate(1024 1024) rotate(180)",
18
+ gradientUnits: "userSpaceOnUse",
19
+ children: [
20
+ /* @__PURE__ */ jsx("stop", {
21
+ offset: "0",
22
+ "stop-color": "#ffc800"
23
+ }),
24
+ /* @__PURE__ */ jsx("stop", {
25
+ offset: ".38",
26
+ "stop-color": "#ff9200"
27
+ }),
28
+ /* @__PURE__ */ jsx("stop", {
29
+ offset: "1",
30
+ "stop-color": "#da5e9a"
31
+ })
32
+ ]
33
+ }),
34
+ /* @__PURE__ */ jsx("clipPath", {
35
+ id: "clippath",
36
+ children: /* @__PURE__ */ jsx("rect", {
37
+ style: "fill:none",
38
+ y: "0",
39
+ width: "1024",
40
+ height: "1024",
41
+ rx: "105.67",
42
+ ry: "105.67",
43
+ transform: "translate(1024 1024) rotate(-180)"
44
+ })
45
+ }),
46
+ /* @__PURE__ */ jsxs("filter", {
47
+ id: "drop-shadow-1",
48
+ x: "450.34",
49
+ y: "213.03",
50
+ width: "75",
51
+ height: "145",
52
+ filterUnits: "userSpaceOnUse",
53
+ children: [
54
+ /* @__PURE__ */ jsx("feOffset", {
55
+ dx: "-2",
56
+ dy: "3"
57
+ }),
58
+ /* @__PURE__ */ jsx("feGaussianBlur", {
59
+ result: "blur",
60
+ stdDeviation: "2"
61
+ }),
62
+ /* @__PURE__ */ jsx("feFlood", {
63
+ "flood-color": "#000",
64
+ "flood-opacity": ".1"
65
+ }),
66
+ /* @__PURE__ */ jsx("feComposite", {
67
+ in2: "blur",
68
+ operator: "in"
69
+ }),
70
+ /* @__PURE__ */ jsx("feComposite", {
71
+ in: "SourceGraphic"
72
+ })
73
+ ]
74
+ })
75
+ ]
76
+ }),
77
+ /* @__PURE__ */ jsxs("g", {
78
+ id: "Layer_1-2",
79
+ children: [
80
+ /* @__PURE__ */ jsx("rect", {
81
+ style: "fill:url(#linear-gradient)",
82
+ y: "0",
83
+ width: "1024",
84
+ height: "1024",
85
+ rx: "105.67",
86
+ ry: "105.67",
87
+ transform: "translate(1024 1024) rotate(-180)"
88
+ }),
89
+ /* @__PURE__ */ jsx("g", {
90
+ style: "opacity:0.17",
91
+ children: /* @__PURE__ */ jsx("g", {
92
+ style: "clip-path:url(#clippath)",
93
+ children: /* @__PURE__ */ jsx("path", {
94
+ style: "opacity:0.73;fill:#fff",
95
+ d: "M-116.26,831.96c248.35-23.76,1093.19-554.57,1169.75-755.07,125.14-327.73-6.35-154.93-6.35-154.93L-54.56-21.7l-61.71,853.66Z"
96
+ })
97
+ })
98
+ }),
99
+ /* @__PURE__ */ jsx("path", {
100
+ style: "fill:#fff",
101
+ d: "M565.02,216.59l-272.92,580.71c-8.17,11.42-20.16,16.54-36.39,16.54h-84.48S442.06,235.89,442.06,235.89c8.01-17.15,21.77-25.72,41.26-25.72h28.38s28.38,0,28.38,0l24.94,6.43"
102
+ }),
103
+ /* @__PURE__ */ jsx("path", {
104
+ style: "fill:#fff",
105
+ d: "M458.39,216.59l272.92,580.71c8.17,11.42,20.16,16.54,36.39,16.54h84.48L581.35,235.89c-8.01-17.15-21.77-25.72-41.26-25.72h-56.76c-16.38,0-24.94,6.43-24.94,6.43"
106
+ }),
107
+ /* @__PURE__ */ jsx("circle", {
108
+ style: "fill:#fff",
109
+ cx: "511.7",
110
+ cy: "587.58",
111
+ r: "67.59"
112
+ }),
113
+ /* @__PURE__ */ jsx("polygon", {
114
+ style: "fill:#fff;filter:url(#drop-shadow-1)",
115
+ points: "471.8 223.75 458.39 216.59 520.58 348.91 471.8 223.75"
116
+ })
117
+ ]
118
+ })
119
+ ]
120
+ });
121
+ });
122
+ export {
123
+ AdminiPayIcon
124
+ };
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg = require("../svg.qwik.cjs");
6
+ const AdminiPayLogo = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 450.61 98.35",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx("defs", {
12
+ children: /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", {
13
+ id: "linear-gradient",
14
+ x1: "0",
15
+ y1: "49.17",
16
+ x2: "450.61",
17
+ y2: "49.17",
18
+ gradientUnits: "userSpaceOnUse",
19
+ children: [
20
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
21
+ offset: "0",
22
+ "stop-color": "#e0b12f"
23
+ }),
24
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
25
+ offset: ".51",
26
+ "stop-color": "#ed8334"
27
+ }),
28
+ /* @__PURE__ */ jsxRuntime.jsx("stop", {
29
+ offset: "1",
30
+ "stop-color": "#de69a2"
31
+ })
32
+ ]
33
+ })
34
+ }),
35
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
36
+ id: "Layer_1-2",
37
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
38
+ style: "fill:url(#linear-gradient)",
39
+ d: "M120.71,47.28c0,4.73-1.22,9.09-3.65,13.09-2.43,4-5.75,7.2-9.94,9.59s-8.69,3.6-13.49,3.6-9.38-1.21-13.54-3.65c-4.16-2.43-7.45-5.75-9.84-9.94-2.46-4.06-3.7-8.56-3.7-13.49s1.21-9.38,3.65-13.54c2.43-4.16,5.75-7.48,9.94-9.94,4.13-2.4,8.63-3.6,13.49-3.6,5.73,0,10.99,1.7,15.79,5.1V6.31L120.61.31l.1,46.97ZM107.27,38.64c-1.43-2.43-3.35-4.38-5.75-5.85-2.4-1.4-5.03-2.1-7.89-2.1s-5.41.72-7.85,2.15c-2.43,1.43-4.35,3.35-5.75,5.75-1.47,2.33-2.2,4.96-2.2,7.9s.71,5.41,2.15,7.85c1.43,2.43,3.35,4.35,5.75,5.75,2.33,1.47,4.96,2.2,7.9,2.2s5.41-.72,7.84-2.15c2.43-1.43,4.38-3.35,5.85-5.75,1.4-2.4,2.1-5.03,2.1-7.9s-.72-5.41-2.15-7.84ZM125.1,43.28c0-7.46,1.76-13.29,5.3-17.49,3.53-4.2,8.46-6.3,14.79-6.3,2.8,0,5.6.58,8.39,1.75,2.8,1.17,5.33,2.81,7.6,4.95,1.93-2.13,4.21-3.78,6.84-4.95,2.63-1.17,5.41-1.75,8.34-1.75s5.88.83,9.04,2.5c3.16,1.67,5.78,3.9,7.84,6.7,2.13,2.93,3.2,6.23,3.2,9.89v34.88h-13.09v-34.48c0-2.2-.9-4.03-2.7-5.5-1.8-1.46-3.87-2.2-6.2-2.2-2.93,0-5.46,1.27-7.59,3.8.93,2.67,1.4,5.4,1.4,8.19l-.2,30.28h-11.19v-30.28c0-2.53-.58-4.76-1.75-6.7-1.17-1.93-2.71-3.4-4.65-4.4-2-.93-3.76-1.4-5.3-1.4-3.2,0-5.48.97-6.85,2.9-1.37,1.93-2.05,5.13-2.05,9.59v30.28h-11.19v-30.28ZM201.13,11.8V.21h12.35v11.59h-12.35ZM201.4,73.66V20.7h11.81v52.97h-11.81ZM257.23,43.28c0-3.86-1.33-6.91-4-9.14-2.67-2.23-5.9-3.35-9.69-3.35s-7.13,1.12-9.79,3.35c-2.67,2.23-4,5.28-4,9.14v30.28h-11.19v-30.28c0-4.66,1.15-8.81,3.45-12.44,2.3-3.63,5.41-6.45,9.34-8.44,3.86-1.93,7.93-2.9,12.19-2.9s8.49.98,12.29,2.95c3.8,1.97,6.9,4.71,9.29,8.24,2.33,3.73,3.5,7.93,3.5,12.59l-.2,30.28h-11.19v-30.28ZM292.04,3.71h29.78c3.57,0,6.83.62,9.77,1.85,2.94,1.23,5.46,2.97,7.56,5.2,2.1,2.23,3.73,4.91,4.88,8.04,1.16,3.13,1.74,6.6,1.74,10.39s-.58,7.5-1.74,10.69c-1.16,3.2-2.79,5.93-4.88,8.19-2.1,2.27-4.62,4.01-7.56,5.25-2.95,1.23-6.2,1.85-9.77,1.85h-18.04v18.49h-11.74V3.71ZM320.78,43.68c4.01,0,7.22-1.28,9.63-3.85,2.41-2.56,3.62-5.98,3.62-10.24s-1.21-7.89-3.62-10.49c-2.41-2.6-5.62-3.9-9.63-3.9h-17v28.48h17ZM390.05,68.37c-4.8,3.4-10.06,5.1-15.79,5.1-4.86,0-9.38-1.21-13.54-3.65-4.16-2.43-7.45-5.75-9.84-9.94-2.46-4.06-3.7-8.56-3.7-13.49s1.21-9.38,3.65-13.54c2.43-4.16,5.75-7.48,9.94-9.94,4.13-2.4,8.63-3.6,13.49-3.6s9.28,1.18,13.44,3.55c4.16,2.37,7.48,5.55,9.94,9.54,2.46,4.06,3.7,8.46,3.7,13.19l-.1,27.58h-11.19v-4.8ZM387.9,38.54c-1.43-2.43-3.35-4.38-5.75-5.85-2.4-1.4-5.03-2.1-7.89-2.1s-5.41.72-7.85,2.15c-2.43,1.43-4.35,3.35-5.75,5.75-1.47,2.33-2.2,4.96-2.2,7.9s.71,5.41,2.15,7.84c1.43,2.43,3.35,4.35,5.75,5.75,2.33,1.47,4.96,2.2,7.9,2.2s5.41-.71,7.84-2.15c2.43-1.43,4.38-3.35,5.85-5.75,1.4-2.4,2.1-5.03,2.1-7.89s-.72-5.41-2.15-7.85ZM401.64,23.7h12.49l11.99,34.58,11.99-34.58h12.49l-17.69,49.97c-1,2.93-2.02,5.86-3.05,8.79-1.03,2.93-2.38,5.58-4.05,7.94-1.67,2.36-3.81,4.28-6.45,5.75-2.63,1.46-6.05,2.2-10.24,2.2v-10.99c1.67,0,3.21-.47,4.65-1.4,1.43-.93,2.63-2.13,3.6-3.6.96-1.47,1.6-3.08,1.9-4.85.3-1.77.15-3.48-.45-5.15l-17.19-48.67ZM28.18,6.52c.83-2,2.27-3,4.29-3h5.91c2.03,0,3.46,1,4.29,3l28.18,67.36h-10.11c-2.21,0-3.7-1.03-4.47-3.1l-5.37-13.39c-.24-.6-.66-.9-1.25-.9h-28.36c-.6,0-1.01.3-1.25.9l-5.46,13.39c-.78,2.07-2.24,3.1-4.38,3.1H0L28.18,6.52ZM25.41,45.89h20.04c.6,0,.77-.3.54-.9l-7.34-18.19-2.95-8.79h-.54l-2.95,8.79-7.34,18.19c-.24.6-.06.9.54.9ZM273.56,73.88V20.91h11.81v52.97h-11.81ZM273.51,5.96c0-1.63.57-3.03,1.72-4.2s2.56-1.76,4.25-1.76,3.1.59,4.25,1.76c1.14,1.17,1.72,2.57,1.72,4.2,0,1.75-.57,3.19-1.72,4.34-1.15,1.15-2.56,1.72-4.25,1.72s-3.1-.57-4.25-1.72c-1.14-1.14-1.72-2.59-1.72-4.34Z"
40
+ })
41
+ })
42
+ ]
43
+ });
44
+ });
45
+ exports.AdminiPayLogo = AdminiPayLogo;
@@ -0,0 +1,45 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const AdminiPayLogo = component$((props) => {
5
+ return /* @__PURE__ */ jsxs(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 450.61 98.35",
8
+ children: [
9
+ /* @__PURE__ */ jsx("defs", {
10
+ children: /* @__PURE__ */ jsxs("linearGradient", {
11
+ id: "linear-gradient",
12
+ x1: "0",
13
+ y1: "49.17",
14
+ x2: "450.61",
15
+ y2: "49.17",
16
+ gradientUnits: "userSpaceOnUse",
17
+ children: [
18
+ /* @__PURE__ */ jsx("stop", {
19
+ offset: "0",
20
+ "stop-color": "#e0b12f"
21
+ }),
22
+ /* @__PURE__ */ jsx("stop", {
23
+ offset: ".51",
24
+ "stop-color": "#ed8334"
25
+ }),
26
+ /* @__PURE__ */ jsx("stop", {
27
+ offset: "1",
28
+ "stop-color": "#de69a2"
29
+ })
30
+ ]
31
+ })
32
+ }),
33
+ /* @__PURE__ */ jsx("g", {
34
+ id: "Layer_1-2",
35
+ children: /* @__PURE__ */ jsx("path", {
36
+ style: "fill:url(#linear-gradient)",
37
+ d: "M120.71,47.28c0,4.73-1.22,9.09-3.65,13.09-2.43,4-5.75,7.2-9.94,9.59s-8.69,3.6-13.49,3.6-9.38-1.21-13.54-3.65c-4.16-2.43-7.45-5.75-9.84-9.94-2.46-4.06-3.7-8.56-3.7-13.49s1.21-9.38,3.65-13.54c2.43-4.16,5.75-7.48,9.94-9.94,4.13-2.4,8.63-3.6,13.49-3.6,5.73,0,10.99,1.7,15.79,5.1V6.31L120.61.31l.1,46.97ZM107.27,38.64c-1.43-2.43-3.35-4.38-5.75-5.85-2.4-1.4-5.03-2.1-7.89-2.1s-5.41.72-7.85,2.15c-2.43,1.43-4.35,3.35-5.75,5.75-1.47,2.33-2.2,4.96-2.2,7.9s.71,5.41,2.15,7.85c1.43,2.43,3.35,4.35,5.75,5.75,2.33,1.47,4.96,2.2,7.9,2.2s5.41-.72,7.84-2.15c2.43-1.43,4.38-3.35,5.85-5.75,1.4-2.4,2.1-5.03,2.1-7.9s-.72-5.41-2.15-7.84ZM125.1,43.28c0-7.46,1.76-13.29,5.3-17.49,3.53-4.2,8.46-6.3,14.79-6.3,2.8,0,5.6.58,8.39,1.75,2.8,1.17,5.33,2.81,7.6,4.95,1.93-2.13,4.21-3.78,6.84-4.95,2.63-1.17,5.41-1.75,8.34-1.75s5.88.83,9.04,2.5c3.16,1.67,5.78,3.9,7.84,6.7,2.13,2.93,3.2,6.23,3.2,9.89v34.88h-13.09v-34.48c0-2.2-.9-4.03-2.7-5.5-1.8-1.46-3.87-2.2-6.2-2.2-2.93,0-5.46,1.27-7.59,3.8.93,2.67,1.4,5.4,1.4,8.19l-.2,30.28h-11.19v-30.28c0-2.53-.58-4.76-1.75-6.7-1.17-1.93-2.71-3.4-4.65-4.4-2-.93-3.76-1.4-5.3-1.4-3.2,0-5.48.97-6.85,2.9-1.37,1.93-2.05,5.13-2.05,9.59v30.28h-11.19v-30.28ZM201.13,11.8V.21h12.35v11.59h-12.35ZM201.4,73.66V20.7h11.81v52.97h-11.81ZM257.23,43.28c0-3.86-1.33-6.91-4-9.14-2.67-2.23-5.9-3.35-9.69-3.35s-7.13,1.12-9.79,3.35c-2.67,2.23-4,5.28-4,9.14v30.28h-11.19v-30.28c0-4.66,1.15-8.81,3.45-12.44,2.3-3.63,5.41-6.45,9.34-8.44,3.86-1.93,7.93-2.9,12.19-2.9s8.49.98,12.29,2.95c3.8,1.97,6.9,4.71,9.29,8.24,2.33,3.73,3.5,7.93,3.5,12.59l-.2,30.28h-11.19v-30.28ZM292.04,3.71h29.78c3.57,0,6.83.62,9.77,1.85,2.94,1.23,5.46,2.97,7.56,5.2,2.1,2.23,3.73,4.91,4.88,8.04,1.16,3.13,1.74,6.6,1.74,10.39s-.58,7.5-1.74,10.69c-1.16,3.2-2.79,5.93-4.88,8.19-2.1,2.27-4.62,4.01-7.56,5.25-2.95,1.23-6.2,1.85-9.77,1.85h-18.04v18.49h-11.74V3.71ZM320.78,43.68c4.01,0,7.22-1.28,9.63-3.85,2.41-2.56,3.62-5.98,3.62-10.24s-1.21-7.89-3.62-10.49c-2.41-2.6-5.62-3.9-9.63-3.9h-17v28.48h17ZM390.05,68.37c-4.8,3.4-10.06,5.1-15.79,5.1-4.86,0-9.38-1.21-13.54-3.65-4.16-2.43-7.45-5.75-9.84-9.94-2.46-4.06-3.7-8.56-3.7-13.49s1.21-9.38,3.65-13.54c2.43-4.16,5.75-7.48,9.94-9.94,4.13-2.4,8.63-3.6,13.49-3.6s9.28,1.18,13.44,3.55c4.16,2.37,7.48,5.55,9.94,9.54,2.46,4.06,3.7,8.46,3.7,13.19l-.1,27.58h-11.19v-4.8ZM387.9,38.54c-1.43-2.43-3.35-4.38-5.75-5.85-2.4-1.4-5.03-2.1-7.89-2.1s-5.41.72-7.85,2.15c-2.43,1.43-4.35,3.35-5.75,5.75-1.47,2.33-2.2,4.96-2.2,7.9s.71,5.41,2.15,7.84c1.43,2.43,3.35,4.35,5.75,5.75,2.33,1.47,4.96,2.2,7.9,2.2s5.41-.71,7.84-2.15c2.43-1.43,4.38-3.35,5.85-5.75,1.4-2.4,2.1-5.03,2.1-7.89s-.72-5.41-2.15-7.85ZM401.64,23.7h12.49l11.99,34.58,11.99-34.58h12.49l-17.69,49.97c-1,2.93-2.02,5.86-3.05,8.79-1.03,2.93-2.38,5.58-4.05,7.94-1.67,2.36-3.81,4.28-6.45,5.75-2.63,1.46-6.05,2.2-10.24,2.2v-10.99c1.67,0,3.21-.47,4.65-1.4,1.43-.93,2.63-2.13,3.6-3.6.96-1.47,1.6-3.08,1.9-4.85.3-1.77.15-3.48-.45-5.15l-17.19-48.67ZM28.18,6.52c.83-2,2.27-3,4.29-3h5.91c2.03,0,3.46,1,4.29,3l28.18,67.36h-10.11c-2.21,0-3.7-1.03-4.47-3.1l-5.37-13.39c-.24-.6-.66-.9-1.25-.9h-28.36c-.6,0-1.01.3-1.25.9l-5.46,13.39c-.78,2.07-2.24,3.1-4.38,3.1H0L28.18,6.52ZM25.41,45.89h20.04c.6,0,.77-.3.54-.9l-7.34-18.19-2.95-8.79h-.54l-2.95,8.79-7.34,18.19c-.24.6-.06.9.54.9ZM273.56,73.88V20.91h11.81v52.97h-11.81ZM273.51,5.96c0-1.63.57-3.03,1.72-4.2s2.56-1.76,4.25-1.76,3.1.59,4.25,1.76c1.14,1.17,1.72,2.57,1.72,4.2,0,1.75-.57,3.19-1.72,4.34-1.15,1.15-2.56,1.72-4.25,1.72s-3.1-.57-4.25-1.72c-1.14-1.14-1.72-2.59-1.72-4.34Z"
38
+ })
39
+ })
40
+ ]
41
+ });
42
+ });
43
+ export {
44
+ AdminiPayLogo
45
+ };
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg = require("../svg.qwik.cjs");
6
+ const CenterGaugeIconDarkBg = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 120.5 120.5",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
11
+ id: "Layer_1-2",
12
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
13
+ children: [
14
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
15
+ style: "fill:#B0B0B0",
16
+ d: "M71.9,17.8v4.8c17.5,7.4,29.9,24.7,29.9,44.9c0,26.8-21.8,48.7-48.7,48.7S4.4,94.3,4.4,67.4 c0-19.2,11.2-35.8,27.4-43.7v-4.9C13.1,27,0,45.7,0,67.4c0,29.3,23.8,53.1,53.1,53.1s53.1-23.8,53.1-53.1 C106.2,44.7,92,25.4,71.9,17.8z"
17
+ }),
18
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
19
+ children: [
20
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
21
+ children: [
22
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
23
+ style: "fill:#E22100",
24
+ points: "52.9,0 8.2,85.7 37.7,55.5 "
25
+ }),
26
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
27
+ style: "fill:#F47B00",
28
+ points: "8.2,85.7 52.7,64.3 37.7,55.5 "
29
+ }),
30
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
31
+ style: "fill:#F05500",
32
+ points: "52.9,0 52.9,64.5 37.7,55.5 "
33
+ })
34
+ ]
35
+ }),
36
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
37
+ children: [
38
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
39
+ style: "fill:#E22100",
40
+ points: "52.7,0 97.4,85.7 67.9,55.5 "
41
+ }),
42
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
43
+ style: "fill:#F05500",
44
+ points: "97.4,85.7 52.9,64.3 67.9,55.5 "
45
+ }),
46
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
47
+ style: "fill:#F47B00",
48
+ points: "52.7,0 52.7,64.5 67.9,55.5 "
49
+ })
50
+ ]
51
+ })
52
+ ]
53
+ })
54
+ ]
55
+ })
56
+ })
57
+ });
58
+ });
59
+ exports.CenterGaugeIconDarkBg = CenterGaugeIconDarkBg;
@@ -0,0 +1,59 @@
1
+ import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const CenterGaugeIconDarkBg = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 120.5 120.5",
8
+ children: /* @__PURE__ */ jsx("g", {
9
+ id: "Layer_1-2",
10
+ children: /* @__PURE__ */ jsxs("g", {
11
+ children: [
12
+ /* @__PURE__ */ jsx("path", {
13
+ style: "fill:#B0B0B0",
14
+ d: "M71.9,17.8v4.8c17.5,7.4,29.9,24.7,29.9,44.9c0,26.8-21.8,48.7-48.7,48.7S4.4,94.3,4.4,67.4 c0-19.2,11.2-35.8,27.4-43.7v-4.9C13.1,27,0,45.7,0,67.4c0,29.3,23.8,53.1,53.1,53.1s53.1-23.8,53.1-53.1 C106.2,44.7,92,25.4,71.9,17.8z"
15
+ }),
16
+ /* @__PURE__ */ jsxs("g", {
17
+ children: [
18
+ /* @__PURE__ */ jsxs("g", {
19
+ children: [
20
+ /* @__PURE__ */ jsx("polygon", {
21
+ style: "fill:#E22100",
22
+ points: "52.9,0 8.2,85.7 37.7,55.5 "
23
+ }),
24
+ /* @__PURE__ */ jsx("polygon", {
25
+ style: "fill:#F47B00",
26
+ points: "8.2,85.7 52.7,64.3 37.7,55.5 "
27
+ }),
28
+ /* @__PURE__ */ jsx("polygon", {
29
+ style: "fill:#F05500",
30
+ points: "52.9,0 52.9,64.5 37.7,55.5 "
31
+ })
32
+ ]
33
+ }),
34
+ /* @__PURE__ */ jsxs("g", {
35
+ children: [
36
+ /* @__PURE__ */ jsx("polygon", {
37
+ style: "fill:#E22100",
38
+ points: "52.7,0 97.4,85.7 67.9,55.5 "
39
+ }),
40
+ /* @__PURE__ */ jsx("polygon", {
41
+ style: "fill:#F05500",
42
+ points: "97.4,85.7 52.9,64.3 67.9,55.5 "
43
+ }),
44
+ /* @__PURE__ */ jsx("polygon", {
45
+ style: "fill:#F47B00",
46
+ points: "52.7,0 52.7,64.5 67.9,55.5 "
47
+ })
48
+ ]
49
+ })
50
+ ]
51
+ })
52
+ ]
53
+ })
54
+ })
55
+ });
56
+ });
57
+ export {
58
+ CenterGaugeIconDarkBg
59
+ };
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg = require("../svg.qwik.cjs");
6
+ const CenterGaugeIconLightBg = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 120.53 120.53",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
11
+ id: "Layer_1-2",
12
+ "data-name": "Layer 1",
13
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
14
+ children: [
15
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
16
+ style: "fill:#404041;stroke-width:0px",
17
+ d: "m71.94,17.75v4.77c17.52,7.37,29.86,24.72,29.86,44.89,0,26.85-21.84,48.68-48.68,48.68S4.44,94.26,4.44,67.41c0-19.21,11.22-35.81,27.41-43.72v-4.94C13.12,26.97,0,45.68,0,67.41c0,29.29,23.83,53.12,53.12,53.12s53.12-23.83,53.12-53.12c0-22.67-14.27-42.05-34.3-49.66Z"
18
+ }),
19
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
20
+ children: [
21
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
22
+ children: [
23
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
24
+ style: "fill:#e22100;stroke-width:0px",
25
+ points: "52.89 0 8.16 85.68 37.68 55.47 52.89 0"
26
+ }),
27
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
28
+ style: "fill:#f47b00;stroke-width:0px",
29
+ points: "8.16 85.68 52.66 64.29 37.68 55.47 8.16 85.68"
30
+ }),
31
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
32
+ style: "fill:#f05500;stroke-width:0px",
33
+ points: "52.89 0 52.89 64.52 37.68 55.47 52.89 0"
34
+ })
35
+ ]
36
+ }),
37
+ /* @__PURE__ */ jsxRuntime.jsxs("g", {
38
+ children: [
39
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
40
+ style: "fill:#e22100;stroke-width:0px",
41
+ points: "52.67 0 97.4 85.68 67.88 55.47 52.67 0"
42
+ }),
43
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
44
+ style: "fill:#f05500;stroke-width:0px",
45
+ points: "97.4 85.68 52.89 64.29 67.88 55.47 97.4 85.68"
46
+ }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("polygon", {
48
+ style: "fill:#f47b00;stroke-width:0px",
49
+ points: "52.67 0 52.67 64.52 67.88 55.47 52.67 0"
50
+ })
51
+ ]
52
+ })
53
+ ]
54
+ })
55
+ ]
56
+ })
57
+ })
58
+ });
59
+ });
60
+ exports.CenterGaugeIconLightBg = CenterGaugeIconLightBg;
@@ -0,0 +1,60 @@
1
+ import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.mjs";
4
+ const CenterGaugeIconLightBg = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 120.53 120.53",
8
+ children: /* @__PURE__ */ jsx("g", {
9
+ id: "Layer_1-2",
10
+ "data-name": "Layer 1",
11
+ children: /* @__PURE__ */ jsxs("g", {
12
+ children: [
13
+ /* @__PURE__ */ jsx("path", {
14
+ style: "fill:#404041;stroke-width:0px",
15
+ d: "m71.94,17.75v4.77c17.52,7.37,29.86,24.72,29.86,44.89,0,26.85-21.84,48.68-48.68,48.68S4.44,94.26,4.44,67.41c0-19.21,11.22-35.81,27.41-43.72v-4.94C13.12,26.97,0,45.68,0,67.41c0,29.29,23.83,53.12,53.12,53.12s53.12-23.83,53.12-53.12c0-22.67-14.27-42.05-34.3-49.66Z"
16
+ }),
17
+ /* @__PURE__ */ jsxs("g", {
18
+ children: [
19
+ /* @__PURE__ */ jsxs("g", {
20
+ children: [
21
+ /* @__PURE__ */ jsx("polygon", {
22
+ style: "fill:#e22100;stroke-width:0px",
23
+ points: "52.89 0 8.16 85.68 37.68 55.47 52.89 0"
24
+ }),
25
+ /* @__PURE__ */ jsx("polygon", {
26
+ style: "fill:#f47b00;stroke-width:0px",
27
+ points: "8.16 85.68 52.66 64.29 37.68 55.47 8.16 85.68"
28
+ }),
29
+ /* @__PURE__ */ jsx("polygon", {
30
+ style: "fill:#f05500;stroke-width:0px",
31
+ points: "52.89 0 52.89 64.52 37.68 55.47 52.89 0"
32
+ })
33
+ ]
34
+ }),
35
+ /* @__PURE__ */ jsxs("g", {
36
+ children: [
37
+ /* @__PURE__ */ jsx("polygon", {
38
+ style: "fill:#e22100;stroke-width:0px",
39
+ points: "52.67 0 97.4 85.68 67.88 55.47 52.67 0"
40
+ }),
41
+ /* @__PURE__ */ jsx("polygon", {
42
+ style: "fill:#f05500;stroke-width:0px",
43
+ points: "97.4 85.68 52.89 64.29 67.88 55.47 97.4 85.68"
44
+ }),
45
+ /* @__PURE__ */ jsx("polygon", {
46
+ style: "fill:#f47b00;stroke-width:0px",
47
+ points: "52.67 0 52.67 64.52 67.88 55.47 52.67 0"
48
+ })
49
+ ]
50
+ })
51
+ ]
52
+ })
53
+ ]
54
+ })
55
+ })
56
+ });
57
+ });
58
+ export {
59
+ CenterGaugeIconLightBg
60
+ };