@nr1e/qwik-icons 0.0.34 → 0.0.36
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/lib/components/brands/flex-pay-icon.qwik.cjs +22 -0
- package/lib/components/brands/flex-pay-icon.qwik.mjs +22 -0
- package/lib/components/brands/flex-pay-logo-stacked.qwik.cjs +50 -0
- package/lib/components/brands/flex-pay-logo-stacked.qwik.mjs +50 -0
- package/lib/components/brands/flex-pay-logo.qwik.cjs +50 -0
- package/lib/components/brands/flex-pay-logo.qwik.mjs +50 -0
- package/lib/components/icons/mdi-shield-check-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-check-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-check.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-check.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-lock-open-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-lock-open-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-lock-open.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-lock-open.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-lock-outline.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-lock-outline.qwik.mjs +16 -0
- package/lib/components/icons/mdi-shield-lock.qwik.cjs +16 -0
- package/lib/components/icons/mdi-shield-lock.qwik.mjs +16 -0
- package/lib/index.qwik.cjs +18 -0
- package/lib/index.qwik.mjs +18 -0
- package/lib-types/components/brands/flex-pay-icon.d.ts +2 -0
- package/lib-types/components/brands/flex-pay-logo-stacked.d.ts +2 -0
- package/lib-types/components/brands/flex-pay-logo.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-check-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-check.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-lock-open-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-lock-open.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-lock-outline.d.ts +2 -0
- package/lib-types/components/icons/mdi-shield-lock.d.ts +2 -0
- package/lib-types/index.d.ts +9 -0
- package/package.json +3 -3
|
@@ -0,0 +1,22 @@
|
|
|
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 FlexPayIcon = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 50 50",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
12
|
+
d: "M27.3793 3.05354V29.7973C27.3793 36.5435 21.9181 42.0047 15.1719 42.0047C14.28848 42.0047 13.45859 41.8977 12.6287 41.737C15.7609 44.9763 20.1245 46.9841 24.9967 46.9841C34.4735 46.9841 42.1834 39.3009 42.1834 29.7973V3.05354H27.3793Z",
|
|
13
|
+
fill: "#169E03"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
16
|
+
d: "M15.1719 37.1861C11.10278 37.1861 7.81 33.8933 7.81 29.8242V7.79197H22.5338V29.8242C22.5338 33.8933 19.241 37.1861 15.1719 37.1861Z",
|
|
17
|
+
fill: "#0E680E"
|
|
18
|
+
})
|
|
19
|
+
]
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
exports.FlexPayIcon = FlexPayIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
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 FlexPayIcon = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 50 50",
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", {
|
|
10
|
+
d: "M27.3793 3.05354V29.7973C27.3793 36.5435 21.9181 42.0047 15.1719 42.0047C14.28848 42.0047 13.45859 41.8977 12.6287 41.737C15.7609 44.9763 20.1245 46.9841 24.9967 46.9841C34.4735 46.9841 42.1834 39.3009 42.1834 29.7973V3.05354H27.3793Z",
|
|
11
|
+
fill: "#169E03"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M15.1719 37.1861C11.10278 37.1861 7.81 33.8933 7.81 29.8242V7.79197H22.5338V29.8242C22.5338 33.8933 19.241 37.1861 15.1719 37.1861Z",
|
|
15
|
+
fill: "#0E680E"
|
|
16
|
+
})
|
|
17
|
+
]
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
export {
|
|
21
|
+
FlexPayIcon
|
|
22
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
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 FlexPayLogoStacked = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 120 88",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
12
|
+
d: "M62.61 0.897379V30.7353C62.61 38.2619 56.517 44.355 48.9903 44.355C48.0047 44.355 47.0788 44.2355 46.1529 44.0563C49.6474 47.6703 54.5159 49.9104 59.9518 49.9104C70.525 49.9104 79.1269 41.3383 79.1269 30.7353V0.897379H62.61Z",
|
|
13
|
+
fill: "#169E03"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
16
|
+
d: "M48.9903 38.9788C44.4504 38.9788 40.7767 35.3051 40.7767 30.7652V6.18401H57.204V30.7652C57.204 35.3051 53.5302 38.9788 48.9903 38.9788Z",
|
|
17
|
+
fill: "#0E680E"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
20
|
+
d: "M50.6399 70.673L57.0228 61.9346H52.9245L48.52 68.1056L44.1391 61.9346H39.9466L46.3531 70.7436L39.664 79.9059H43.7387L48.4258 73.311L53.113 79.9059H57.329L50.6399 70.673Z",
|
|
21
|
+
fill: "#0E680E"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
24
|
+
d: "M78.3623 70.932C78.3623 76.6084 74.1697 80.4241 69.4591 80.4241C66.7504 80.4241 64.4893 79.4819 62.9348 77.8568V86.3831H59.1662V61.9346H62.9348V64.0073C64.4893 62.3821 66.7269 61.44 69.4591 61.44C74.1697 61.44 78.3623 65.2792 78.3623 70.932ZM74.7115 70.932C74.7115 67.1635 72.1442 64.7846 68.8467 64.7846C65.8789 64.7846 62.9348 67.187 62.9348 70.932C62.9348 74.677 65.8789 77.0795 68.8467 77.0795C72.1442 77.0795 74.7115 74.7241 74.7115 70.932Z",
|
|
25
|
+
fill: "#169E03"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
28
|
+
d: "M99.1129 79.9059H95.3443V77.8332C93.7898 79.4584 91.5287 80.4005 88.82 80.4005C84.1093 80.4005 79.9168 76.6084 79.9168 70.9085C79.9168 65.2086 84.1093 61.4165 88.82 61.4165C91.5287 61.4165 93.7898 62.3586 95.3443 63.9838V61.9111H99.1129V79.9059ZM95.3679 70.9321C95.3679 67.1635 92.4237 64.7846 89.456 64.7846C86.1585 64.7846 83.5912 67.1871 83.5912 70.9321C83.5912 74.6771 86.1585 77.0795 89.456 77.0795C92.4237 77.0795 95.3679 74.7242 95.3679 70.9321Z",
|
|
29
|
+
fill: "#169E03"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
32
|
+
d: "M35.1652 74.7712C33.8934 76.6791 32.0797 77.1501 30.3132 77.1501C27.6753 77.1501 25.2493 75.1481 24.8724 71.8271H39.4284V70.5316C39.24 65.1379 35.2595 61.44 30.4546 61.44C25.3906 61.44 21.151 65.2321 21.151 70.9556C21.151 76.6791 25.4141 80.4005 30.3132 80.4005C34.2938 80.4005 37.4735 78.5162 38.9573 74.7477H35.1652V74.7712ZM30.4546 64.761C32.9277 64.761 34.9768 66.2214 35.5657 69.142H24.9902C25.5554 66.2449 28.0992 64.761 30.4546 64.761Z",
|
|
33
|
+
fill: "#0E680E"
|
|
34
|
+
}),
|
|
35
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
36
|
+
d: "M116.352 61.9346V70.6423C116.328 74.2884 113.502 76.5919 110.63 76.5919C107.439 76.5919 104.954 74.312 104.954 70.6423V61.9346H101.421V70.6423C101.421 76.1138 105.479 79.8282 110.037 79.8282C112.658 79.8282 114.847 78.9167 116.352 77.3433V77.7767C116.352 80.9917 114.277 83.7475 110.996 83.7475C107.715 83.7475 106.506 82.379 105.206 80.3511L102.403 82.1977C103.793 84.7956 105.913 87.052 110.996 87.052C116.42 87.052 120 82.9255 120 77.8662V61.9346H116.354H116.352Z",
|
|
37
|
+
fill: "#169E03"
|
|
38
|
+
}),
|
|
39
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
40
|
+
d: "M18.9841 50.205H15.3098V79.9059H18.9841V50.205Z",
|
|
41
|
+
fill: "#0E680E"
|
|
42
|
+
}),
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
44
|
+
d: "M6.73628 57.7657C6.73628 54.6095 8.43213 53.4789 10.6933 53.4789C11.7296 53.4789 12.5069 53.6438 13.1428 53.9029V50.6996C12.5304 50.4641 11.5647 50.205 10.1044 50.205C6.10034 50.205 3.13261 52.7017 3.13261 57.8834V60.691H0V63.8943H3.13261V79.8823H6.73628V63.8943H12.4127V60.691H6.73628V57.7657Z",
|
|
45
|
+
fill: "#0E680E"
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
exports.FlexPayLogoStacked = FlexPayLogoStacked;
|
|
@@ -0,0 +1,50 @@
|
|
|
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 FlexPayLogoStacked = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 120 88",
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", {
|
|
10
|
+
d: "M62.61 0.897379V30.7353C62.61 38.2619 56.517 44.355 48.9903 44.355C48.0047 44.355 47.0788 44.2355 46.1529 44.0563C49.6474 47.6703 54.5159 49.9104 59.9518 49.9104C70.525 49.9104 79.1269 41.3383 79.1269 30.7353V0.897379H62.61Z",
|
|
11
|
+
fill: "#169E03"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M48.9903 38.9788C44.4504 38.9788 40.7767 35.3051 40.7767 30.7652V6.18401H57.204V30.7652C57.204 35.3051 53.5302 38.9788 48.9903 38.9788Z",
|
|
15
|
+
fill: "#0E680E"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", {
|
|
18
|
+
d: "M50.6399 70.673L57.0228 61.9346H52.9245L48.52 68.1056L44.1391 61.9346H39.9466L46.3531 70.7436L39.664 79.9059H43.7387L48.4258 73.311L53.113 79.9059H57.329L50.6399 70.673Z",
|
|
19
|
+
fill: "#0E680E"
|
|
20
|
+
}),
|
|
21
|
+
/* @__PURE__ */ jsx("path", {
|
|
22
|
+
d: "M78.3623 70.932C78.3623 76.6084 74.1697 80.4241 69.4591 80.4241C66.7504 80.4241 64.4893 79.4819 62.9348 77.8568V86.3831H59.1662V61.9346H62.9348V64.0073C64.4893 62.3821 66.7269 61.44 69.4591 61.44C74.1697 61.44 78.3623 65.2792 78.3623 70.932ZM74.7115 70.932C74.7115 67.1635 72.1442 64.7846 68.8467 64.7846C65.8789 64.7846 62.9348 67.187 62.9348 70.932C62.9348 74.677 65.8789 77.0795 68.8467 77.0795C72.1442 77.0795 74.7115 74.7241 74.7115 70.932Z",
|
|
23
|
+
fill: "#169E03"
|
|
24
|
+
}),
|
|
25
|
+
/* @__PURE__ */ jsx("path", {
|
|
26
|
+
d: "M99.1129 79.9059H95.3443V77.8332C93.7898 79.4584 91.5287 80.4005 88.82 80.4005C84.1093 80.4005 79.9168 76.6084 79.9168 70.9085C79.9168 65.2086 84.1093 61.4165 88.82 61.4165C91.5287 61.4165 93.7898 62.3586 95.3443 63.9838V61.9111H99.1129V79.9059ZM95.3679 70.9321C95.3679 67.1635 92.4237 64.7846 89.456 64.7846C86.1585 64.7846 83.5912 67.1871 83.5912 70.9321C83.5912 74.6771 86.1585 77.0795 89.456 77.0795C92.4237 77.0795 95.3679 74.7242 95.3679 70.9321Z",
|
|
27
|
+
fill: "#169E03"
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ jsx("path", {
|
|
30
|
+
d: "M35.1652 74.7712C33.8934 76.6791 32.0797 77.1501 30.3132 77.1501C27.6753 77.1501 25.2493 75.1481 24.8724 71.8271H39.4284V70.5316C39.24 65.1379 35.2595 61.44 30.4546 61.44C25.3906 61.44 21.151 65.2321 21.151 70.9556C21.151 76.6791 25.4141 80.4005 30.3132 80.4005C34.2938 80.4005 37.4735 78.5162 38.9573 74.7477H35.1652V74.7712ZM30.4546 64.761C32.9277 64.761 34.9768 66.2214 35.5657 69.142H24.9902C25.5554 66.2449 28.0992 64.761 30.4546 64.761Z",
|
|
31
|
+
fill: "#0E680E"
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsx("path", {
|
|
34
|
+
d: "M116.352 61.9346V70.6423C116.328 74.2884 113.502 76.5919 110.63 76.5919C107.439 76.5919 104.954 74.312 104.954 70.6423V61.9346H101.421V70.6423C101.421 76.1138 105.479 79.8282 110.037 79.8282C112.658 79.8282 114.847 78.9167 116.352 77.3433V77.7767C116.352 80.9917 114.277 83.7475 110.996 83.7475C107.715 83.7475 106.506 82.379 105.206 80.3511L102.403 82.1977C103.793 84.7956 105.913 87.052 110.996 87.052C116.42 87.052 120 82.9255 120 77.8662V61.9346H116.354H116.352Z",
|
|
35
|
+
fill: "#169E03"
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ jsx("path", {
|
|
38
|
+
d: "M18.9841 50.205H15.3098V79.9059H18.9841V50.205Z",
|
|
39
|
+
fill: "#0E680E"
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ jsx("path", {
|
|
42
|
+
d: "M6.73628 57.7657C6.73628 54.6095 8.43213 53.4789 10.6933 53.4789C11.7296 53.4789 12.5069 53.6438 13.1428 53.9029V50.6996C12.5304 50.4641 11.5647 50.205 10.1044 50.205C6.10034 50.205 3.13261 52.7017 3.13261 57.8834V60.691H0V63.8943H3.13261V79.8823H6.73628V63.8943H12.4127V60.691H6.73628V57.7657Z",
|
|
43
|
+
fill: "#0E680E"
|
|
44
|
+
})
|
|
45
|
+
]
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
export {
|
|
49
|
+
FlexPayLogoStacked
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
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 FlexPayLogo = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 186 50",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
12
|
+
d: "M104.166 26.2636L111.421 16.3317H106.763L101.757 23.3456L96.7773 16.3317H92.0122L99.2938 26.3439L91.6909 36.7577H96.3222L101.65 29.2619L106.977 36.7577H111.769L104.166 26.2636Z",
|
|
13
|
+
fill: "#0E680E"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
16
|
+
d: "M22.5693 3.05354V29.7973C22.5693 36.5435 17.1081 42.0047 10.3619 42.0047C9.47848 42.0047 8.64859 41.8977 7.8187 41.737C10.9509 44.9763 15.3145 46.9841 20.1867 46.9841C29.6635 46.9841 37.3734 39.3009 37.3734 29.7973V3.05354H22.5693Z",
|
|
17
|
+
fill: "#169E03"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
20
|
+
d: "M10.3619 37.1861C6.29278 37.1861 3 33.8933 3 29.8242V7.79197H17.7238V29.8242C17.7238 33.8933 14.431 37.1861 10.3619 37.1861Z",
|
|
21
|
+
fill: "#0E680E"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
24
|
+
d: "M135.675 26.5581C135.675 33.0098 130.91 37.3467 125.556 37.3467C122.477 37.3467 119.907 36.2758 118.14 34.4287V44.1196H113.857V16.3318H118.14V18.6876C119.907 16.8404 122.45 15.7696 125.556 15.7696C130.91 15.7696 135.675 20.1332 135.675 26.5581ZM131.526 26.5581C131.526 22.2748 128.608 19.571 124.86 19.571C121.487 19.571 118.14 22.3016 118.14 26.5581C118.14 30.8146 121.487 33.5452 124.86 33.5452C128.608 33.5452 131.526 30.8682 131.526 26.5581Z",
|
|
25
|
+
fill: "#169E03"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
28
|
+
d: "M159.26 36.7577H154.977V34.4019C153.21 36.2491 150.64 37.3199 147.561 37.3199C142.207 37.3199 137.442 33.0099 137.442 26.5314C137.442 20.0529 142.207 15.7428 147.561 15.7428C150.64 15.7428 153.21 16.8137 154.977 18.6608V16.305H159.26V36.7577ZM155.003 26.5581C155.003 22.2749 151.657 19.571 148.284 19.571C144.536 19.571 141.618 22.3016 141.618 26.5581C141.618 30.8147 144.536 33.5453 148.284 33.5453C151.657 33.5453 155.003 30.8682 155.003 26.5581Z",
|
|
29
|
+
fill: "#169E03"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
32
|
+
d: "M86.5777 30.9217C85.1321 33.0901 83.0708 33.6256 81.063 33.6256C78.0647 33.6256 75.3073 31.3501 74.879 27.5754H91.4232V26.103C91.209 19.9726 86.6848 15.7696 81.2236 15.7696C75.4679 15.7696 70.6492 20.0796 70.6492 26.5849C70.6492 33.0901 75.4947 37.3199 81.063 37.3199C85.5872 37.3199 89.2013 35.1782 90.8878 30.895H86.5777V30.9217ZM81.2236 19.5442C84.0345 19.5442 86.3636 21.204 87.0328 24.5236H75.0128C75.6553 21.2308 78.5466 19.5442 81.2236 19.5442Z",
|
|
33
|
+
fill: "#0E680E"
|
|
34
|
+
}),
|
|
35
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
36
|
+
d: "M178.853 16.3317V26.2288C178.826 30.3729 175.614 32.9911 172.351 32.9911C168.723 32.9911 165.899 30.3997 165.899 26.2288V16.3317H161.883V26.2288C161.883 32.4476 166.496 36.6694 171.676 36.6694C174.656 36.6694 177.143 35.6333 178.853 33.8451V34.3376C178.853 37.9918 176.495 41.124 172.766 41.124C169.036 41.124 167.663 39.5686 166.185 37.2637L163 39.3625C164.579 42.3153 166.989 44.8799 172.766 44.8799C178.931 44.8799 183 40.1897 183 34.4394V16.3317H178.856H178.853Z",
|
|
37
|
+
fill: "#169E03"
|
|
38
|
+
}),
|
|
39
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
40
|
+
d: "M68.1864 3H64.0102V36.7577H68.1864V3Z",
|
|
41
|
+
fill: "#0E680E"
|
|
42
|
+
}),
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
44
|
+
d: "M54.2657 11.5934C54.2657 8.0061 56.1931 6.72111 58.7631 6.72111C59.941 6.72111 60.8244 6.9085 61.5473 7.20298V3.56218C60.8512 3.29448 59.7536 3 58.0939 3C53.5429 3 50.1698 5.83768 50.1698 11.7272V14.9183H46.6093V18.5591H50.1698V36.7309H54.2657V18.5591H60.7174V14.9183H54.2657V11.5934Z",
|
|
45
|
+
fill: "#0E680E"
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
exports.FlexPayLogo = FlexPayLogo;
|
|
@@ -0,0 +1,50 @@
|
|
|
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 FlexPayLogo = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 186 50",
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", {
|
|
10
|
+
d: "M104.166 26.2636L111.421 16.3317H106.763L101.757 23.3456L96.7773 16.3317H92.0122L99.2938 26.3439L91.6909 36.7577H96.3222L101.65 29.2619L106.977 36.7577H111.769L104.166 26.2636Z",
|
|
11
|
+
fill: "#0E680E"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M22.5693 3.05354V29.7973C22.5693 36.5435 17.1081 42.0047 10.3619 42.0047C9.47848 42.0047 8.64859 41.8977 7.8187 41.737C10.9509 44.9763 15.3145 46.9841 20.1867 46.9841C29.6635 46.9841 37.3734 39.3009 37.3734 29.7973V3.05354H22.5693Z",
|
|
15
|
+
fill: "#169E03"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", {
|
|
18
|
+
d: "M10.3619 37.1861C6.29278 37.1861 3 33.8933 3 29.8242V7.79197H17.7238V29.8242C17.7238 33.8933 14.431 37.1861 10.3619 37.1861Z",
|
|
19
|
+
fill: "#0E680E"
|
|
20
|
+
}),
|
|
21
|
+
/* @__PURE__ */ jsx("path", {
|
|
22
|
+
d: "M135.675 26.5581C135.675 33.0098 130.91 37.3467 125.556 37.3467C122.477 37.3467 119.907 36.2758 118.14 34.4287V44.1196H113.857V16.3318H118.14V18.6876C119.907 16.8404 122.45 15.7696 125.556 15.7696C130.91 15.7696 135.675 20.1332 135.675 26.5581ZM131.526 26.5581C131.526 22.2748 128.608 19.571 124.86 19.571C121.487 19.571 118.14 22.3016 118.14 26.5581C118.14 30.8146 121.487 33.5452 124.86 33.5452C128.608 33.5452 131.526 30.8682 131.526 26.5581Z",
|
|
23
|
+
fill: "#169E03"
|
|
24
|
+
}),
|
|
25
|
+
/* @__PURE__ */ jsx("path", {
|
|
26
|
+
d: "M159.26 36.7577H154.977V34.4019C153.21 36.2491 150.64 37.3199 147.561 37.3199C142.207 37.3199 137.442 33.0099 137.442 26.5314C137.442 20.0529 142.207 15.7428 147.561 15.7428C150.64 15.7428 153.21 16.8137 154.977 18.6608V16.305H159.26V36.7577ZM155.003 26.5581C155.003 22.2749 151.657 19.571 148.284 19.571C144.536 19.571 141.618 22.3016 141.618 26.5581C141.618 30.8147 144.536 33.5453 148.284 33.5453C151.657 33.5453 155.003 30.8682 155.003 26.5581Z",
|
|
27
|
+
fill: "#169E03"
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ jsx("path", {
|
|
30
|
+
d: "M86.5777 30.9217C85.1321 33.0901 83.0708 33.6256 81.063 33.6256C78.0647 33.6256 75.3073 31.3501 74.879 27.5754H91.4232V26.103C91.209 19.9726 86.6848 15.7696 81.2236 15.7696C75.4679 15.7696 70.6492 20.0796 70.6492 26.5849C70.6492 33.0901 75.4947 37.3199 81.063 37.3199C85.5872 37.3199 89.2013 35.1782 90.8878 30.895H86.5777V30.9217ZM81.2236 19.5442C84.0345 19.5442 86.3636 21.204 87.0328 24.5236H75.0128C75.6553 21.2308 78.5466 19.5442 81.2236 19.5442Z",
|
|
31
|
+
fill: "#0E680E"
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsx("path", {
|
|
34
|
+
d: "M178.853 16.3317V26.2288C178.826 30.3729 175.614 32.9911 172.351 32.9911C168.723 32.9911 165.899 30.3997 165.899 26.2288V16.3317H161.883V26.2288C161.883 32.4476 166.496 36.6694 171.676 36.6694C174.656 36.6694 177.143 35.6333 178.853 33.8451V34.3376C178.853 37.9918 176.495 41.124 172.766 41.124C169.036 41.124 167.663 39.5686 166.185 37.2637L163 39.3625C164.579 42.3153 166.989 44.8799 172.766 44.8799C178.931 44.8799 183 40.1897 183 34.4394V16.3317H178.856H178.853Z",
|
|
35
|
+
fill: "#169E03"
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ jsx("path", {
|
|
38
|
+
d: "M68.1864 3H64.0102V36.7577H68.1864V3Z",
|
|
39
|
+
fill: "#0E680E"
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ jsx("path", {
|
|
42
|
+
d: "M54.2657 11.5934C54.2657 8.0061 56.1931 6.72111 58.7631 6.72111C59.941 6.72111 60.8244 6.9085 61.5473 7.20298V3.56218C60.8512 3.29448 59.7536 3 58.0939 3C53.5429 3 50.1698 5.83768 50.1698 11.7272V14.9183H46.6093V18.5591H50.1698V36.7309H54.2657V18.5591H60.7174V14.9183H54.2657V11.5934Z",
|
|
43
|
+
fill: "#0E680E"
|
|
44
|
+
})
|
|
45
|
+
]
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
export {
|
|
49
|
+
FlexPayLogo
|
|
50
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldCheckOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-2-4l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldCheckOutline = MdiShieldCheckOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldCheckOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m-2-4l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldCheckOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldCheck = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "m10 17l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9m-6-8L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldCheck = MdiShieldCheck;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldCheck = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "m10 17l-4-4l1.41-1.41L10 14.17l6.59-6.59L18 9m-6-8L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldCheck
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldLockOpenOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M21 11c0 5.5-3.8 10.7-9 12c-5.2-1.3-9-6.5-9-12V5l9-4l9 4zm-9 10c3.8-1 7-5.5 7-9.8V6.3l-7-3.1l-7 3.1v4.9c0 4.3 3.2 8.8 7 9.8m2.8-10h-4.3V8.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V9h1.3v-.5C14.8 7.1 13.4 6 12 6S9.2 7.1 9.2 8.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldLockOpenOutline = MdiShieldLockOpenOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldLockOpenOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M21 11c0 5.5-3.8 10.7-9 12c-5.2-1.3-9-6.5-9-12V5l9-4l9 4zm-9 10c3.8-1 7-5.5 7-9.8V6.3l-7-3.1l-7 3.1v4.9c0 4.3 3.2 8.8 7 9.8m2.8-10h-4.3V8.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V9h1.3v-.5C14.8 7.1 13.4 6 12 6S9.2 7.1 9.2 8.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldLockOpenOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldLockOpen = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M12 1L3 5v6c0 5.5 3.8 10.7 9 12c5.2-1.3 9-6.5 9-12V5zm4 14.8c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V8.5C9.2 7.1 10.6 6 12 6s2.8 1.1 2.8 2.5V9h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V11h4.3c.6 0 1.2.6 1.2 1.3z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldLockOpen = MdiShieldLockOpen;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldLockOpen = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M12 1L3 5v6c0 5.5 3.8 10.7 9 12c5.2-1.3 9-6.5 9-12V5zm4 14.8c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V8.5C9.2 7.1 10.6 6 12 6s2.8 1.1 2.8 2.5V9h-1.3v-.5c0-.8-.7-1.3-1.5-1.3s-1.5.5-1.5 1.3V11h4.3c.6 0 1.2.6 1.2 1.3z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldLockOpen
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldLockOutline = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m2.8-10V9.5C14.8 8.1 13.4 7 12 7S9.2 8.1 9.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldLockOutline = MdiShieldLockOutline;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldLockOutline = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M21 11c0 5.55-3.84 10.74-9 12c-5.16-1.26-9-6.45-9-12V5l9-4l9 4zm-9 10c3.75-1 7-5.46 7-9.78V6.3l-7-3.12L5 6.3v4.92C5 15.54 8.25 20 12 21m2.8-10V9.5C14.8 8.1 13.4 7 12 7S9.2 8.1 9.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3m-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldLockOutline
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
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 MdiShieldLock = qwik.component$((props) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(svg.Svg, {
|
|
8
|
+
...props,
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5zm0 6c1.4 0 2.8 1.1 2.8 2.5V11c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V9.5C9.2 8.1 10.6 7 12 7m0 1.2c-.8 0-1.5.5-1.5 1.3V11h3V9.5c0-.8-.7-1.3-1.5-1.3"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
exports.MdiShieldLock = MdiShieldLock;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
|
+
import { component$ } from "@builder.io/qwik";
|
|
3
|
+
import { Svg } from "../svg.qwik.mjs";
|
|
4
|
+
const MdiShieldLock = component$((props) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(Svg, {
|
|
6
|
+
...props,
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12c5.16-1.26 9-6.45 9-12V5zm0 6c1.4 0 2.8 1.1 2.8 2.5V11c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.3v-3.5c0-.6.6-1.2 1.2-1.2V9.5C9.2 8.1 10.6 7 12 7m0 1.2c-.8 0-1.5.5-1.5 1.3V11h3V9.5c0-.8-.7-1.3-1.5-1.3"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
MdiShieldLock
|
|
16
|
+
};
|
package/lib/index.qwik.cjs
CHANGED
|
@@ -196,6 +196,12 @@ const mdiSearch = require("./components/icons/mdi-search.qwik.cjs");
|
|
|
196
196
|
const mdiSecureOutline = require("./components/icons/mdi-secure-outline.qwik.cjs");
|
|
197
197
|
const mdiShieldCrown = require("./components/icons/mdi-shield-crown.qwik.cjs");
|
|
198
198
|
const mdiShieldCrownOutline = require("./components/icons/mdi-shield-crown-outline.qwik.cjs");
|
|
199
|
+
const mdiShieldCheck = require("./components/icons/mdi-shield-check.qwik.cjs");
|
|
200
|
+
const mdiShieldCheckOutline = require("./components/icons/mdi-shield-check-outline.qwik.cjs");
|
|
201
|
+
const mdiShieldLock = require("./components/icons/mdi-shield-lock.qwik.cjs");
|
|
202
|
+
const mdiShieldLockOutline = require("./components/icons/mdi-shield-lock-outline.qwik.cjs");
|
|
203
|
+
const mdiShieldLockOpen = require("./components/icons/mdi-shield-lock-open.qwik.cjs");
|
|
204
|
+
const mdiShieldLockOpenOutline = require("./components/icons/mdi-shield-lock-open-outline.qwik.cjs");
|
|
199
205
|
const mdiShieldSync = require("./components/icons/mdi-shield-sync.qwik.cjs");
|
|
200
206
|
const mdiShieldSyncOutline = require("./components/icons/mdi-shield-sync-outline.qwik.cjs");
|
|
201
207
|
const mdiSpeedometer = require("./components/icons/mdi-speedometer.qwik.cjs");
|
|
@@ -247,6 +253,9 @@ const cloudAccountManagerLogoLightBg = require("./components/brands/cloud-accoun
|
|
|
247
253
|
const plaidIcon = require("./components/brands/plaid-icon.qwik.cjs");
|
|
248
254
|
const plaidIconBw = require("./components/brands/plaid-icon-bw.qwik.cjs");
|
|
249
255
|
const plaidLogoBw = require("./components/brands/plaid-logo-bw.qwik.cjs");
|
|
256
|
+
const flexPayIcon = require("./components/brands/flex-pay-icon.qwik.cjs");
|
|
257
|
+
const flexPayLogo = require("./components/brands/flex-pay-logo.qwik.cjs");
|
|
258
|
+
const flexPayLogoStacked = require("./components/brands/flex-pay-logo-stacked.qwik.cjs");
|
|
250
259
|
const clientloopIconOnDarkBlue = require("./components/brands/clientloop-icon-on-dark-blue.qwik.cjs");
|
|
251
260
|
const clientloopIconOnLightBlue = require("./components/brands/clientloop-icon-on-light-blue.qwik.cjs");
|
|
252
261
|
const clientloopIconOnWhite = require("./components/brands/clientloop-icon-on-white.qwik.cjs");
|
|
@@ -511,6 +520,12 @@ exports.MdiSearch = mdiSearch.MdiSearch;
|
|
|
511
520
|
exports.MdiSecureOutline = mdiSecureOutline.MdiSecureOutline;
|
|
512
521
|
exports.MdiShieldCrown = mdiShieldCrown.MdiShieldCrown;
|
|
513
522
|
exports.MdiShieldCrownOutline = mdiShieldCrownOutline.MdiShieldCrownOutline;
|
|
523
|
+
exports.MdiShieldCheck = mdiShieldCheck.MdiShieldCheck;
|
|
524
|
+
exports.MdiShieldCheckOutline = mdiShieldCheckOutline.MdiShieldCheckOutline;
|
|
525
|
+
exports.MdiShieldLock = mdiShieldLock.MdiShieldLock;
|
|
526
|
+
exports.MdiShieldLockOutline = mdiShieldLockOutline.MdiShieldLockOutline;
|
|
527
|
+
exports.MdiShieldLockOpen = mdiShieldLockOpen.MdiShieldLockOpen;
|
|
528
|
+
exports.MdiShieldLockOpenOutline = mdiShieldLockOpenOutline.MdiShieldLockOpenOutline;
|
|
514
529
|
exports.MdiShieldSync = mdiShieldSync.MdiShieldSync;
|
|
515
530
|
exports.MdiShieldSyncOutline = mdiShieldSyncOutline.MdiShieldSyncOutline;
|
|
516
531
|
exports.MdiSpeedometer = mdiSpeedometer.MdiSpeedometer;
|
|
@@ -562,6 +577,9 @@ exports.CloudAccountManagerLogoLightBg = cloudAccountManagerLogoLightBg.CloudAcc
|
|
|
562
577
|
exports.PlaidIcon = plaidIcon.PlaidIcon;
|
|
563
578
|
exports.PlaidIconBw = plaidIconBw.PlaidIconBw;
|
|
564
579
|
exports.PlaidLogoBw = plaidLogoBw.PlaidLogoBw;
|
|
580
|
+
exports.FlexPayIcon = flexPayIcon.FlexPayIcon;
|
|
581
|
+
exports.FlexPayLogo = flexPayLogo.FlexPayLogo;
|
|
582
|
+
exports.FlexPayLogoStacked = flexPayLogoStacked.FlexPayLogoStacked;
|
|
565
583
|
exports.ClientLoopIconOnDarkBlue = clientloopIconOnDarkBlue.ClientLoopIconOnDarkBlue;
|
|
566
584
|
exports.ClientLoopIconOnLightBlue = clientloopIconOnLightBlue.ClientLoopIconOnLightBlue;
|
|
567
585
|
exports.ClientLoopIconOnWhite = clientloopIconOnWhite.ClientLoopIconOnWhite;
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -194,6 +194,12 @@ import { MdiSearch } from "./components/icons/mdi-search.qwik.mjs";
|
|
|
194
194
|
import { MdiSecureOutline } from "./components/icons/mdi-secure-outline.qwik.mjs";
|
|
195
195
|
import { MdiShieldCrown } from "./components/icons/mdi-shield-crown.qwik.mjs";
|
|
196
196
|
import { MdiShieldCrownOutline } from "./components/icons/mdi-shield-crown-outline.qwik.mjs";
|
|
197
|
+
import { MdiShieldCheck } from "./components/icons/mdi-shield-check.qwik.mjs";
|
|
198
|
+
import { MdiShieldCheckOutline } from "./components/icons/mdi-shield-check-outline.qwik.mjs";
|
|
199
|
+
import { MdiShieldLock } from "./components/icons/mdi-shield-lock.qwik.mjs";
|
|
200
|
+
import { MdiShieldLockOutline } from "./components/icons/mdi-shield-lock-outline.qwik.mjs";
|
|
201
|
+
import { MdiShieldLockOpen } from "./components/icons/mdi-shield-lock-open.qwik.mjs";
|
|
202
|
+
import { MdiShieldLockOpenOutline } from "./components/icons/mdi-shield-lock-open-outline.qwik.mjs";
|
|
197
203
|
import { MdiShieldSync } from "./components/icons/mdi-shield-sync.qwik.mjs";
|
|
198
204
|
import { MdiShieldSyncOutline } from "./components/icons/mdi-shield-sync-outline.qwik.mjs";
|
|
199
205
|
import { MdiSpeedometer } from "./components/icons/mdi-speedometer.qwik.mjs";
|
|
@@ -245,6 +251,9 @@ import { CloudAccountManagerLogoLightBg } from "./components/brands/cloud-accoun
|
|
|
245
251
|
import { PlaidIcon } from "./components/brands/plaid-icon.qwik.mjs";
|
|
246
252
|
import { PlaidIconBw } from "./components/brands/plaid-icon-bw.qwik.mjs";
|
|
247
253
|
import { PlaidLogoBw } from "./components/brands/plaid-logo-bw.qwik.mjs";
|
|
254
|
+
import { FlexPayIcon } from "./components/brands/flex-pay-icon.qwik.mjs";
|
|
255
|
+
import { FlexPayLogo } from "./components/brands/flex-pay-logo.qwik.mjs";
|
|
256
|
+
import { FlexPayLogoStacked } from "./components/brands/flex-pay-logo-stacked.qwik.mjs";
|
|
248
257
|
import { ClientLoopIconOnDarkBlue } from "./components/brands/clientloop-icon-on-dark-blue.qwik.mjs";
|
|
249
258
|
import { ClientLoopIconOnLightBlue } from "./components/brands/clientloop-icon-on-light-blue.qwik.mjs";
|
|
250
259
|
import { ClientLoopIconOnWhite } from "./components/brands/clientloop-icon-on-white.qwik.mjs";
|
|
@@ -356,6 +365,9 @@ export {
|
|
|
356
365
|
FlagUs4x3,
|
|
357
366
|
FlagZa1x1,
|
|
358
367
|
FlagZa4x3,
|
|
368
|
+
FlexPayIcon,
|
|
369
|
+
FlexPayLogo,
|
|
370
|
+
FlexPayLogoStacked,
|
|
359
371
|
KaveliaBlackLogo,
|
|
360
372
|
KaveliaGreenLogo,
|
|
361
373
|
KaveliaIcon,
|
|
@@ -561,8 +573,14 @@ export {
|
|
|
561
573
|
MdiRocketOutline,
|
|
562
574
|
MdiSearch,
|
|
563
575
|
MdiSecureOutline,
|
|
576
|
+
MdiShieldCheck,
|
|
577
|
+
MdiShieldCheckOutline,
|
|
564
578
|
MdiShieldCrown,
|
|
565
579
|
MdiShieldCrownOutline,
|
|
580
|
+
MdiShieldLock,
|
|
581
|
+
MdiShieldLockOpen,
|
|
582
|
+
MdiShieldLockOpenOutline,
|
|
583
|
+
MdiShieldLockOutline,
|
|
566
584
|
MdiShieldSync,
|
|
567
585
|
MdiShieldSyncOutline,
|
|
568
586
|
MdiSpeedometer,
|
package/lib-types/index.d.ts
CHANGED
|
@@ -194,6 +194,12 @@ export * from './components/icons/mdi-search';
|
|
|
194
194
|
export * from './components/icons/mdi-secure-outline';
|
|
195
195
|
export * from './components/icons/mdi-shield-crown';
|
|
196
196
|
export * from './components/icons/mdi-shield-crown-outline';
|
|
197
|
+
export * from './components/icons/mdi-shield-check';
|
|
198
|
+
export * from './components/icons/mdi-shield-check-outline';
|
|
199
|
+
export * from './components/icons/mdi-shield-lock';
|
|
200
|
+
export * from './components/icons/mdi-shield-lock-outline';
|
|
201
|
+
export * from './components/icons/mdi-shield-lock-open';
|
|
202
|
+
export * from './components/icons/mdi-shield-lock-open-outline';
|
|
197
203
|
export * from './components/icons/mdi-shield-sync';
|
|
198
204
|
export * from './components/icons/mdi-shield-sync-outline';
|
|
199
205
|
export * from './components/icons/mdi-speedometer';
|
|
@@ -245,6 +251,9 @@ export * from './components/brands/cloud-account-manager-logo-light-bg';
|
|
|
245
251
|
export * from './components/brands/plaid-icon';
|
|
246
252
|
export * from './components/brands/plaid-icon-bw';
|
|
247
253
|
export * from './components/brands/plaid-logo-bw';
|
|
254
|
+
export * from './components/brands/flex-pay-icon';
|
|
255
|
+
export * from './components/brands/flex-pay-logo';
|
|
256
|
+
export * from './components/brands/flex-pay-logo-stacked';
|
|
248
257
|
export * from './components/brands/clientloop-icon-on-dark-blue';
|
|
249
258
|
export * from './components/brands/clientloop-icon-on-light-blue';
|
|
250
259
|
export * from './components/brands/clientloop-icon-on-white';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nr1e/qwik-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"description": "NR1E Qwik Icons Library",
|
|
5
5
|
"author": "NR1E, Inc.",
|
|
6
6
|
"publishConfig": {
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"np": "^11.0.2",
|
|
42
42
|
"prettier": "3.8.1",
|
|
43
43
|
"typescript": "5.9.3",
|
|
44
|
-
"typescript-eslint": "8.57.
|
|
44
|
+
"typescript-eslint": "8.57.2",
|
|
45
45
|
"undici": "*",
|
|
46
46
|
"vite": "7.3.1",
|
|
47
47
|
"vite-tsconfig-paths": "^6.1.1",
|
|
48
|
-
"vitest": "4.1.
|
|
48
|
+
"vitest": "4.1.1"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"prebuild": "prettier --check . && eslint .",
|