be-components 0.1.1
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/LICENSE +20 -0
- package/README.md +31 -0
- package/lib/commonjs/AuthenticateWizard/Components/StrategyForm.js +398 -0
- package/lib/commonjs/AuthenticateWizard/Components/StrategyForm.js.map +1 -0
- package/lib/commonjs/AuthenticateWizard/api/index.js +246 -0
- package/lib/commonjs/AuthenticateWizard/api/index.js.map +1 -0
- package/lib/commonjs/AuthenticateWizard/api/types.d.js +2 -0
- package/lib/commonjs/AuthenticateWizard/api/types.d.js.map +1 -0
- package/lib/commonjs/AuthenticateWizard/index.js +85 -0
- package/lib/commonjs/AuthenticateWizard/index.js.map +1 -0
- package/lib/commonjs/Components/Button.js +84 -0
- package/lib/commonjs/Components/Button.js.map +1 -0
- package/lib/commonjs/Components/Checkbox.js +41 -0
- package/lib/commonjs/Components/Checkbox.js.map +1 -0
- package/lib/commonjs/Components/Icons.js +1492 -0
- package/lib/commonjs/Components/Icons.js.map +1 -0
- package/lib/commonjs/Components/Spring.js +44 -0
- package/lib/commonjs/Components/Spring.js.map +1 -0
- package/lib/commonjs/Components/Text.js +44 -0
- package/lib/commonjs/Components/Text.js.map +1 -0
- package/lib/commonjs/Components/TextInput.js +45 -0
- package/lib/commonjs/Components/TextInput.js.map +1 -0
- package/lib/commonjs/Components/index.js +49 -0
- package/lib/commonjs/Components/index.js.map +1 -0
- package/lib/commonjs/Font.css +23 -0
- package/lib/commonjs/constants/colors.js +66 -0
- package/lib/commonjs/constants/colors.js.map +1 -0
- package/lib/commonjs/constants/styles.js +43 -0
- package/lib/commonjs/constants/styles.js.map +1 -0
- package/lib/commonjs/fonts/Barlow-Bold.ttf +0 -0
- package/lib/commonjs/fonts/Barlow-Light.ttf +0 -0
- package/lib/commonjs/fonts/Barlow-Regular.ttf +0 -0
- package/lib/commonjs/fonts/Barlow-SemiBold.ttf +0 -0
- package/lib/commonjs/index.js +33 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/module/AuthenticateWizard/Components/StrategyForm.js +389 -0
- package/lib/module/AuthenticateWizard/Components/StrategyForm.js.map +1 -0
- package/lib/module/AuthenticateWizard/api/index.js +240 -0
- package/lib/module/AuthenticateWizard/api/index.js.map +1 -0
- package/lib/module/AuthenticateWizard/api/types.d.js +2 -0
- package/lib/module/AuthenticateWizard/api/types.d.js.map +1 -0
- package/lib/module/AuthenticateWizard/index.js +77 -0
- package/lib/module/AuthenticateWizard/index.js.map +1 -0
- package/lib/module/Components/Button.js +77 -0
- package/lib/module/Components/Button.js.map +1 -0
- package/lib/module/Components/Checkbox.js +34 -0
- package/lib/module/Components/Checkbox.js.map +1 -0
- package/lib/module/Components/Icons.js +1485 -0
- package/lib/module/Components/Icons.js.map +1 -0
- package/lib/module/Components/Spring.js +37 -0
- package/lib/module/Components/Spring.js.map +1 -0
- package/lib/module/Components/Text.js +37 -0
- package/lib/module/Components/Text.js.map +1 -0
- package/lib/module/Components/TextInput.js +38 -0
- package/lib/module/Components/TextInput.js.map +1 -0
- package/lib/module/Components/index.js +8 -0
- package/lib/module/Components/index.js.map +1 -0
- package/lib/module/Font.css +23 -0
- package/lib/module/constants/colors.js +60 -0
- package/lib/module/constants/colors.js.map +1 -0
- package/lib/module/constants/styles.js +36 -0
- package/lib/module/constants/styles.js.map +1 -0
- package/lib/module/fonts/Barlow-Bold.ttf +0 -0
- package/lib/module/fonts/Barlow-Light.ttf +0 -0
- package/lib/module/fonts/Barlow-Regular.ttf +0 -0
- package/lib/module/fonts/Barlow-SemiBold.ttf +0 -0
- package/lib/module/index.js +4 -0
- package/lib/module/index.js.map +1 -0
- package/lib/typescript/src/AuthenticateWizard/Components/StrategyForm.d.ts +15 -0
- package/lib/typescript/src/AuthenticateWizard/Components/StrategyForm.d.ts.map +1 -0
- package/lib/typescript/src/AuthenticateWizard/api/index.d.ts +80 -0
- package/lib/typescript/src/AuthenticateWizard/api/index.d.ts.map +1 -0
- package/lib/typescript/src/AuthenticateWizard/index.d.ts +15 -0
- package/lib/typescript/src/AuthenticateWizard/index.d.ts.map +1 -0
- package/lib/typescript/src/Components/Button.d.ts +30 -0
- package/lib/typescript/src/Components/Button.d.ts.map +1 -0
- package/lib/typescript/src/Components/Checkbox.d.ts +11 -0
- package/lib/typescript/src/Components/Checkbox.d.ts.map +1 -0
- package/lib/typescript/src/Components/Icons.d.ts +44 -0
- package/lib/typescript/src/Components/Icons.d.ts.map +1 -0
- package/lib/typescript/src/Components/Spring.d.ts +11 -0
- package/lib/typescript/src/Components/Spring.d.ts.map +1 -0
- package/lib/typescript/src/Components/Text.d.ts +13 -0
- package/lib/typescript/src/Components/Text.d.ts.map +1 -0
- package/lib/typescript/src/Components/TextInput.d.ts +15 -0
- package/lib/typescript/src/Components/TextInput.d.ts.map +1 -0
- package/lib/typescript/src/Components/index.d.ts +8 -0
- package/lib/typescript/src/Components/index.d.ts.map +1 -0
- package/lib/typescript/src/constants/colors.d.ts +60 -0
- package/lib/typescript/src/constants/colors.d.ts.map +1 -0
- package/lib/typescript/src/constants/styles.d.ts +34 -0
- package/lib/typescript/src/constants/styles.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +167 -0
- package/src/AuthenticateWizard/Components/StrategyForm.tsx +292 -0
- package/src/AuthenticateWizard/api/index.ts +164 -0
- package/src/AuthenticateWizard/api/types.d.ts +134 -0
- package/src/AuthenticateWizard/index.tsx +84 -0
- package/src/Components/Button.tsx +63 -0
- package/src/Components/Checkbox.tsx +28 -0
- package/src/Components/Icons.tsx +698 -0
- package/src/Components/Spring.tsx +38 -0
- package/src/Components/Text.tsx +35 -0
- package/src/Components/TextInput.tsx +45 -0
- package/src/Components/index.tsx +15 -0
- package/src/Font.css +23 -0
- package/src/constants/colors.ts +61 -0
- package/src/constants/styles.ts +40 -0
- package/src/fonts/Barlow-Bold.ttf +0 -0
- package/src/fonts/Barlow-Light.ttf +0 -0
- package/src/fonts/Barlow-Regular.ttf +0 -0
- package/src/fonts/Barlow-SemiBold.ttf +0 -0
- package/src/index.tsx +9 -0
|
@@ -0,0 +1,1485 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Colors from '../constants/colors';
|
|
3
|
+
const SearchIcon = ({
|
|
4
|
+
color
|
|
5
|
+
}) => {
|
|
6
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
7
|
+
width: "19px",
|
|
8
|
+
height: "19px",
|
|
9
|
+
viewBox: "0 0 19 19",
|
|
10
|
+
version: "1.1",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("title", null, "Vector (2)"), /*#__PURE__*/React.createElement("g", {
|
|
13
|
+
id: "Page-1",
|
|
14
|
+
stroke: "none",
|
|
15
|
+
"stroke-width": "1",
|
|
16
|
+
fill: "none",
|
|
17
|
+
"fill-rule": "evenodd"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
19
|
+
id: "Vector-(2)",
|
|
20
|
+
transform: "translate(0.000000, 0.000000)",
|
|
21
|
+
fill: color ?? Colors.brand.midnight,
|
|
22
|
+
"fill-rule": "nonzero"
|
|
23
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M8.00050802,14.000488 C8.78843802,14.000488 9.56868802,13.845288 10.296588,13.543788 C11.024588,13.242288 11.685988,12.800288 12.243188,12.243188 C12.800288,11.685988 13.242288,11.024588 13.543788,10.296588 C13.845288,9.56868802 14.000488,8.78843802 14.000488,8.00050802 C14.000488,7.21256802 13.845288,6.43235802 13.543788,5.70439802 C13.242288,4.97644802 12.800288,4.31501802 12.243188,3.75785802 C11.685988,3.20070802 11.024588,2.75875802 10.296588,2.45722802 C9.56868802,2.15569802 8.78843802,2.00050802 8.00050802,2.00050802 C6.40920802,2.00050802 4.88307802,2.63264802 3.75785802,3.75785802 C2.63264802,4.88307802 2.00050802,6.40920802 2.00050802,8.00050802 C2.00050802,9.59178802 2.63264802,11.117888 3.75785802,12.243188 C4.88307802,13.368388 6.40920802,14.000488 8.00050802,14.000488 Z M14.320488,12.906488 L17.900488,16.486488 C17.995988,16.578788 18.072088,16.689188 18.124388,16.811288 C18.176688,16.933288 18.204188,17.064488 18.2053164,17.197288 C18.206288,17.330088 18.180888,17.461788 18.130488,17.584588 C18.080188,17.707488 18.005788,17.819088 17.911888,17.912888 C17.817888,18.006688 17.706188,18.080888 17.583288,18.131088 C17.460388,18.181288 17.328688,18.206488 17.195888,18.2053289 C17.063088,18.203988 16.931888,18.176288 16.809988,18.123788 C16.687988,18.071288 16.577688,17.995088 16.485488,17.899488 L12.905488,14.319488 C11.297988,15.567388 9.27529802,16.155688 7.24925802,15.964688 C5.22321802,15.773688 3.34610802,14.817788 2.00005802,13.291588 C0.653998017,11.765288 -0.0598119827,9.78348802 0.00392901727,7.74942802 C0.0676700173,5.71540802 0.904168017,3.78212802 2.34314802,2.34314802 C3.78212802,0.904168017 5.71540802,0.0676700173 7.74942802,0.00392901727 C9.78348802,-0.0598119827 11.765288,0.653998017 13.291588,2.00005802 C14.817788,3.34610802 15.773688,5.22321802 15.964688,7.24925802 C16.155688,9.27529802 15.567388,11.297988 14.319488,12.905488 L14.320488,12.906488 Z",
|
|
25
|
+
id: "Shape"
|
|
26
|
+
}))));
|
|
27
|
+
};
|
|
28
|
+
const EyeOnIcon = ({
|
|
29
|
+
color,
|
|
30
|
+
size
|
|
31
|
+
}) => {
|
|
32
|
+
const ratio = 0.75;
|
|
33
|
+
let width = size ?? 14;
|
|
34
|
+
let height = width * ratio;
|
|
35
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
36
|
+
width: `${width}px`,
|
|
37
|
+
height: `${height}px`,
|
|
38
|
+
viewBox: "0 0 24 18",
|
|
39
|
+
version: "1.1",
|
|
40
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
41
|
+
}, /*#__PURE__*/React.createElement("title", null, "eye"), /*#__PURE__*/React.createElement("g", {
|
|
42
|
+
id: "Page-1",
|
|
43
|
+
stroke: "none",
|
|
44
|
+
"stroke-width": "1",
|
|
45
|
+
fill: "none",
|
|
46
|
+
"fill-rule": "evenodd",
|
|
47
|
+
"stroke-linecap": "round",
|
|
48
|
+
"stroke-linejoin": "round"
|
|
49
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
50
|
+
id: "eye",
|
|
51
|
+
transform: "translate(1.000000, 1.000000)",
|
|
52
|
+
stroke: color,
|
|
53
|
+
"stroke-width": "2"
|
|
54
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M0,8 C0,8 4,0 11,0 C18,0 22,8 22,8 C22,8 18,16 11,16 C4,16 0,8 0,8 Z",
|
|
56
|
+
id: "Path"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
58
|
+
id: "Oval",
|
|
59
|
+
cx: "11",
|
|
60
|
+
cy: "8",
|
|
61
|
+
r: "3"
|
|
62
|
+
}))));
|
|
63
|
+
};
|
|
64
|
+
const EyeOffIcon = ({
|
|
65
|
+
color,
|
|
66
|
+
size
|
|
67
|
+
}) => {
|
|
68
|
+
const ratio = 1;
|
|
69
|
+
let width = size ?? 14;
|
|
70
|
+
let height = width * ratio;
|
|
71
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
72
|
+
width: `${width}px`,
|
|
73
|
+
height: `${height}px`,
|
|
74
|
+
viewBox: "0 0 24 24",
|
|
75
|
+
version: "1.1",
|
|
76
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
77
|
+
}, /*#__PURE__*/React.createElement("title", null, "eye-off"), /*#__PURE__*/React.createElement("g", {
|
|
78
|
+
id: "Page-1",
|
|
79
|
+
stroke: "none",
|
|
80
|
+
"stroke-width": "1",
|
|
81
|
+
fill: "none",
|
|
82
|
+
"fill-rule": "evenodd",
|
|
83
|
+
"stroke-linecap": "round",
|
|
84
|
+
"stroke-linejoin": "round"
|
|
85
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
86
|
+
id: "eye-off",
|
|
87
|
+
transform: "translate(1.000000, 1.000000)",
|
|
88
|
+
stroke: color,
|
|
89
|
+
"stroke-width": "2"
|
|
90
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
91
|
+
d: "M16.94,16.94 C15.23059,18.2430022 13.1491075,18.9648632 11,19 C4,19 0,11 0,11 C1.2438899,8.68189567 2.96913545,6.65660741 5.06,5.06 M8.9,3.24 C9.5883323,3.07887951 10.2930641,2.99833874 11,2.99997482 C18,2.99997482 22,11 22,11 C21.3929796,12.1356074 20.6690554,13.2047361 19.84,14.19 M13.12,13.12 C12.3721177,13.9226127 11.2457778,14.2529967 10.1828444,13.9815422 C9.1199109,13.7100876 8.28991239,12.8800891 8.01845783,11.8171556 C7.74700327,10.7542222 8.07738729,9.62788232 8.88,8.88",
|
|
92
|
+
id: "Shape"
|
|
93
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
94
|
+
x1: "0",
|
|
95
|
+
y1: "0",
|
|
96
|
+
x2: "22",
|
|
97
|
+
y2: "22",
|
|
98
|
+
id: "Path"
|
|
99
|
+
}))));
|
|
100
|
+
};
|
|
101
|
+
const USDIcon = ({
|
|
102
|
+
color,
|
|
103
|
+
size
|
|
104
|
+
}) => {
|
|
105
|
+
let icon_size = size ?? 17;
|
|
106
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
107
|
+
width: `${icon_size}px`,
|
|
108
|
+
height: `${icon_size}px`,
|
|
109
|
+
viewBox: "0 0 17 17",
|
|
110
|
+
version: "1.1",
|
|
111
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
112
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
113
|
+
id: "Page-1",
|
|
114
|
+
stroke: "none",
|
|
115
|
+
"stroke-width": "1",
|
|
116
|
+
fill: "none",
|
|
117
|
+
"fill-rule": "evenodd"
|
|
118
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
119
|
+
id: "Group",
|
|
120
|
+
transform: "translate(-0.000000, -0.000000)",
|
|
121
|
+
fill: color,
|
|
122
|
+
"fill-rule": "nonzero"
|
|
123
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
124
|
+
d: "M7.500003,10.833313 L7.500003,9.166663 C6.836963,9.166663 6.201073,8.903273 5.732233,8.434433 C5.263393,7.965593 5.000003,7.329713 5.000003,6.666663 C5.000003,6.003623 5.263393,5.367743 5.732233,4.898903 C6.201073,4.430063 6.836963,4.166663 7.500003,4.166663 L7.500003,3.333333 C7.500003,3.112323 7.587803,2.900363 7.744083,2.744073 C7.900363,2.587793 8.112323,2.500003 8.333333,2.500003 C8.554343,2.500003 8.766313,2.587793 8.922593,2.744073 C9.078873,2.900363 9.166663,3.112323 9.166663,3.333333 L9.166663,4.166663 L9.185003,4.166663 C9.843213,4.166663 10.474413,4.428123 10.939813,4.893533 C11.405213,5.358933 11.666713,5.990153 11.666713,6.648333 C11.666713,6.869343 11.578913,7.081313 11.422613,7.237593 C11.266313,7.393873 11.054313,7.481663 10.833313,7.481663 C10.612313,7.481663 10.400313,7.393873 10.244113,7.237593 C10.087813,7.081313 10.000013,6.869343 10.000013,6.648333 C10.000013,6.432183 9.914113,6.224883 9.761313,6.072043 C9.608413,5.919203 9.401113,5.833333 9.185003,5.833333 L9.166663,5.833333 L9.166663,7.500003 C9.829713,7.500003 10.465613,7.763393 10.934413,8.232233 C11.403313,8.701073 11.666713,9.336963 11.666713,10.000013 C11.666713,10.663013 11.403313,11.298913 10.934413,11.767813 C10.465613,12.236613 9.829713,12.500013 9.166663,12.500013 L9.166663,13.333313 C9.166663,13.554313 9.078873,13.766313 8.922593,13.922613 C8.766313,14.078913 8.554343,14.166713 8.333333,14.166713 C8.112323,14.166713 7.900363,14.078913 7.744083,13.922613 C7.587803,13.766313 7.500003,13.554313 7.500003,13.333313 L7.500003,12.500013 L7.457503,12.500013 C6.805733,12.500013 6.180653,12.241113 5.719783,11.780213 C5.258913,11.319313 5.000003,10.694313 5.000003,10.042513 C5.000003,9.821483 5.087793,9.609523 5.244083,9.453243 C5.400363,9.296963 5.612323,9.209163 5.833333,9.209163 C6.054343,9.209163 6.266313,9.296963 6.422593,9.453243 C6.578873,9.609523 6.666663,9.821483 6.666663,10.042513 C6.666883,10.252213 6.750283,10.453213 6.898543,10.601413 C7.046803,10.749713 7.247823,10.833113 7.457503,10.833313 L7.500003,10.833313 Z M9.166663,10.833313 C9.387713,10.833313 9.599613,10.745513 9.755913,10.589213 C9.912213,10.433013 10.000013,10.221013 10.000013,10.000013 C10.000013,9.778983 9.912213,9.567023 9.755913,9.410743 C9.599613,9.254463 9.387713,9.166663 9.166663,9.166663 L9.166663,10.833313 Z M7.500003,5.833333 C7.278983,5.833333 7.067023,5.921133 6.910743,6.077413 C6.754463,6.233693 6.666663,6.445653 6.666663,6.666663 C6.666663,6.887683 6.754463,7.099643 6.910743,7.255923 C7.067023,7.412203 7.278983,7.500003 7.500003,7.500003 L7.500003,5.833333 Z M8.333333,16.666713 C3.730833,16.666713 4.4408921e-16,12.935813 4.4408921e-16,8.333333 C4.4408921e-16,3.730833 3.730833,4.16333634e-16 8.333333,4.16333634e-16 C12.935813,4.16333634e-16 16.666713,3.730833 16.666713,8.333333 C16.666713,12.935813 12.935813,16.666713 8.333333,16.666713 Z M8.333333,15.000013 C10.101413,15.000013 11.797113,14.297613 13.047413,13.047413 C14.297613,11.797113 15.000013,10.101413 15.000013,8.333333 C15.000013,6.565223 14.297613,4.869533 13.047413,3.619293 C11.797113,2.369043 10.101413,1.666663 8.333333,1.666663 C6.565223,1.666663 4.869533,2.369043 3.619293,3.619293 C2.369043,4.869533 1.666663,6.565223 1.666663,8.333333 C1.666663,10.101413 2.369043,11.797113 3.619293,13.047413 C4.869533,14.297613 6.565223,15.000013 8.333333,15.000013 Z",
|
|
125
|
+
id: "Shape"
|
|
126
|
+
}))));
|
|
127
|
+
};
|
|
128
|
+
const ChangeIcon = ({
|
|
129
|
+
color,
|
|
130
|
+
size
|
|
131
|
+
}) => {
|
|
132
|
+
let icon_size = size ?? 14;
|
|
133
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
134
|
+
width: `${icon_size}px`,
|
|
135
|
+
height: `${icon_size}px`,
|
|
136
|
+
viewBox: "0 0 50 50",
|
|
137
|
+
version: "1.1",
|
|
138
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
139
|
+
}, /*#__PURE__*/React.createElement("title", null, "change-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
140
|
+
id: "Page-1",
|
|
141
|
+
stroke: "none",
|
|
142
|
+
"stroke-width": "1",
|
|
143
|
+
fill: "none",
|
|
144
|
+
"fill-rule": "evenodd"
|
|
145
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
146
|
+
id: "change-svgrepo-com",
|
|
147
|
+
fill: color ?? Colors.brand.midnight,
|
|
148
|
+
"fill-rule": "nonzero"
|
|
149
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
150
|
+
d: "M16.2740785,40.028426 C15.755866,39.5000562 14.9179053,39.5000562 14.3996928,40.028426 C13.8814803,40.5567957 13.8814803,41.4111809 14.3996928,41.9395506 L15.8992014,43.4684504 L9.81296064,43.4684504 C5.85469899,43.4684504 2.64619163,40.1858127 2.64619163,36.161209 L2.64619163,31.6307193 C2.64619163,30.8887533 2.05079851,30.2816901 1.32309582,30.2816901 C0.595393117,30.2816901 0,30.8887533 0,31.6307193 L0,36.161209 C0,41.6809867 4.39929359,46.1665087 9.81296064,46.1665087 L15.8992014,46.1665087 L14.3996928,47.6954085 C13.8814803,48.2237782 13.8814803,49.0781634 14.3996928,49.6065332 C14.6532862,49.8650971 14.9950859,50 15.3368857,50 C15.6786854,50 16.0094594,49.8650971 16.2740785,49.6065332 L20.0338758,45.7730419 C20.5520883,45.2446721 20.5520883,44.390287 20.0338758,43.8619172 L16.2740785,40.028426 Z",
|
|
151
|
+
id: "Path"
|
|
152
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
153
|
+
d: "M23.3101458,0 L1.33774151,0 C0.60198368,0 0,0.60198368 0,1.33774151 L0,23.3101458 C0,24.0459036 0.60198368,24.6478873 1.33774151,24.6478873 L23.3101458,24.6478873 C24.0459036,24.6478873 24.6478873,24.0459036 24.6478873,23.3101458 L24.6478873,1.33774151 C24.6478873,0.60198368 24.0570515,0 23.3101458,0 Z M21.9724043,21.9724043 L2.67548302,21.9724043 L2.67548302,2.67548302 L21.9724043,2.67548302 L21.9724043,21.9724043 Z",
|
|
154
|
+
id: "Shape"
|
|
155
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
156
|
+
d: "M40.1760136,3.83575502 L34.0897728,3.83575502 L35.5892814,2.30707316 C36.1074939,1.7787787 36.1074939,0.924515312 35.5892814,0.396220848 C35.0710689,-0.132073616 34.2331082,-0.132073616 33.7148957,0.396220848 L29.9661242,4.22916579 C29.4479117,4.75746025 29.4479117,5.61172364 29.9661242,6.1400181 L33.7259215,9.97296305 C33.9795148,10.2314901 34.3213146,10.3663738 34.6631143,10.3663738 C35.0049141,10.3663738 35.335688,10.2314901 35.6003072,9.97296305 C36.1185197,9.44466858 36.1185197,8.59040519 35.6003072,8.06211073 L34.1007986,6.53342888 L40.1870394,6.53342888 C44.145301,6.53342888 47.3538084,9.81559874 47.3538084,13.8396289 L47.3538084,18.3694729 C47.3538084,19.1113332 47.9492015,19.7183099 48.6769042,19.7183099 C49.4046069,19.7183099 50,19.1113332 50,18.3694729 L50,13.8396289 C50,8.32063781 45.5896806,3.83575502 40.1760136,3.83575502 Z",
|
|
157
|
+
id: "Path"
|
|
158
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
159
|
+
d: "M48.5915493,47.1830986 C48.2159624,47.1830986 47.8521127,47.3356808 47.5938967,47.5938967 C47.3356808,47.8521127 47.1830986,48.2159624 47.1830986,48.5915493 C47.1830986,48.9553991 47.3356808,49.3309859 47.5938967,49.5892019 C47.8521127,49.8474178 48.2159624,50 48.5915493,50 C48.9671362,50 49.3309859,49.8474178 49.5892019,49.5892019 C49.8474178,49.3309859 50,48.9671362 50,48.5915493 C50,48.2159624 49.8474178,47.8521127 49.5892019,47.5938967 C49.3192488,47.3356808 48.9553991,47.1830986 48.5915493,47.1830986 Z",
|
|
160
|
+
id: "Path"
|
|
161
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
162
|
+
d: "M42.9577465,47.1830986 C42.1830986,47.1830986 41.5492958,47.8169014 41.5492958,48.5915493 C41.5492958,49.3661972 42.1830986,50 42.9577465,50 C43.7323944,50 44.3661972,49.3661972 44.3661972,48.5915493 C44.3661972,47.8169014 43.7323944,47.1830986 42.9577465,47.1830986 Z",
|
|
163
|
+
id: "Path"
|
|
164
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
165
|
+
d: "M32.3943662,47.1830986 C31.6197183,47.1830986 30.9859155,47.8169014 30.9859155,48.5915493 C30.9859155,49.3661972 31.6197183,50 32.3943662,50 C33.1690141,50 33.8028169,49.3661972 33.8028169,48.5915493 C33.8028169,47.8169014 33.1807512,47.1830986 32.3943662,47.1830986 Z",
|
|
166
|
+
id: "Path"
|
|
167
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
168
|
+
d: "M37.3239437,47.1830986 C36.5492958,47.1830986 35.915493,47.8169014 35.915493,48.5915493 C35.915493,49.3661972 36.5492958,50 37.3239437,50 C38.0985915,50 38.7323944,49.3661972 38.7323944,48.5915493 C38.7323944,47.8169014 38.0985915,47.1830986 37.3239437,47.1830986 Z",
|
|
169
|
+
id: "Path"
|
|
170
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
171
|
+
d: "M26.7605634,47.1830986 C26.3849765,47.1830986 26.0211268,47.3356808 25.7629108,47.5938967 C25.5046948,47.8521127 25.3521127,48.2159624 25.3521127,48.5915493 C25.3521127,48.9553991 25.5046948,49.3309859 25.7629108,49.5892019 C26.0211268,49.8474178 26.3849765,50 26.7605634,50 C27.1244131,50 27.5,49.8474178 27.758216,49.5892019 C28.0164319,49.3309859 28.1690141,48.9671362 28.1690141,48.5915493 C28.1690141,48.2159624 28.0164319,47.8521127 27.758216,47.5938967 C27.5,47.3356808 27.1242958,47.1830986 26.7605634,47.1830986 Z",
|
|
172
|
+
id: "Path"
|
|
173
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
174
|
+
d: "M26.7605634,41.5492958 C25.9859155,41.5492958 25.3521127,42.1830986 25.3521127,42.9577465 C25.3521127,43.7323944 25.9859155,44.3661972 26.7605634,44.3661972 C27.5352113,44.3661972 28.1690141,43.7323944 28.1690141,42.9577465 C28.1690141,42.1830986 27.5350939,41.5492958 26.7605634,41.5492958 Z",
|
|
175
|
+
id: "Path"
|
|
176
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
177
|
+
d: "M26.7605634,36.6197183 C25.9859155,36.6197183 25.3521127,37.2535211 25.3521127,38.028169 C25.3521127,38.8028169 25.9859155,39.4366197 26.7605634,39.4366197 C27.5352113,39.4366197 28.1690141,38.8028169 28.1690141,38.028169 C28.1690141,37.2535211 27.5350939,36.6197183 26.7605634,36.6197183 Z",
|
|
178
|
+
id: "Path"
|
|
179
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
180
|
+
d: "M26.7605634,30.9859155 C25.9859155,30.9859155 25.3521127,31.6197183 25.3521127,32.3943662 C25.3521127,33.1690141 25.9859155,33.8028169 26.7605634,33.8028169 C27.5352113,33.8028169 28.1690141,33.1690141 28.1690141,32.3943662 C28.1690141,31.6197183 27.5350939,30.9859155 26.7605634,30.9859155 Z",
|
|
181
|
+
id: "Path"
|
|
182
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
183
|
+
d: "M26.7605634,25.3521127 C26.3849765,25.3521127 26.0211268,25.5046948 25.7629108,25.7629108 C25.5046948,26.0211268 25.3521127,26.3849765 25.3521127,26.7605634 C25.3521127,27.1361502 25.5046948,27.5 25.7629108,27.758216 C26.0211268,28.0164319 26.3849765,28.1690141 26.7605634,28.1690141 C27.1244131,28.1690141 27.5,28.0164319 27.758216,27.758216 C28.0164319,27.5 28.1690141,27.1361502 28.1690141,26.7605634 C28.1690141,26.3967136 28.0164319,26.0211268 27.758216,25.7629108 C27.4881455,25.4929577 27.1242958,25.3521127 26.7605634,25.3521127 Z",
|
|
184
|
+
id: "Path"
|
|
185
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
186
|
+
d: "M42.9577465,25.3521127 C42.1830986,25.3521127 41.5492958,25.9859155 41.5492958,26.7605634 C41.5492958,27.5352113 42.1830986,28.1690141 42.9577465,28.1690141 C43.7323944,28.1690141 44.3661972,27.5352113 44.3661972,26.7605634 C44.3661972,25.9859155 43.7323944,25.3521127 42.9577465,25.3521127 Z",
|
|
187
|
+
id: "Path"
|
|
188
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
189
|
+
d: "M37.3239437,25.3521127 C36.5492958,25.3521127 35.915493,25.9859155 35.915493,26.7605634 C35.915493,27.5352113 36.5492958,28.1690141 37.3239437,28.1690141 C38.0985915,28.1690141 38.7323944,27.5352113 38.7323944,26.7605634 C38.7323944,25.9859155 38.0985915,25.3521127 37.3239437,25.3521127 Z",
|
|
190
|
+
id: "Path"
|
|
191
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
192
|
+
d: "M32.3943662,25.3521127 C31.6197183,25.3521127 30.9859155,25.9859155 30.9859155,26.7605634 C30.9859155,27.5352113 31.6197183,28.1690141 32.3943662,28.1690141 C33.1690141,28.1690141 33.8028169,27.5352113 33.8028169,26.7605634 C33.8028169,25.9859155 33.1807512,25.3521127 32.3943662,25.3521127 Z",
|
|
193
|
+
id: "Path"
|
|
194
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
195
|
+
d: "M48.5915493,25.3521127 C48.2159624,25.3521127 47.8521127,25.5046948 47.5938967,25.7629108 C47.3356808,26.0211268 47.1830986,26.3849765 47.1830986,26.7605634 C47.1830986,27.1361502 47.3356808,27.5 47.5938967,27.758216 C47.8521127,28.0164319 48.2159624,28.1690141 48.5915493,28.1690141 C48.9671362,28.1690141 49.3309859,28.0164319 49.5892019,27.758216 C49.8474178,27.5 50,27.1361502 50,26.7605634 C50,26.3967136 49.8474178,26.0211268 49.5892019,25.7629108 C49.3192488,25.5046948 48.9553991,25.3521127 48.5915493,25.3521127 Z",
|
|
196
|
+
id: "Path"
|
|
197
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
198
|
+
d: "M48.5915493,30.9859155 C47.8169014,30.9859155 47.1830986,31.6197183 47.1830986,32.3943662 C47.1830986,33.1690141 47.8169014,33.8028169 48.5915493,33.8028169 C49.3661972,33.8028169 50,33.1690141 50,32.3943662 C50,31.6197183 49.3661972,30.9859155 48.5915493,30.9859155 Z",
|
|
199
|
+
id: "Path"
|
|
200
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
201
|
+
d: "M48.5915493,41.5492958 C47.8169014,41.5492958 47.1830986,42.1830986 47.1830986,42.9577465 C47.1830986,43.7323944 47.8169014,44.3661972 48.5915493,44.3661972 C49.3661972,44.3661972 50,43.7323944 50,42.9577465 C50,42.1830986 49.3661972,41.5492958 48.5915493,41.5492958 Z",
|
|
202
|
+
id: "Path"
|
|
203
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
204
|
+
d: "M48.5915493,36.6197183 C47.8169014,36.6197183 47.1830986,37.2535211 47.1830986,38.028169 C47.1830986,38.8028169 47.8169014,39.4366197 48.5915493,39.4366197 C49.3661972,39.4366197 50,38.8028169 50,38.028169 C50,37.2535211 49.3661972,36.6197183 48.5915493,36.6197183 Z",
|
|
205
|
+
id: "Path"
|
|
206
|
+
}))));
|
|
207
|
+
};
|
|
208
|
+
const LockClosedIcon = ({
|
|
209
|
+
color,
|
|
210
|
+
size
|
|
211
|
+
}) => {
|
|
212
|
+
const ratio = 0.909;
|
|
213
|
+
const height = size ?? 22;
|
|
214
|
+
const width = height * ratio;
|
|
215
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
216
|
+
width: `${width}px`,
|
|
217
|
+
height: `${height}px`,
|
|
218
|
+
viewBox: "0 0 20 22",
|
|
219
|
+
version: "1.1",
|
|
220
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
221
|
+
}, /*#__PURE__*/React.createElement("title", null, "lock"), /*#__PURE__*/React.createElement("g", {
|
|
222
|
+
id: "Page-1",
|
|
223
|
+
stroke: "none",
|
|
224
|
+
"stroke-width": "1",
|
|
225
|
+
fill: "none",
|
|
226
|
+
"fill-rule": "evenodd",
|
|
227
|
+
"stroke-linecap": "round",
|
|
228
|
+
"stroke-linejoin": "round"
|
|
229
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
230
|
+
id: "lock",
|
|
231
|
+
transform: "translate(1.000000, 1.000000)",
|
|
232
|
+
stroke: color,
|
|
233
|
+
"stroke-width": "2"
|
|
234
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
235
|
+
id: "Rectangle",
|
|
236
|
+
x: "0",
|
|
237
|
+
y: "9",
|
|
238
|
+
width: "18",
|
|
239
|
+
height: "11",
|
|
240
|
+
rx: "2"
|
|
241
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
242
|
+
d: "M4,9 L4,5 C4,2.23857625 6.23857625,8.8817842e-16 9,8.8817842e-16 C11.7614237,8.8817842e-16 14,2.23857625 14,5 L14,9",
|
|
243
|
+
id: "Path"
|
|
244
|
+
}))));
|
|
245
|
+
};
|
|
246
|
+
const PausedIcon = ({
|
|
247
|
+
color,
|
|
248
|
+
size
|
|
249
|
+
}) => {
|
|
250
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
251
|
+
width: `${size ?? 14}px`,
|
|
252
|
+
height: `${size ?? 14}px`,
|
|
253
|
+
viewBox: "0 0 22 22",
|
|
254
|
+
version: "1.1",
|
|
255
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
256
|
+
}, /*#__PURE__*/React.createElement("title", null, "pause-circle"), /*#__PURE__*/React.createElement("g", {
|
|
257
|
+
id: "Page-1",
|
|
258
|
+
stroke: "none",
|
|
259
|
+
"stroke-width": "1",
|
|
260
|
+
fill: "none",
|
|
261
|
+
"fill-rule": "evenodd",
|
|
262
|
+
"stroke-linecap": "round",
|
|
263
|
+
"stroke-linejoin": "round"
|
|
264
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
265
|
+
id: "pause-circle",
|
|
266
|
+
transform: "translate(1.000000, 1.000000)",
|
|
267
|
+
stroke: color,
|
|
268
|
+
"stroke-width": "2"
|
|
269
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
270
|
+
id: "Oval",
|
|
271
|
+
cx: "10",
|
|
272
|
+
cy: "10",
|
|
273
|
+
r: "10"
|
|
274
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
275
|
+
x1: "8",
|
|
276
|
+
y1: "13",
|
|
277
|
+
x2: "8",
|
|
278
|
+
y2: "7",
|
|
279
|
+
id: "Path"
|
|
280
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
281
|
+
x1: "12",
|
|
282
|
+
y1: "13",
|
|
283
|
+
x2: "12",
|
|
284
|
+
y2: "7",
|
|
285
|
+
id: "Path"
|
|
286
|
+
}))));
|
|
287
|
+
};
|
|
288
|
+
const PlusCircleIcon = ({
|
|
289
|
+
color,
|
|
290
|
+
size
|
|
291
|
+
}) => {
|
|
292
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
293
|
+
width: `${size ?? 14}px`,
|
|
294
|
+
height: `${size ?? 14}px`,
|
|
295
|
+
viewBox: "0 0 22 22",
|
|
296
|
+
version: "1.1",
|
|
297
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
298
|
+
}, /*#__PURE__*/React.createElement("title", null, "plus-circle"), /*#__PURE__*/React.createElement("g", {
|
|
299
|
+
id: "Page-1",
|
|
300
|
+
stroke: "none",
|
|
301
|
+
"stroke-width": "1",
|
|
302
|
+
fill: "none",
|
|
303
|
+
"fill-rule": "evenodd",
|
|
304
|
+
"stroke-linecap": "round",
|
|
305
|
+
"stroke-linejoin": "round"
|
|
306
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
307
|
+
id: "plus-circle",
|
|
308
|
+
transform: "translate(1.000000, 1.000000)",
|
|
309
|
+
stroke: color,
|
|
310
|
+
"stroke-width": "2"
|
|
311
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
312
|
+
id: "Oval",
|
|
313
|
+
cx: "10",
|
|
314
|
+
cy: "10",
|
|
315
|
+
r: "10"
|
|
316
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
317
|
+
x1: "10",
|
|
318
|
+
y1: "6",
|
|
319
|
+
x2: "10",
|
|
320
|
+
y2: "14",
|
|
321
|
+
id: "Path"
|
|
322
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
323
|
+
x1: "6",
|
|
324
|
+
y1: "10",
|
|
325
|
+
x2: "14",
|
|
326
|
+
y2: "10",
|
|
327
|
+
id: "Path"
|
|
328
|
+
}))));
|
|
329
|
+
};
|
|
330
|
+
const TVIcon = ({
|
|
331
|
+
color,
|
|
332
|
+
size
|
|
333
|
+
}) => {
|
|
334
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
335
|
+
width: `${size ?? 14}px`,
|
|
336
|
+
height: `${size ?? 14}px`,
|
|
337
|
+
viewBox: "0 0 22 22",
|
|
338
|
+
version: "1.1",
|
|
339
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
340
|
+
}, /*#__PURE__*/React.createElement("title", null, "tv"), /*#__PURE__*/React.createElement("g", {
|
|
341
|
+
id: "Page-1",
|
|
342
|
+
stroke: "none",
|
|
343
|
+
"stroke-width": "1",
|
|
344
|
+
fill: "none",
|
|
345
|
+
"fill-rule": "evenodd",
|
|
346
|
+
"stroke-linecap": "round",
|
|
347
|
+
"stroke-linejoin": "round"
|
|
348
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
349
|
+
id: "tv-(1)",
|
|
350
|
+
transform: "translate(1.000000, 1.000000)",
|
|
351
|
+
stroke: color,
|
|
352
|
+
"stroke-width": "2"
|
|
353
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
354
|
+
id: "Rectangle",
|
|
355
|
+
x: "0",
|
|
356
|
+
y: "5",
|
|
357
|
+
width: "20",
|
|
358
|
+
height: "15",
|
|
359
|
+
rx: "2"
|
|
360
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
361
|
+
id: "Path",
|
|
362
|
+
points: "15 0 10 5 5 0"
|
|
363
|
+
}))));
|
|
364
|
+
};
|
|
365
|
+
const AwardRibbonIcon = ({
|
|
366
|
+
color,
|
|
367
|
+
size
|
|
368
|
+
}) => {
|
|
369
|
+
const ratio = 0.666667;
|
|
370
|
+
const height = size ?? 14;
|
|
371
|
+
const width = height * ratio;
|
|
372
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
373
|
+
width: `${width}px`,
|
|
374
|
+
height: `${height}px`,
|
|
375
|
+
viewBox: "0 0 16 24",
|
|
376
|
+
version: "1.1",
|
|
377
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
378
|
+
}, /*#__PURE__*/React.createElement("title", null, "award"), /*#__PURE__*/React.createElement("g", {
|
|
379
|
+
id: "Page-1",
|
|
380
|
+
stroke: "none",
|
|
381
|
+
"stroke-width": "1",
|
|
382
|
+
fill: "none",
|
|
383
|
+
"fill-rule": "evenodd",
|
|
384
|
+
"stroke-linecap": "round",
|
|
385
|
+
"stroke-linejoin": "round"
|
|
386
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
387
|
+
id: "award",
|
|
388
|
+
transform: "translate(1.000000, 1.000000)",
|
|
389
|
+
stroke: color ?? Colors.brand.midnight,
|
|
390
|
+
"stroke-width": "2"
|
|
391
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
392
|
+
id: "Oval",
|
|
393
|
+
cx: "7",
|
|
394
|
+
cy: "7",
|
|
395
|
+
r: "7"
|
|
396
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
397
|
+
id: "Path",
|
|
398
|
+
points: "3.21 12.89 2 22 7 19 12 22 10.79 12.88"
|
|
399
|
+
}))));
|
|
400
|
+
};
|
|
401
|
+
const PacerCarIcon = ({
|
|
402
|
+
size,
|
|
403
|
+
color
|
|
404
|
+
}) => {
|
|
405
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
406
|
+
width: `${size ?? 40}px`,
|
|
407
|
+
height: `${size ?? 40}px`,
|
|
408
|
+
viewBox: "0 0 42 42",
|
|
409
|
+
version: "1.1",
|
|
410
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
411
|
+
}, /*#__PURE__*/React.createElement("title", null, "car-salesman-service-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
412
|
+
id: "Page-1",
|
|
413
|
+
stroke: "none",
|
|
414
|
+
"stroke-width": "1",
|
|
415
|
+
fill: "none",
|
|
416
|
+
"fill-rule": "evenodd",
|
|
417
|
+
"stroke-linecap": "round",
|
|
418
|
+
"stroke-linejoin": "round"
|
|
419
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
420
|
+
id: "car-salesman-service-svgrepo-com",
|
|
421
|
+
transform: "translate(1.000000, 1.000000)",
|
|
422
|
+
stroke: color ?? Colors.brand.midnight,
|
|
423
|
+
"stroke-width": "2"
|
|
424
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
425
|
+
d: "M15.1724138,35.862069 L15.1724138,38.6206897 C15.1724138,39.3834483 14.5558621,40 13.7931034,40 L11.0344828,40",
|
|
426
|
+
id: "XMLID_336_"
|
|
427
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
428
|
+
d: "M38.6206897,35.862069 L38.6206897,38.6206897 C38.6206897,39.3834483 38.0041379,40 37.2413793,40 L35.862069,40 C35.0993103,40 34.4827586,39.3834483 34.4827586,38.6206897 L34.4827586,35.862069",
|
|
429
|
+
id: "XMLID_6229_"
|
|
430
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
431
|
+
x1: "40",
|
|
432
|
+
y1: "35.862069",
|
|
433
|
+
x2: "13.7931034",
|
|
434
|
+
y2: "35.862069",
|
|
435
|
+
id: "XMLID_5901_"
|
|
436
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
437
|
+
d: "M13.7875862,26.7944828 C16.1531034,26.3489655 19.697931,26.2068966 24.8275862,26.2068966 C36.5517241,26.2068966 40,27.0110345 40,30.3448276 L40,31.9834483",
|
|
438
|
+
id: "XMLID_5891_"
|
|
439
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
440
|
+
d: "M34.4827586,33.1034483 L34.4827586,31.7241379 C34.4827586,30.9655172 35.1034483,30.3448276 35.862069,30.3448276 L40,30.3448276 L40,33.1034483 L34.4827586,33.1034483 Z",
|
|
441
|
+
id: "XMLID_351_"
|
|
442
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
443
|
+
d: "M13.1034483,30.3448276 L13.7931034,30.3448276 C14.5517241,30.3448276 15.1724138,30.9655172 15.1724138,31.7241379 L15.1724138,33.1034483 L11.0344828,33.1034483",
|
|
444
|
+
id: "XMLID_337_"
|
|
445
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
446
|
+
d: "M17.9310345,33.1034483 L17.9310345,33.1034483 C17.9310345,31.5806897 19.1668966,30.3448276 20.6896552,30.3448276 L28.9655172,30.3448276 C30.4882759,30.3448276 31.7241379,31.5806897 31.7241379,33.1034483 L31.7241379,33.1034483",
|
|
447
|
+
id: "XMLID_5872_"
|
|
448
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
449
|
+
d: "M37.3365517,27.1806897 L34.9241379,19.9310345 C34.6744828,19.2 33.8744828,18.5241379 33.1158621,18.4275862 C31.4758621,18.2206897 28.4675862,17.9310345 24.8262069,17.9310345 C21.1848276,17.9310345 18.177931,18.2206897 16.5365517,18.4275862 C15.777931,18.5241379 14.977931,19.2 14.7282759,19.9310345 L13.56,23.4482759",
|
|
450
|
+
id: "XMLID_341_"
|
|
451
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
452
|
+
d: "M11.0344828,40 L11.0344828,17.9310345 L11.0344828,17.9310345 C12.0537931,17.9310345 12.9448276,17.377931 13.422069,16.5544828 C13.657931,16.1475862 13.7931034,15.6758621 13.7931034,15.1724138 L13.7931034,13.1034483 C13.7931034,11.2068966 12.2413793,9.65517241 10.3448276,9.65517241 L3.44827586,9.65517241 C1.54344828,9.65517241 0,11.1986207 0,13.1034483 L0,15.1724138 C0,16.6951724 1.23586207,17.9310345 2.75862069,17.9310345 L2.75862069,17.9310345 L2.75862069,24.8275862 L0,40",
|
|
453
|
+
id: "XMLID_6327_"
|
|
454
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
455
|
+
id: "XMLID_6326_",
|
|
456
|
+
cx: "6.89655172",
|
|
457
|
+
cy: "3.44827586",
|
|
458
|
+
r: "3.44827586"
|
|
459
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
460
|
+
id: "XMLID_6270_",
|
|
461
|
+
transform: "translate(2.758621, 13.543448)"
|
|
462
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
463
|
+
d: "M8.27586207,2.31862069 L8.27586207,1.87862069 C8.27586207,1.0262069 7.51034483,0.376551724 6.67034483,0.51862069 L1.60551724,1.36137931 C0.765517241,1.50068966 0,0.853793103 0,-2.84217094e-15",
|
|
464
|
+
id: "XMLID_6276_"
|
|
465
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
466
|
+
id: "XMLID_6274_",
|
|
467
|
+
points: "5.51724138 26.4565517 4.13793103 10.5944828 0 26.4565517"
|
|
468
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
469
|
+
x1: "2.75862069",
|
|
470
|
+
y1: "4.38758621",
|
|
471
|
+
x2: "8.27586207",
|
|
472
|
+
y2: "4.38758621",
|
|
473
|
+
id: "XMLID_6271_"
|
|
474
|
+
})))));
|
|
475
|
+
};
|
|
476
|
+
const ShareSocialIcon = ({
|
|
477
|
+
size,
|
|
478
|
+
color
|
|
479
|
+
}) => {
|
|
480
|
+
const ratio = 0.88;
|
|
481
|
+
let height = size ?? 14;
|
|
482
|
+
let width = height * ratio;
|
|
483
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
484
|
+
width: `${width}px`,
|
|
485
|
+
height: `${height}px`,
|
|
486
|
+
viewBox: "0 0 22 25",
|
|
487
|
+
version: "1.1",
|
|
488
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
489
|
+
}, /*#__PURE__*/React.createElement("title", null, "share-social-outline"), /*#__PURE__*/React.createElement("g", {
|
|
490
|
+
id: "Page-1",
|
|
491
|
+
stroke: "none",
|
|
492
|
+
"stroke-width": "1",
|
|
493
|
+
fill: "none",
|
|
494
|
+
"fill-rule": "evenodd",
|
|
495
|
+
"stroke-linecap": "round",
|
|
496
|
+
"stroke-linejoin": "round"
|
|
497
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
498
|
+
id: "share-social-outline",
|
|
499
|
+
transform: "translate(1.000000, 1.000000)",
|
|
500
|
+
stroke: color,
|
|
501
|
+
"stroke-width": "2"
|
|
502
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
503
|
+
id: "Oval",
|
|
504
|
+
cx: "2.5",
|
|
505
|
+
cy: "12.5",
|
|
506
|
+
r: "2.5"
|
|
507
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
508
|
+
id: "Oval",
|
|
509
|
+
cx: "17.5",
|
|
510
|
+
cy: "2.5",
|
|
511
|
+
r: "2.5"
|
|
512
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
513
|
+
id: "Oval",
|
|
514
|
+
cx: "17.5",
|
|
515
|
+
cy: "20.5",
|
|
516
|
+
r: "2.5"
|
|
517
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
518
|
+
d: "M5,12.9648875 L16,19 M16,4 L5,10.0351125",
|
|
519
|
+
id: "Shape"
|
|
520
|
+
}))));
|
|
521
|
+
};
|
|
522
|
+
const ChevronIcon = ({
|
|
523
|
+
size,
|
|
524
|
+
color,
|
|
525
|
+
direction
|
|
526
|
+
}) => {
|
|
527
|
+
const up_down_ratio = 9 / 6;
|
|
528
|
+
let up_down_height = 6;
|
|
529
|
+
let up_down_width = up_down_height * up_down_ratio;
|
|
530
|
+
let right_left_ratio = 5 / 9;
|
|
531
|
+
let right_left_height = 9;
|
|
532
|
+
let right_left_width = right_left_height * right_left_ratio;
|
|
533
|
+
if (size) {
|
|
534
|
+
if (['left', 'right'].includes(direction ?? 'right')) {
|
|
535
|
+
right_left_height = size;
|
|
536
|
+
right_left_width = right_left_height * right_left_ratio;
|
|
537
|
+
} else {
|
|
538
|
+
up_down_height = size;
|
|
539
|
+
up_down_width = up_down_height * up_down_ratio;
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
switch (direction) {
|
|
543
|
+
case 'up':
|
|
544
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
545
|
+
width: `${up_down_width}`,
|
|
546
|
+
height: `${up_down_height}`,
|
|
547
|
+
viewBox: "0 0 9 6",
|
|
548
|
+
version: "1.1",
|
|
549
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
550
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
551
|
+
id: "Page-1",
|
|
552
|
+
stroke: "none",
|
|
553
|
+
"stroke-width": "1",
|
|
554
|
+
fill: "none",
|
|
555
|
+
"fill-rule": "evenodd"
|
|
556
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
557
|
+
id: "Group",
|
|
558
|
+
transform: "translate(-0.000000, 0.000000)",
|
|
559
|
+
fill: color,
|
|
560
|
+
"fill-rule": "nonzero"
|
|
561
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
562
|
+
d: "M4.4298072,1.609187 L1.1298072,4.909187 C1.0040772,5.030627 0.835667203,5.097827 0.660877203,5.09633223 C0.486077203,5.094787 0.318868203,5.024677 0.195262203,4.901067 C0.0716572032,4.777467 0.00154420324,4.610257 -3.33066907e-16,4.435457 C-0.00149379676,4.260657 0.0657032032,4.092257 0.187141203,3.966527 L3.9584772,0.195191 C4.0834972,0.07021 4.2530372,-1.11022302e-16 4.4298072,-1.11022302e-16 C4.6065872,-1.11022302e-16 4.7761272,0.07021 4.9011372,0.195191 L8.6724772,3.966527 C8.7939172,4.092257 8.8611072,4.260657 8.85961244,4.435457 C8.8580772,4.610257 8.7879572,4.777467 8.6643572,4.901067 C8.5407472,5.024677 8.3735372,5.094787 8.1987472,5.09633223 C8.0239472,5.097827 7.8555472,5.030627 7.7298072,4.909187 L4.4298072,1.609187 L4.4298072,1.609187 Z",
|
|
563
|
+
id: "Path"
|
|
564
|
+
}))));
|
|
565
|
+
case 'down':
|
|
566
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
567
|
+
width: `${up_down_width}`,
|
|
568
|
+
height: `${up_down_height}`,
|
|
569
|
+
viewBox: "0 0 9 6",
|
|
570
|
+
version: "1.1",
|
|
571
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
572
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
573
|
+
id: "Page-1",
|
|
574
|
+
stroke: "none",
|
|
575
|
+
"stroke-width": "1",
|
|
576
|
+
fill: "none",
|
|
577
|
+
"fill-rule": "evenodd"
|
|
578
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
579
|
+
id: "Group",
|
|
580
|
+
transform: "translate(0.000000, 0.000000)",
|
|
581
|
+
fill: color,
|
|
582
|
+
"fill-rule": "nonzero"
|
|
583
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
584
|
+
d: "M4.44619516,3.50352216 L7.74619516,0.203525159 C7.80769516,0.139852159 7.88125516,0.0890631588 7.96259516,0.0541241588 C8.04392516,0.0191851588 8.13140516,0.000794158788 8.21992516,-5.55111512e-17 C8.30844516,-0.000743841212 8.39623516,0.0161231588 8.47816516,0.0496441588 C8.56009516,0.0831651588 8.63452516,0.132667159 8.69712516,0.195262159 C8.75971516,0.257857159 8.80922516,0.332291159 8.84274516,0.414222159 C8.87626516,0.496153159 8.89312516,0.583940159 8.89238975,0.672462159 C8.89159516,0.760982159 8.87320516,0.848462159 8.83826516,0.929792159 C8.80332516,1.01113216 8.75253516,1.08469216 8.68886516,1.14619216 L4.91752516,4.91752216 C4.79250516,5.04250216 4.62296516,5.11271216 4.44619516,5.11271216 C4.26941516,5.11271216 4.09987516,5.04250216 3.97485516,4.91752216 L0.203526157,1.14619216 C0.139852157,1.08469216 0.0890641574,1.01113216 0.0541251574,0.929792159 C0.0191851574,0.848462159 0.000795157381,0.760982159 0,0.672462159 C-0.000743842619,0.583940159 0.0161241574,0.496153159 0.0496451574,0.414222159 C0.0831651574,0.332291159 0.132667157,0.257857159 0.195262157,0.195262159 C0.257858157,0.132667159 0.332292157,0.0831651588 0.414225157,0.0496441588 C0.496155157,0.0161231588 0.583945157,-0.000743841212 0.672455157,-5.55111512e-17 C0.760975157,0.000794158788 0.848455157,0.0191851588 0.929795157,0.0541241588 C1.01113516,0.0890631588 1.08469516,0.139852159 1.14619516,0.203525159 L4.44619516,3.50352216 Z",
|
|
585
|
+
id: "Path"
|
|
586
|
+
}))));
|
|
587
|
+
case 'right':
|
|
588
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
589
|
+
width: `${right_left_width}`,
|
|
590
|
+
height: `${right_left_height}`,
|
|
591
|
+
viewBox: "0 0 5 9",
|
|
592
|
+
version: "1.1",
|
|
593
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
594
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
595
|
+
id: "Page-1",
|
|
596
|
+
stroke: "none",
|
|
597
|
+
"stroke-width": "1",
|
|
598
|
+
fill: "none",
|
|
599
|
+
"fill-rule": "evenodd"
|
|
600
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
601
|
+
id: "Group",
|
|
602
|
+
fill: color,
|
|
603
|
+
"fill-rule": "nonzero"
|
|
604
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
605
|
+
d: "M3.42628961,4.5083094 L0.199038607,1.1622094 C0.136769607,1.0998494 0.087100807,1.0252594 0.052931607,0.942785403 C0.018762407,0.860313403 0.000777086037,0.771610403 1.12960314e-16,0.681854403 C-0.000727827963,0.592098403 0.015768307,0.503086403 0.048549907,0.420010403 C0.081331507,0.336934403 0.129742607,0.261460403 0.190957607,0.197990403 C0.252172607,0.134520403 0.324966607,0.0843266034 0.405090607,0.0503376034 C0.485215607,0.0163486034 0.571066607,-0.00075456557 0.657634607,3.46944695e-16 C0.744202607,0.00080563043 0.829753607,0.0194538034 0.909296607,0.0548809034 C0.988838607,0.0903079034 1.06077961,0.141806403 1.12091961,0.206369403 L4.80910961,4.0303894 C4.93133961,4.1571494 5,4.3290594 5,4.5083094 C5,4.6875494 4.93133961,4.8594594 4.80910961,4.9862194 L1.12091961,8.8102394 C0.997960607,8.9333794 0.833271607,9.0015094 0.662327607,9 C0.491383607,8.9984294 0.327861607,8.9273394 0.206981607,8.8020094 C0.086101107,8.6766794 0.017533807,8.5071294 0.016048407,8.3298894 C0.014563107,8.1526494 0.080277907,7.9818994 0.199039607,7.8544094 L3.42628961,4.5083094 Z",
|
|
606
|
+
id: "Path"
|
|
607
|
+
}))));
|
|
608
|
+
case 'left':
|
|
609
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
610
|
+
width: `${right_left_width}`,
|
|
611
|
+
height: `${right_left_height}`,
|
|
612
|
+
viewBox: "0 0 5 9",
|
|
613
|
+
version: "1.1",
|
|
614
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
615
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
616
|
+
id: "Page-1",
|
|
617
|
+
stroke: "none",
|
|
618
|
+
"stroke-width": "1",
|
|
619
|
+
fill: "none",
|
|
620
|
+
"fill-rule": "evenodd"
|
|
621
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
622
|
+
id: "Group",
|
|
623
|
+
transform: "translate(0.000000, 0.000000)",
|
|
624
|
+
fill: color,
|
|
625
|
+
"fill-rule": "nonzero"
|
|
626
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
627
|
+
d: "M1.57371568,4.49170068 L4.80094025,7.83779879 C4.86321636,7.90017832 4.91289642,7.97472551 4.94708569,8.05722224 C4.98119672,8.13971897 4.99919107,8.22838064 5,8.31817797 C5.0007558,8.40789417 4.98424794,8.49696144 4.95146692,8.58002599 C4.9186859,8.66309054 4.87025763,8.73853003 4.80907683,8.80204521 C4.74781779,8.86547927 4.67505802,8.91569114 4.59494403,8.94967947 C4.5147518,8.9836678 4.42892657,9.00078364 4.3423972,9 C4.2557896,8.9992424 4.1702773,8.98058532 4.09071097,8.94513688 C4.01114464,8.90968843 3.93924546,8.85817867 3.87908174,8.79360896 L0.190888788,4.96963821 C0.0686601911,4.84285121 -6.94878077e-16,4.67096275 -6.94878077e-16,4.49170068 C-6.94878077e-16,4.31245484 0.0686601911,4.14054204 0.190888788,4.01377937 L3.87908174,0.189751841 C4.00206922,0.0666151323 4.16675667,-0.00151564628 4.33770302,0 C4.50864937,0.00156682733 4.67216327,0.0726584029 4.79303838,0.19798529 C4.91391349,0.32332029 4.9824485,0.49286445 4.98393499,0.670106683 C4.98542148,0.847348915 4.91970298,1.01810173 4.80094025,1.14559446 L1.57371568,4.49170068 Z",
|
|
628
|
+
id: "Path"
|
|
629
|
+
}))));
|
|
630
|
+
default:
|
|
631
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
632
|
+
width: `${up_down_width}`,
|
|
633
|
+
height: `${up_down_height}`,
|
|
634
|
+
viewBox: "0 0 9 6",
|
|
635
|
+
version: "1.1",
|
|
636
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
637
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
638
|
+
id: "Page-1",
|
|
639
|
+
stroke: "none",
|
|
640
|
+
"stroke-width": "1",
|
|
641
|
+
fill: "none",
|
|
642
|
+
"fill-rule": "evenodd"
|
|
643
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
644
|
+
id: "Group",
|
|
645
|
+
transform: "translate(-0.000000, 0.000000)",
|
|
646
|
+
fill: color,
|
|
647
|
+
"fill-rule": "nonzero"
|
|
648
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
649
|
+
d: "M4.4298072,1.609187 L1.1298072,4.909187 C1.0040772,5.030627 0.835667203,5.097827 0.660877203,5.09633223 C0.486077203,5.094787 0.318868203,5.024677 0.195262203,4.901067 C0.0716572032,4.777467 0.00154420324,4.610257 -3.33066907e-16,4.435457 C-0.00149379676,4.260657 0.0657032032,4.092257 0.187141203,3.966527 L3.9584772,0.195191 C4.0834972,0.07021 4.2530372,-1.11022302e-16 4.4298072,-1.11022302e-16 C4.6065872,-1.11022302e-16 4.7761272,0.07021 4.9011372,0.195191 L8.6724772,3.966527 C8.7939172,4.092257 8.8611072,4.260657 8.85961244,4.435457 C8.8580772,4.610257 8.7879572,4.777467 8.6643572,4.901067 C8.5407472,5.024677 8.3735372,5.094787 8.1987472,5.09633223 C8.0239472,5.097827 7.8555472,5.030627 7.7298072,4.909187 L4.4298072,1.609187 L4.4298072,1.609187 Z",
|
|
650
|
+
id: "Path"
|
|
651
|
+
}))));
|
|
652
|
+
}
|
|
653
|
+
};
|
|
654
|
+
const PayPalIcon = ({}) => {
|
|
655
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
656
|
+
width: "101px",
|
|
657
|
+
height: "32",
|
|
658
|
+
viewBox: "0 0 101 32",
|
|
659
|
+
preserveAspectRatio: "xMinYMin meet",
|
|
660
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
661
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
662
|
+
fill: "#003087",
|
|
663
|
+
d: "M 12.237 2.8 L 4.437 2.8 C 3.937 2.8 3.437 3.2 3.337 3.7 L 0.237 23.7 C 0.137 24.1 0.437 24.4 0.837 24.4 L 4.537 24.4 C 5.037 24.4 5.537 24 5.637 23.5 L 6.437 18.1 C 6.537 17.6 6.937 17.2 7.537 17.2 L 10.037 17.2 C 15.137 17.2 18.137 14.7 18.937 9.8 C 19.237 7.7 18.937 6 17.937 4.8 C 16.837 3.5 14.837 2.8 12.237 2.8 Z M 13.137 10.1 C 12.737 12.9 10.537 12.9 8.537 12.9 L 7.337 12.9 L 8.137 7.7 C 8.137 7.4 8.437 7.2 8.737 7.2 L 9.237 7.2 C 10.637 7.2 11.937 7.2 12.637 8 C 13.137 8.4 13.337 9.1 13.137 10.1 Z"
|
|
664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
665
|
+
fill: "#003087",
|
|
666
|
+
d: "M 35.437 10 L 31.737 10 C 31.437 10 31.137 10.2 31.137 10.5 L 30.937 11.5 L 30.637 11.1 C 29.837 9.9 28.037 9.5 26.237 9.5 C 22.137 9.5 18.637 12.6 17.937 17 C 17.537 19.2 18.037 21.3 19.337 22.7 C 20.437 24 22.137 24.6 24.037 24.6 C 27.337 24.6 29.237 22.5 29.237 22.5 L 29.037 23.5 C 28.937 23.9 29.237 24.3 29.637 24.3 L 33.037 24.3 C 33.537 24.3 34.037 23.9 34.137 23.4 L 36.137 10.6 C 36.237 10.4 35.837 10 35.437 10 Z M 30.337 17.2 C 29.937 19.3 28.337 20.8 26.137 20.8 C 25.037 20.8 24.237 20.5 23.637 19.8 C 23.037 19.1 22.837 18.2 23.037 17.2 C 23.337 15.1 25.137 13.6 27.237 13.6 C 28.337 13.6 29.137 14 29.737 14.6 C 30.237 15.3 30.437 16.2 30.337 17.2 Z"
|
|
667
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
668
|
+
fill: "#003087",
|
|
669
|
+
d: "M 55.337 10 L 51.637 10 C 51.237 10 50.937 10.2 50.737 10.5 L 45.537 18.1 L 43.337 10.8 C 43.237 10.3 42.737 10 42.337 10 L 38.637 10 C 38.237 10 37.837 10.4 38.037 10.9 L 42.137 23 L 38.237 28.4 C 37.937 28.8 38.237 29.4 38.737 29.4 L 42.437 29.4 C 42.837 29.4 43.137 29.2 43.337 28.9 L 55.837 10.9 C 56.137 10.6 55.837 10 55.337 10 Z"
|
|
670
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
671
|
+
fill: "#009cde",
|
|
672
|
+
d: "M 67.737 2.8 L 59.937 2.8 C 59.437 2.8 58.937 3.2 58.837 3.7 L 55.737 23.6 C 55.637 24 55.937 24.3 56.337 24.3 L 60.337 24.3 C 60.737 24.3 61.037 24 61.037 23.7 L 61.937 18 C 62.037 17.5 62.437 17.1 63.037 17.1 L 65.537 17.1 C 70.637 17.1 73.637 14.6 74.437 9.7 C 74.737 7.6 74.437 5.9 73.437 4.7 C 72.237 3.5 70.337 2.8 67.737 2.8 Z M 68.637 10.1 C 68.237 12.9 66.037 12.9 64.037 12.9 L 62.837 12.9 L 63.637 7.7 C 63.637 7.4 63.937 7.2 64.237 7.2 L 64.737 7.2 C 66.137 7.2 67.437 7.2 68.137 8 C 68.637 8.4 68.737 9.1 68.637 10.1 Z"
|
|
673
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
674
|
+
fill: "#009cde",
|
|
675
|
+
d: "M 90.937 10 L 87.237 10 C 86.937 10 86.637 10.2 86.637 10.5 L 86.437 11.5 L 86.137 11.1 C 85.337 9.9 83.537 9.5 81.737 9.5 C 77.637 9.5 74.137 12.6 73.437 17 C 73.037 19.2 73.537 21.3 74.837 22.7 C 75.937 24 77.637 24.6 79.537 24.6 C 82.837 24.6 84.737 22.5 84.737 22.5 L 84.537 23.5 C 84.437 23.9 84.737 24.3 85.137 24.3 L 88.537 24.3 C 89.037 24.3 89.537 23.9 89.637 23.4 L 91.637 10.6 C 91.637 10.4 91.337 10 90.937 10 Z M 85.737 17.2 C 85.337 19.3 83.737 20.8 81.537 20.8 C 80.437 20.8 79.637 20.5 79.037 19.8 C 78.437 19.1 78.237 18.2 78.437 17.2 C 78.737 15.1 80.537 13.6 82.637 13.6 C 83.737 13.6 84.537 14 85.137 14.6 C 85.737 15.3 85.937 16.2 85.737 17.2 Z"
|
|
676
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
677
|
+
fill: "#009cde",
|
|
678
|
+
d: "M 95.337 3.3 L 92.137 23.6 C 92.037 24 92.337 24.3 92.737 24.3 L 95.937 24.3 C 96.437 24.3 96.937 23.9 97.037 23.4 L 100.237 3.5 C 100.337 3.1 100.037 2.8 99.637 2.8 L 96.037 2.8 C 95.637 2.8 95.437 3 95.337 3.3 Z"
|
|
679
|
+
}));
|
|
680
|
+
};
|
|
681
|
+
const CreditCardIcon = ({
|
|
682
|
+
size,
|
|
683
|
+
color
|
|
684
|
+
}) => {
|
|
685
|
+
let ratio = 0.75;
|
|
686
|
+
let width = size ?? 24;
|
|
687
|
+
let height = width * ratio;
|
|
688
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
689
|
+
width: `${width}px`,
|
|
690
|
+
height: `${height}px`,
|
|
691
|
+
viewBox: "0 0 24 18",
|
|
692
|
+
version: "1.1",
|
|
693
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
694
|
+
}, /*#__PURE__*/React.createElement("title", null, "credit-card"), /*#__PURE__*/React.createElement("g", {
|
|
695
|
+
id: "Images",
|
|
696
|
+
stroke: "none",
|
|
697
|
+
"stroke-width": "1",
|
|
698
|
+
fill: "none",
|
|
699
|
+
"fill-rule": "evenodd",
|
|
700
|
+
"stroke-linecap": "round",
|
|
701
|
+
"stroke-linejoin": "round"
|
|
702
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
703
|
+
id: "credit-card",
|
|
704
|
+
transform: "translate(1.000000, 1.000000)",
|
|
705
|
+
stroke: color,
|
|
706
|
+
"stroke-width": "2"
|
|
707
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
708
|
+
id: "Rectangle",
|
|
709
|
+
x: "0",
|
|
710
|
+
y: "0",
|
|
711
|
+
width: "22",
|
|
712
|
+
height: "16",
|
|
713
|
+
rx: "2"
|
|
714
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
715
|
+
x1: "0",
|
|
716
|
+
y1: "6",
|
|
717
|
+
x2: "22",
|
|
718
|
+
y2: "6",
|
|
719
|
+
id: "Path"
|
|
720
|
+
}))));
|
|
721
|
+
};
|
|
722
|
+
const BankIcon = ({
|
|
723
|
+
size,
|
|
724
|
+
color
|
|
725
|
+
}) => {
|
|
726
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
727
|
+
width: `${size ?? 33}px`,
|
|
728
|
+
height: `${size ?? 33}px`,
|
|
729
|
+
viewBox: "0 0 33 33",
|
|
730
|
+
version: "1.1",
|
|
731
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
732
|
+
}, /*#__PURE__*/React.createElement("title", null, "bank-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
733
|
+
id: "Images",
|
|
734
|
+
stroke: "none",
|
|
735
|
+
"stroke-width": "1",
|
|
736
|
+
fill: "none",
|
|
737
|
+
"fill-rule": "evenodd",
|
|
738
|
+
"stroke-linecap": "round",
|
|
739
|
+
"stroke-linejoin": "round"
|
|
740
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
741
|
+
id: "bank-svgrepo-com",
|
|
742
|
+
transform: "translate(2.000000, 2.000000)",
|
|
743
|
+
stroke: color,
|
|
744
|
+
"stroke-width": "2.666667"
|
|
745
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
746
|
+
d: "M0,29.2622951 L29,29.2622951 M1.5,24.3442623 L27.5,24.3442623 M4.75,23.5901639 L4.75,15.7213115 M11.25,23.5901639 L11.25,15.7213115 M17.75,23.5901639 L17.75,15.7213115 M24.25,23.5901639 L24.25,15.7213115 M29,11.8032787 L17.9252222,1.9561866 C16.7131833,0.878592829 16.1072444,0.339812056 15.4234889,0.135190751 C14.8209333,-0.0450635838 14.1790667,-0.0450635838 13.5765111,0.135190751 C12.8927556,0.339812056 12.2868167,0.878592829 11.0748422,1.9561866 L0,11.8032787 L29,11.8032787 Z",
|
|
747
|
+
id: "Shape"
|
|
748
|
+
}))));
|
|
749
|
+
};
|
|
750
|
+
const BankInstantIcon = ({
|
|
751
|
+
color,
|
|
752
|
+
size
|
|
753
|
+
}) => {
|
|
754
|
+
let width = size ?? 42;
|
|
755
|
+
let height = width * .92857;
|
|
756
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
757
|
+
width: `${width}px`,
|
|
758
|
+
height: `${height}px`,
|
|
759
|
+
viewBox: "0 0 42 39",
|
|
760
|
+
version: "1.1",
|
|
761
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
762
|
+
}, /*#__PURE__*/React.createElement("title", null, "bank_icon"), /*#__PURE__*/React.createElement("g", {
|
|
763
|
+
id: "Page-1",
|
|
764
|
+
stroke: "none",
|
|
765
|
+
"stroke-width": "1",
|
|
766
|
+
fill: "none",
|
|
767
|
+
"fill-rule": "evenodd"
|
|
768
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
769
|
+
id: "bank_icon",
|
|
770
|
+
transform: "translate(4.000000, 1.370506)",
|
|
771
|
+
stroke: color
|
|
772
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
773
|
+
d: "M0,35.8917894 L29,35.8917894 M1.5,30.9737566 L27.5,30.9737566 M4.75,30.2196582 L4.75,22.3508058 M11.25,30.2196582 L11.25,22.3508058 M17.75,30.2196582 L17.75,22.3508058 M24.25,30.2196582 L24.25,22.3508058 M29,18.432773 L17.9252222,8.58568093 C16.7131833,7.50808716 16.1072444,6.96930639 15.4234889,6.76468508 C14.8209333,6.58443075 14.1790667,6.58443075 13.5765111,6.76468508 C12.8927556,6.96930639 12.2868167,7.50808716 11.0748422,8.58568093 L0,18.432773 L29,18.432773 Z",
|
|
774
|
+
id: "Shape",
|
|
775
|
+
"stroke-width": "2.666667"
|
|
776
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
777
|
+
id: "zap",
|
|
778
|
+
transform: "translate(30.500000, 10.629494) rotate(10.000000) translate(-30.500000, -10.629494) translate(26.000000, 0.629494)",
|
|
779
|
+
"stroke-linecap": "round",
|
|
780
|
+
"stroke-linejoin": "round",
|
|
781
|
+
"stroke-width": "2"
|
|
782
|
+
}, /*#__PURE__*/React.createElement("polygon", {
|
|
783
|
+
id: "Path",
|
|
784
|
+
points: "0 12 4.5 12 4 20 9 8 4.5 8 5 1.13686838e-13"
|
|
785
|
+
})))));
|
|
786
|
+
};
|
|
787
|
+
const DepositIcon = ({
|
|
788
|
+
color,
|
|
789
|
+
size
|
|
790
|
+
}) => {
|
|
791
|
+
let width = size ?? 20;
|
|
792
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
793
|
+
width: `${width}px`,
|
|
794
|
+
height: `${width}px`,
|
|
795
|
+
viewBox: "0 0 23 24",
|
|
796
|
+
version: "1.1",
|
|
797
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
798
|
+
}, /*#__PURE__*/React.createElement("title", null, "dollar-sign (1)"), /*#__PURE__*/React.createElement("g", {
|
|
799
|
+
id: "Images",
|
|
800
|
+
stroke: "none",
|
|
801
|
+
"stroke-width": "1",
|
|
802
|
+
fill: "none",
|
|
803
|
+
"fill-rule": "evenodd"
|
|
804
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
805
|
+
id: "dollar-sign-(1)",
|
|
806
|
+
transform: "translate(1.000000, 1.000000)",
|
|
807
|
+
stroke: color,
|
|
808
|
+
"stroke-width": "2"
|
|
809
|
+
}, /*#__PURE__*/React.createElement("line", {
|
|
810
|
+
x1: "11.5",
|
|
811
|
+
y1: "6",
|
|
812
|
+
x2: "11.5",
|
|
813
|
+
y2: "19",
|
|
814
|
+
id: "Path",
|
|
815
|
+
"stroke-linecap": "round",
|
|
816
|
+
"stroke-linejoin": "round"
|
|
817
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
818
|
+
d: "M14.4166667,9 L10.0416667,9 C8.91408531,9 8,9.8954305 8,11 C8,12.1045695 8.91408531,13 10.0416667,13 L12.9583334,13 C14.0859147,13 15,13.8954305 15,15 C15,16.1045695 14.0859147,17 12.9583334,17 L8,17",
|
|
819
|
+
id: "Path",
|
|
820
|
+
"stroke-linecap": "round",
|
|
821
|
+
"stroke-linejoin": "round"
|
|
822
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
823
|
+
id: "Oval",
|
|
824
|
+
cx: "11.5",
|
|
825
|
+
cy: "12.5",
|
|
826
|
+
r: "9.5"
|
|
827
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
828
|
+
x1: "0.5",
|
|
829
|
+
y1: "2.5",
|
|
830
|
+
x2: "4.5",
|
|
831
|
+
y2: "2.5",
|
|
832
|
+
id: "Line",
|
|
833
|
+
"stroke-linecap": "square"
|
|
834
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
835
|
+
x1: "2.5",
|
|
836
|
+
y1: "4.5",
|
|
837
|
+
x2: "2.5",
|
|
838
|
+
y2: "0.5",
|
|
839
|
+
id: "Line-2",
|
|
840
|
+
"stroke-linecap": "square"
|
|
841
|
+
}))));
|
|
842
|
+
};
|
|
843
|
+
const WithdrawIcon = ({
|
|
844
|
+
color,
|
|
845
|
+
size
|
|
846
|
+
}) => {
|
|
847
|
+
let width = size ?? 20;
|
|
848
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
849
|
+
width: `${width}px`,
|
|
850
|
+
height: `${width - 1}px`,
|
|
851
|
+
viewBox: "0 0 24 22",
|
|
852
|
+
version: "1.1",
|
|
853
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
854
|
+
}, /*#__PURE__*/React.createElement("title", null, "dollar-sign (1)"), /*#__PURE__*/React.createElement("g", {
|
|
855
|
+
id: "Images",
|
|
856
|
+
stroke: "none",
|
|
857
|
+
"stroke-width": "1",
|
|
858
|
+
fill: "none",
|
|
859
|
+
"fill-rule": "evenodd"
|
|
860
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
861
|
+
id: "dollar-sign-(1)",
|
|
862
|
+
transform: "translate(1.000000, 1.000000)",
|
|
863
|
+
stroke: color,
|
|
864
|
+
"stroke-width": "2"
|
|
865
|
+
}, /*#__PURE__*/React.createElement("line", {
|
|
866
|
+
x1: "12.5",
|
|
867
|
+
y1: "4",
|
|
868
|
+
x2: "12.5",
|
|
869
|
+
y2: "17",
|
|
870
|
+
id: "Path",
|
|
871
|
+
"stroke-linecap": "round",
|
|
872
|
+
"stroke-linejoin": "round"
|
|
873
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
874
|
+
d: "M15.4166667,7 L11.0416667,7 C9.91408531,7 9,7.8954305 9,9 C9,10.1045695 9.91408531,11 11.0416667,11 L13.9583334,11 C15.0859147,11 16,11.8954305 16,13 C16,14.1045695 15.0859147,15 13.9583334,15 L9,15",
|
|
875
|
+
id: "Path",
|
|
876
|
+
"stroke-linecap": "round",
|
|
877
|
+
"stroke-linejoin": "round"
|
|
878
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
879
|
+
id: "Oval",
|
|
880
|
+
cx: "12.5",
|
|
881
|
+
cy: "10.5",
|
|
882
|
+
r: "9.5"
|
|
883
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
884
|
+
x1: "0.5",
|
|
885
|
+
y1: "0.5",
|
|
886
|
+
x2: "5.5",
|
|
887
|
+
y2: "0.5",
|
|
888
|
+
id: "Line",
|
|
889
|
+
"stroke-linecap": "square"
|
|
890
|
+
}))));
|
|
891
|
+
};
|
|
892
|
+
const SnoozeIcon = ({
|
|
893
|
+
color,
|
|
894
|
+
size
|
|
895
|
+
}) => {
|
|
896
|
+
let ratio = 0.912;
|
|
897
|
+
let height = size ?? 34;
|
|
898
|
+
let width = height * ratio;
|
|
899
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
900
|
+
width: `${width}px`,
|
|
901
|
+
height: `${height}px`,
|
|
902
|
+
viewBox: "0 0 31 34",
|
|
903
|
+
version: "1.1",
|
|
904
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
905
|
+
}, /*#__PURE__*/React.createElement("title", null, "sleep-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
906
|
+
id: "Images",
|
|
907
|
+
stroke: "none",
|
|
908
|
+
"stroke-width": "1",
|
|
909
|
+
fill: "none",
|
|
910
|
+
"fill-rule": "evenodd",
|
|
911
|
+
"stroke-linecap": "round",
|
|
912
|
+
"stroke-linejoin": "round"
|
|
913
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
914
|
+
id: "sleep-svgrepo-com",
|
|
915
|
+
transform: "translate(1.000000, 1.000000)",
|
|
916
|
+
stroke: color,
|
|
917
|
+
"stroke-width": "2"
|
|
918
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
919
|
+
d: "M0,0 L13.518797,0 L0,16 L13.518797,16 M18.9699248,10.8108108 L29,10.8108108 L18.9699248,22.7027027 L29,22.7027027 M5.23308271,22.7027027 L13.0827068,22.7027027 L5.23308271,32 L13.0827068,32",
|
|
920
|
+
id: "Shape"
|
|
921
|
+
}))));
|
|
922
|
+
};
|
|
923
|
+
const MoreIcon = ({
|
|
924
|
+
color,
|
|
925
|
+
direction,
|
|
926
|
+
size
|
|
927
|
+
}) => {
|
|
928
|
+
let ratio = 4;
|
|
929
|
+
let height = size ?? 24;
|
|
930
|
+
let width = height / ratio;
|
|
931
|
+
if (['up', 'down'].includes(direction ?? 'up')) {
|
|
932
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
933
|
+
width: `${width}px`,
|
|
934
|
+
height: `${height}px`,
|
|
935
|
+
viewBox: "0 0 6 24",
|
|
936
|
+
version: "1.1",
|
|
937
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
938
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
939
|
+
id: "Page-1",
|
|
940
|
+
stroke: "none",
|
|
941
|
+
"stroke-width": "1",
|
|
942
|
+
fill: "none",
|
|
943
|
+
"fill-rule": "evenodd"
|
|
944
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
945
|
+
id: "Group",
|
|
946
|
+
transform: "translate(0.000000, 0.000000)",
|
|
947
|
+
fill: color,
|
|
948
|
+
"fill-rule": "nonzero"
|
|
949
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
950
|
+
d: "M-6,15 C-6.79565,15 -7.55871,14.6839259 -8.12132,14.1213159 C-8.68393,13.5587159 -9,12.7956459 -9,12 C-9,11.2043459 -8.68393,10.4412859 -8.12132,9.87867986 C-7.55871,9.31607086 -6.79565,9 -6,9 C-5.20435,9 -4.44129,9.31607086 -3.87868,9.87867986 C-3.31607,10.4412859 -3,11.2043459 -3,12 C-3,12.7956459 -3.31607,13.5587159 -3.87868,14.1213159 C-4.44129,14.6839259 -5.20435,15 -6,15 Z M12,15 C11.2044,15 10.4413,14.6839259 9.8787,14.1213159 C9.3161,13.5587159 9,12.7956459 9,12 C9,11.2043459 9.3161,10.4412859 9.8787,9.87867986 C10.4413,9.31607086 11.2044,9 12,9 C12.7956,9 13.5587,9.31607086 14.1213,9.87867986 C14.6839,10.4412859 15,11.2043459 15,12 C15,12.7956459 14.6839,13.5587159 14.1213,14.1213159 C13.5587,14.6839259 12.7956,15 12,15 Z M3,15 C2.2044,15 1.4413,14.6839259 0.87868,14.1213159 C0.31607,13.5587159 0,12.7956459 0,12 C0,11.2043459 0.31607,10.4412859 0.87868,9.87867986 C1.4413,9.31607086 2.2044,9 3,9 C3.7956,9 4.5587,9.31607086 5.1213,9.87867986 C5.6839,10.4412859 6,11.2043459 6,12 C6,12.7956459 5.6839,13.5587159 5.1213,14.1213159 C4.5587,14.6839259 3.7956,15 3,15 Z",
|
|
951
|
+
id: "Shape",
|
|
952
|
+
transform: "translate(3.000000, 12.000000) rotate(90.000000) translate(-3.000000, -12.000000) "
|
|
953
|
+
}))));
|
|
954
|
+
}
|
|
955
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
956
|
+
width: `${height}px`,
|
|
957
|
+
height: `${width}px`,
|
|
958
|
+
viewBox: "0 0 24 6",
|
|
959
|
+
version: "1.1",
|
|
960
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
961
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
962
|
+
id: "Page-1",
|
|
963
|
+
stroke: "none",
|
|
964
|
+
"stroke-width": "1",
|
|
965
|
+
fill: "none",
|
|
966
|
+
"fill-rule": "evenodd"
|
|
967
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
968
|
+
id: "Group",
|
|
969
|
+
fill: color,
|
|
970
|
+
"fill-rule": "nonzero"
|
|
971
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
972
|
+
d: "M3,6 C2.20435,6 1.44129,5.68392586 0.87868,5.12131586 C0.31607,4.55871586 0,3.79564586 0,3 C0,2.20434586 0.31607,1.44128586 0.87868,0.878679859 C1.44129,0.316070859 2.20435,0 3,0 C3.79565,0 4.55871,0.316070859 5.12132,0.878679859 C5.68393,1.44128586 6,2.20434586 6,3 C6,3.79564586 5.68393,4.55871586 5.12132,5.12131586 C4.55871,5.68392586 3.79565,6 3,6 Z M21,6 C20.2044,6 19.4413,5.68392586 18.8787,5.12131586 C18.3161,4.55871586 18,3.79564586 18,3 C18,2.20434586 18.3161,1.44128586 18.8787,0.878679859 C19.4413,0.316070859 20.2044,0 21,0 C21.7956,0 22.5587,0.316070859 23.1213,0.878679859 C23.6839,1.44128586 24,2.20434586 24,3 C24,3.79564586 23.6839,4.55871586 23.1213,5.12131586 C22.5587,5.68392586 21.7956,6 21,6 Z M12,6 C11.2044,6 10.4413,5.68392586 9.87868,5.12131586 C9.31607,4.55871586 9,3.79564586 9,3 C9,2.20434586 9.31607,1.44128586 9.87868,0.878679859 C10.4413,0.316070859 11.2044,0 12,0 C12.7956,0 13.5587,0.316070859 14.1213,0.878679859 C14.6839,1.44128586 15,2.20434586 15,3 C15,3.79564586 14.6839,4.55871586 14.1213,5.12131586 C13.5587,5.68392586 12.7956,6 12,6 Z",
|
|
973
|
+
id: "Shape"
|
|
974
|
+
}))));
|
|
975
|
+
};
|
|
976
|
+
const MenuIcon = ({
|
|
977
|
+
color
|
|
978
|
+
}) => {
|
|
979
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
980
|
+
width: "20px",
|
|
981
|
+
height: "15px",
|
|
982
|
+
viewBox: "0 0 20 15",
|
|
983
|
+
version: "1.1",
|
|
984
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
985
|
+
}, /*#__PURE__*/React.createElement("title", null, "menu"), /*#__PURE__*/React.createElement("g", {
|
|
986
|
+
id: "Page-1",
|
|
987
|
+
stroke: "none",
|
|
988
|
+
"stroke-width": "1",
|
|
989
|
+
fill: "none",
|
|
990
|
+
"fill-rule": "evenodd",
|
|
991
|
+
"stroke-linecap": "round",
|
|
992
|
+
"stroke-linejoin": "round"
|
|
993
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
994
|
+
id: "menu",
|
|
995
|
+
transform: "translate(1.000000, 1.000000)",
|
|
996
|
+
stroke: color,
|
|
997
|
+
"stroke-width": "2"
|
|
998
|
+
}, /*#__PURE__*/React.createElement("line", {
|
|
999
|
+
x1: "0",
|
|
1000
|
+
y1: "6.5",
|
|
1001
|
+
x2: "18",
|
|
1002
|
+
y2: "6.5",
|
|
1003
|
+
id: "Path"
|
|
1004
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1005
|
+
x1: "0",
|
|
1006
|
+
y1: "0.5",
|
|
1007
|
+
x2: "18",
|
|
1008
|
+
y2: "0.5",
|
|
1009
|
+
id: "Path"
|
|
1010
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1011
|
+
x1: "0",
|
|
1012
|
+
y1: "12.5",
|
|
1013
|
+
x2: "18",
|
|
1014
|
+
y2: "12.5",
|
|
1015
|
+
id: "Path"
|
|
1016
|
+
}))));
|
|
1017
|
+
};
|
|
1018
|
+
const ImageIcon = ({
|
|
1019
|
+
color,
|
|
1020
|
+
size
|
|
1021
|
+
}) => {
|
|
1022
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1023
|
+
width: `${size ?? 20}px`,
|
|
1024
|
+
height: `${size ?? 20}px`,
|
|
1025
|
+
viewBox: "0 0 20 20",
|
|
1026
|
+
version: "1.1",
|
|
1027
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1028
|
+
}, /*#__PURE__*/React.createElement("title", null, "image"), /*#__PURE__*/React.createElement("g", {
|
|
1029
|
+
id: "Page-1",
|
|
1030
|
+
stroke: "none",
|
|
1031
|
+
"stroke-width": "1",
|
|
1032
|
+
fill: "none",
|
|
1033
|
+
"fill-rule": "evenodd",
|
|
1034
|
+
"stroke-linecap": "round",
|
|
1035
|
+
"stroke-linejoin": "round"
|
|
1036
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1037
|
+
id: "image",
|
|
1038
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1039
|
+
stroke: color,
|
|
1040
|
+
"stroke-width": "2"
|
|
1041
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
1042
|
+
id: "Rectangle",
|
|
1043
|
+
x: "0",
|
|
1044
|
+
y: "0",
|
|
1045
|
+
width: "18",
|
|
1046
|
+
height: "18",
|
|
1047
|
+
rx: "2"
|
|
1048
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
1049
|
+
id: "Oval",
|
|
1050
|
+
cx: "5.5",
|
|
1051
|
+
cy: "5.5",
|
|
1052
|
+
r: "1.5"
|
|
1053
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
1054
|
+
id: "Path",
|
|
1055
|
+
points: "18 12 13 7 2 18"
|
|
1056
|
+
}))));
|
|
1057
|
+
};
|
|
1058
|
+
const CheckIcon = ({
|
|
1059
|
+
color,
|
|
1060
|
+
size
|
|
1061
|
+
}) => {
|
|
1062
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1063
|
+
width: `${size ?? 14}px`,
|
|
1064
|
+
height: `${size ?? 14}px`,
|
|
1065
|
+
viewBox: "0 0 14 10",
|
|
1066
|
+
version: "1.1",
|
|
1067
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1068
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
1069
|
+
id: "Page-1",
|
|
1070
|
+
stroke: "none",
|
|
1071
|
+
"stroke-width": "1",
|
|
1072
|
+
fill: "none",
|
|
1073
|
+
"fill-rule": "evenodd"
|
|
1074
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1075
|
+
id: "Group",
|
|
1076
|
+
fill: color,
|
|
1077
|
+
"fill-rule": "nonzero"
|
|
1078
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1079
|
+
d: "M5.25478903,9.07120602 C5.12351903,9.07146406 4.99349903,9.04581406 4.87216903,8.99570406 C4.75083903,8.94559406 4.64060903,8.87202406 4.54778903,8.77920406 L0.305787033,4.53620406 C0.210214033,4.44402406 0.133956033,4.33373406 0.0814620331,4.21176406 C0.0289690331,4.08979406 0.0012910331,3.95860406 1.94289029e-16,3.82582406 C-0.0012019669,3.69304406 0.0240070331,3.56134406 0.0742000331,3.43841406 C0.124394033,3.31548406 0.198568033,3.20378406 0.292393033,3.10982406 C0.386219033,3.01586406 0.497817033,2.94153406 0.620677033,2.89116406 C0.743536033,2.84080406 0.875199033,2.81540406 1.00797903,2.81646406 C1.14075903,2.81752406 1.27198903,2.84501406 1.39402903,2.89733406 C1.51606903,2.94965406 1.62646903,3.02576406 1.71878903,3.12120406 L5.25378903,6.65620406 L11.618799,0.293202063 C11.806299,0.105562063 12.060699,9.30628876e-05 12.325899,3.33066907e-16 C12.591199,-9.39371124e-05 12.845599,0.105194063 13.033299,0.292702063 C13.220899,0.480214063 13.3264991,0.734574063 13.3264991,0.999844063 C13.3264991,1.26511406 13.221299,1.51956406 13.033799,1.70720406 L5.96178903,8.77920406 C5.86896903,8.87202406 5.75872903,8.94559406 5.63740903,8.99570406 C5.51607903,9.04581406 5.38604903,9.07146406 5.25478903,9.07120602 Z",
|
|
1080
|
+
id: "Path"
|
|
1081
|
+
}))));
|
|
1082
|
+
};
|
|
1083
|
+
const BettorEdgeIcon = ({
|
|
1084
|
+
color,
|
|
1085
|
+
size
|
|
1086
|
+
}) => {
|
|
1087
|
+
const ratio = 45 / 58;
|
|
1088
|
+
let height = 30;
|
|
1089
|
+
let width = height * ratio;
|
|
1090
|
+
if (size) {
|
|
1091
|
+
height = size * 2;
|
|
1092
|
+
width = height * ratio;
|
|
1093
|
+
}
|
|
1094
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1095
|
+
width: `${width}px`,
|
|
1096
|
+
height: `${height}px`,
|
|
1097
|
+
viewBox: "0 0 45 58",
|
|
1098
|
+
version: "1.1",
|
|
1099
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1100
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
1101
|
+
id: "Page-1",
|
|
1102
|
+
stroke: "none",
|
|
1103
|
+
"stroke-width": "1",
|
|
1104
|
+
fill: "none",
|
|
1105
|
+
"fill-rule": "evenodd"
|
|
1106
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1107
|
+
id: "Group",
|
|
1108
|
+
fill: color,
|
|
1109
|
+
"fill-rule": "nonzero"
|
|
1110
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1111
|
+
d: "M21.6596,34.4057 L31.3356,44.3798 L44.1069,43.1291 L44.1069,53.5633 L21.6596,57.2682 L21.6596,57.3389 L15.78,56.3557 C15.78,56.3557 21.6596,56.1748 21.6596,50.8967 L21.6596,34.4057 Z M0,33.0803 L9.64838,33.3635 C9.64838,33.3635 12.4051,34.0596 12.4051,39.5422 C12.4051,45.0248 9.64838,45.3512 9.64838,45.3512 L0,44.3522 L0,33.0803 Z M31.1111,13.0182 L31.1111,23.5586 L43.3193,23.9361 L43.3193,33.332 L31.4104,33.7017 L31.3356,43.9629 L21.6596,33.8669 L16.7646,28.7304 L21.6596,23.3108 L31.1111,13.0182 Z M9.64838,12.0507 C9.64838,12.0507 12.4051,12.3732 12.4051,17.1989 C12.4051,22.0247 9.64838,22.7051 9.64838,22.7051 L0,23.063 L0,13.0418 L9.64838,12.0507 Z M21.6596,0 L44.1069,3.71667 L44.1069,13.6868 L31.1269,12.3928 L21.6596,22.6972 L21.6596,6.51302 C21.6596,1.89471 17.1581,1.1759 16.0327,1.06836 L15.8461,1.05347 C15.8245,1.05215 15.808,1.05131 15.7969,1.0508 L15.78,1.05011 L21.6596,0.0707937 L21.6596,0 Z",
|
|
1112
|
+
id: "Shape"
|
|
1113
|
+
}))));
|
|
1114
|
+
};
|
|
1115
|
+
const CheckCirlceIcon = ({
|
|
1116
|
+
color,
|
|
1117
|
+
size
|
|
1118
|
+
}) => {
|
|
1119
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1120
|
+
width: `${size ?? 14}px`,
|
|
1121
|
+
height: `${size ?? 14}px`,
|
|
1122
|
+
viewBox: "0 0 22 22",
|
|
1123
|
+
version: "1.1",
|
|
1124
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1125
|
+
}, /*#__PURE__*/React.createElement("title", null, "check-circle"), /*#__PURE__*/React.createElement("g", {
|
|
1126
|
+
id: "Page-1",
|
|
1127
|
+
stroke: "none",
|
|
1128
|
+
"stroke-width": "1",
|
|
1129
|
+
fill: "none",
|
|
1130
|
+
"fill-rule": "evenodd",
|
|
1131
|
+
"stroke-linecap": "round",
|
|
1132
|
+
"stroke-linejoin": "round"
|
|
1133
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1134
|
+
id: "check-circle",
|
|
1135
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1136
|
+
stroke: color,
|
|
1137
|
+
"stroke-width": "2"
|
|
1138
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1139
|
+
d: "M20.0000565,9.08623485 L20.0000565,10.0062349 C19.9975243,14.4349207 17.0823504,18.3344478 12.8354089,19.5901358 C8.58846732,20.8458238 4.02145001,19.158547 1.61101155,15.4433012 C-0.799426916,11.7280554 -0.479080094,6.86987383 2.39833065,3.503307 C5.2757414,0.136740166 10.0247691,-0.936239861 14.0700565,0.866234854",
|
|
1140
|
+
id: "Path"
|
|
1141
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
1142
|
+
id: "Path",
|
|
1143
|
+
points: "20.0000565 2.00623485 10.0000565 12.0162349 7.00005646 9.01623485"
|
|
1144
|
+
}))));
|
|
1145
|
+
};
|
|
1146
|
+
const CloseIcon = ({
|
|
1147
|
+
color,
|
|
1148
|
+
size
|
|
1149
|
+
}) => {
|
|
1150
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1151
|
+
width: `${size ?? 14}px`,
|
|
1152
|
+
height: `${size ?? 14}px`,
|
|
1153
|
+
viewBox: "0 0 14 14",
|
|
1154
|
+
version: "1.1",
|
|
1155
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1156
|
+
}, /*#__PURE__*/React.createElement("title", null, "x"), /*#__PURE__*/React.createElement("g", {
|
|
1157
|
+
id: "Page-1",
|
|
1158
|
+
stroke: "none",
|
|
1159
|
+
"stroke-width": "1",
|
|
1160
|
+
fill: "none",
|
|
1161
|
+
"fill-rule": "evenodd",
|
|
1162
|
+
"stroke-linecap": "round",
|
|
1163
|
+
"stroke-linejoin": "round"
|
|
1164
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1165
|
+
id: "x",
|
|
1166
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1167
|
+
stroke: color,
|
|
1168
|
+
"stroke-width": "2"
|
|
1169
|
+
}, /*#__PURE__*/React.createElement("line", {
|
|
1170
|
+
x1: "12",
|
|
1171
|
+
y1: "0",
|
|
1172
|
+
x2: "0",
|
|
1173
|
+
y2: "12",
|
|
1174
|
+
id: "Path"
|
|
1175
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1176
|
+
x1: "0",
|
|
1177
|
+
y1: "0",
|
|
1178
|
+
x2: "12",
|
|
1179
|
+
y2: "12",
|
|
1180
|
+
id: "Path"
|
|
1181
|
+
}))));
|
|
1182
|
+
};
|
|
1183
|
+
const InProgressIcon = ({
|
|
1184
|
+
color,
|
|
1185
|
+
size
|
|
1186
|
+
}) => {
|
|
1187
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1188
|
+
width: `${size ?? 14}px`,
|
|
1189
|
+
height: `${size ?? 14}px`,
|
|
1190
|
+
viewBox: "0 0 24 24",
|
|
1191
|
+
version: "1.1",
|
|
1192
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1193
|
+
}, /*#__PURE__*/React.createElement("title", null, "in-progress-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
1194
|
+
id: "Page-1",
|
|
1195
|
+
stroke: "none",
|
|
1196
|
+
"stroke-width": "1",
|
|
1197
|
+
fill: "none",
|
|
1198
|
+
"fill-rule": "evenodd"
|
|
1199
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1200
|
+
id: "in-progress-svgrepo-com"
|
|
1201
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1202
|
+
d: "M11.7,2 C11.6,2 11.6,2 11.5,2 C11.5,2 11.5,2 11.4,2 L11.4,2 C11.2,2 11.1,2 10.9,2 L11.1,4 C11.5,4 12,4 12.4,4 C16.4,4.3 19.7,7.5 19.9,11.6 C20.1,16 16.7,19.8 12.3,20 C12.3,20 12.2,20 12.1,20 C11.8,20 11.4,20 11.1,20 L11,22 C11.4,22 11.8,22 12.3,22 C12.4,22 12.6,22 12.7,22 L12.7,22 C18.1,21.6 22.2,17 22,11.6 C21.8,6.5 17.7,2.5 12.7,2.1 L12.7,2.1 C12.7,2.1 12.7,2.1 12.7,2.1 C12.5,2.1 12.4,2.1 12.2,2.1 C12,2 11.9,2 11.7,2 Z M8.2,2.7 C7.7,3 7.2,3.2 6.7,3.5 L7.8,5.2 C8.1,5 8.5,4.8 8.9,4.6 L8.2,2.7 Z M4.5,5.4 C4.1,5.8 3.8,6.3 3.5,6.7 L5.2,7.7 C5.4,7.4 5.7,7.1 6,6.7 L4.5,5.4 Z M15.4,8.4 L10.8,13.6 L8.1,11.5 L7,13.2 L11.2,16.4 L17,9.8 L15.4,8.4 Z M2.4,9 C2.2,9.5 2.1,10.1 2.1,10.6 L4.1,10.9 C4.2,10.5 4.2,10 4.4,9.6 L2.4,9 Z M4.1,13 L2.1,13.2 C2.1,13.3 2.1,13.4 2.1,13.5 C2.2,13.9 2.3,14.4 2.4,14.8 L4.3,14.2 C4.2,13.9 4.1,13.5 4.1,13.1 L4.1,13 Z M5.2,16.2 L3.5,17.3 C3.8,17.8 4.1,18.2 4.5,18.6 L6,17.3 C5.7,16.9 5.4,16.6 5.2,16.2 Z M7.8,18.8 L6.7,20.5 C7.2,20.8 7.7,21 8.2,21.3 L9,19.5 C8.5,19.2 8.1,19 7.8,18.8 Z",
|
|
1203
|
+
id: "Shape",
|
|
1204
|
+
fill: color,
|
|
1205
|
+
"fill-rule": "nonzero"
|
|
1206
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
1207
|
+
id: "Rectangle",
|
|
1208
|
+
x: "0",
|
|
1209
|
+
y: "0",
|
|
1210
|
+
width: "24",
|
|
1211
|
+
height: "24"
|
|
1212
|
+
}))));
|
|
1213
|
+
};
|
|
1214
|
+
const UserIcon = ({
|
|
1215
|
+
color,
|
|
1216
|
+
size
|
|
1217
|
+
}) => {
|
|
1218
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1219
|
+
width: `${size ?? 14}px`,
|
|
1220
|
+
height: `${size ?? 14}px`,
|
|
1221
|
+
viewBox: "0 0 18 20",
|
|
1222
|
+
version: "1.1",
|
|
1223
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1224
|
+
}, /*#__PURE__*/React.createElement("title", null, "user"), /*#__PURE__*/React.createElement("g", {
|
|
1225
|
+
id: "Page-1",
|
|
1226
|
+
stroke: "none",
|
|
1227
|
+
"stroke-width": "1",
|
|
1228
|
+
fill: "none",
|
|
1229
|
+
"fill-rule": "evenodd",
|
|
1230
|
+
"stroke-linecap": "round",
|
|
1231
|
+
"stroke-linejoin": "round"
|
|
1232
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1233
|
+
id: "user",
|
|
1234
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1235
|
+
stroke: color,
|
|
1236
|
+
"stroke-width": "2"
|
|
1237
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1238
|
+
d: "M16,18 L16,16 C16,13.790861 14.209139,12 12,12 L4,12 C1.790861,12 0,13.790861 0,16 L0,18",
|
|
1239
|
+
id: "Path"
|
|
1240
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
1241
|
+
id: "Oval",
|
|
1242
|
+
cx: "8",
|
|
1243
|
+
cy: "4",
|
|
1244
|
+
r: "4"
|
|
1245
|
+
}))));
|
|
1246
|
+
};
|
|
1247
|
+
const ListIcon = ({
|
|
1248
|
+
color,
|
|
1249
|
+
size
|
|
1250
|
+
}) => {
|
|
1251
|
+
let ratio = 1.4;
|
|
1252
|
+
let height = size ?? 14;
|
|
1253
|
+
let width = height * ratio;
|
|
1254
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1255
|
+
width: `${width}px`,
|
|
1256
|
+
height: `${height}px`,
|
|
1257
|
+
viewBox: "0 0 21 15",
|
|
1258
|
+
version: "1.1",
|
|
1259
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1260
|
+
}, /*#__PURE__*/React.createElement("title", null, "list"), /*#__PURE__*/React.createElement("g", {
|
|
1261
|
+
id: "Page-1",
|
|
1262
|
+
stroke: "none",
|
|
1263
|
+
"stroke-width": "1",
|
|
1264
|
+
fill: "none",
|
|
1265
|
+
"fill-rule": "evenodd",
|
|
1266
|
+
"stroke-linecap": "round",
|
|
1267
|
+
"stroke-linejoin": "round"
|
|
1268
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1269
|
+
id: "list",
|
|
1270
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1271
|
+
stroke: color,
|
|
1272
|
+
"stroke-width": "2"
|
|
1273
|
+
}, /*#__PURE__*/React.createElement("line", {
|
|
1274
|
+
x1: "5.495",
|
|
1275
|
+
y1: "0.5",
|
|
1276
|
+
x2: "18.495",
|
|
1277
|
+
y2: "0.5",
|
|
1278
|
+
id: "Path"
|
|
1279
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1280
|
+
x1: "5.495",
|
|
1281
|
+
y1: "6.5",
|
|
1282
|
+
x2: "18.495",
|
|
1283
|
+
y2: "6.5",
|
|
1284
|
+
id: "Path"
|
|
1285
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1286
|
+
x1: "5.495",
|
|
1287
|
+
y1: "12.5",
|
|
1288
|
+
x2: "18.495",
|
|
1289
|
+
y2: "12.5",
|
|
1290
|
+
id: "Path"
|
|
1291
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1292
|
+
x1: "0.495",
|
|
1293
|
+
y1: "0.5",
|
|
1294
|
+
x2: "0.505",
|
|
1295
|
+
y2: "0.5",
|
|
1296
|
+
id: "Path"
|
|
1297
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1298
|
+
x1: "0.495",
|
|
1299
|
+
y1: "6.5",
|
|
1300
|
+
x2: "0.505",
|
|
1301
|
+
y2: "6.5",
|
|
1302
|
+
id: "Path"
|
|
1303
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1304
|
+
x1: "0.495",
|
|
1305
|
+
y1: "12.5",
|
|
1306
|
+
x2: "0.505",
|
|
1307
|
+
y2: "12.5",
|
|
1308
|
+
id: "Path"
|
|
1309
|
+
}))));
|
|
1310
|
+
};
|
|
1311
|
+
const TrophyIcon = ({
|
|
1312
|
+
color,
|
|
1313
|
+
size
|
|
1314
|
+
}) => {
|
|
1315
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1316
|
+
width: `${size ?? 14}px`,
|
|
1317
|
+
height: `${size ?? 14}px`,
|
|
1318
|
+
viewBox: "0 0 16 16",
|
|
1319
|
+
version: "1.1",
|
|
1320
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1321
|
+
}, /*#__PURE__*/React.createElement("title", null, "Group"), /*#__PURE__*/React.createElement("g", {
|
|
1322
|
+
id: "Page-1",
|
|
1323
|
+
stroke: "none",
|
|
1324
|
+
"stroke-width": "1",
|
|
1325
|
+
fill: "none",
|
|
1326
|
+
"fill-rule": "evenodd"
|
|
1327
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1328
|
+
id: "Group",
|
|
1329
|
+
transform: "translate(0.000000, 0.000000)",
|
|
1330
|
+
fill: color
|
|
1331
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1332
|
+
d: "M15.9744,2.74451 C15.8361,1.81267 15.1711,1.06941 14.3196,0.895008 C14.0161,0.832855 13.7183,0.846759 13.4379,0.928709 L13.4379,0.690593 C13.4379,0.309201 13.1374,0 12.7666,0 L3.23337997,0 C3.05515997,0 2.88428997,0.0728345 2.75833997,0.202666 C2.63239997,0.332405 2.56177997,0.508276 2.56204997,0.691606 L2.56230997,0.928801 C2.28196997,0.846759 1.98397997,0.832763 1.68035997,0.895008 C0.828752974,1.06941 0.163774974,1.81267 0.0255696737,2.74451 C-0.0737876263,3.41457 -0.00754954628,5.1021 2.58916997,6.68521 C2.77373997,8.73812 5.37310997,10.3952 7.33303997,10.7075 L7.33303997,11.9521 L4.30004997,11.9521 C3.92928997,11.9521 3.62870997,12.2613 3.62870997,12.6427 L3.62870997,15.3094 C3.62870997,15.6908 3.92928997,16 4.30004997,16 L11.7,16 C12.0708,16 12.3714,15.6908 12.3714,15.3094 L12.3714,12.6427 C12.3714,12.2613 12.0708,11.9521 11.7,11.9521 L8.67570997,11.9521 L8.67570997,10.7075 C10.6366,10.395 13.2364,8.73545 13.4189,6.68024 C16.0075,5.0986 16.0738,3.41383 15.9744,2.74451 Z M11.0287,14.6188 L4.97137997,14.6188 L4.97137997,13.3333 L11.0287,13.3333 L11.0287,14.6188 Z M13.438,5.008 C14.6791,4.03094 14.6861,3.21522 14.6471,2.95288 C14.5856,2.53788 14.3066,2.3006 14.0575,2.24958 C13.7851,2.19397 13.5802,2.35087 13.438,2.53567 L13.438,5.008 Z M1.94262997,2.24958 C2.21652997,2.19369 2.42240997,2.3528 2.56463997,2.53908 L2.56803997,5.01269 C1.32096997,4.03352 1.31389997,3.21558 1.35292997,2.95288 C1.41450997,2.53788 1.69342997,2.3006 1.94262997,2.24958 Z M3.90569997,1.38119 L3.91231997,6.26754 C3.91231997,7.9839 6.33614997,9.37945 8.00436997,9.37945 C9.67106997,9.37945 12.0937,7.98556 12.0954,6.26745 L12.0954,1.38119 L3.90569997,1.38119 Z",
|
|
1333
|
+
id: "Shape"
|
|
1334
|
+
}))));
|
|
1335
|
+
};
|
|
1336
|
+
const EditIcon = ({
|
|
1337
|
+
color,
|
|
1338
|
+
size
|
|
1339
|
+
}) => {
|
|
1340
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1341
|
+
width: `${size ?? 14}px`,
|
|
1342
|
+
height: `${size ?? 14}px`,
|
|
1343
|
+
viewBox: "0 0 16 16",
|
|
1344
|
+
version: "1.1",
|
|
1345
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1346
|
+
}, /*#__PURE__*/React.createElement("title", null, "edit-3-svgrepo-com"), /*#__PURE__*/React.createElement("g", {
|
|
1347
|
+
id: "Page-1",
|
|
1348
|
+
stroke: "none",
|
|
1349
|
+
"stroke-width": "1",
|
|
1350
|
+
fill: "none",
|
|
1351
|
+
"fill-rule": "evenodd",
|
|
1352
|
+
"stroke-linecap": "round",
|
|
1353
|
+
"stroke-linejoin": "round"
|
|
1354
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1355
|
+
id: "edit-3-svgrepo-com",
|
|
1356
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1357
|
+
stroke: color ?? Colors.brand.midnight,
|
|
1358
|
+
"stroke-width": "1.5"
|
|
1359
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1360
|
+
d: "M13.4142169,3.12168866 L6.77664984,9.75922094 C6.11567618,10.4201946 4.15360718,10.7263298 3.71527728,10.2879999 C3.27694738,9.84966997 3.57612493,7.88762184 4.23709859,7.22664818 L10.8816442,0.582137411 C11.045496,0.403368388 11.2438577,0.259665757 11.4648316,0.159684794 C11.685736,0.0597038305 11.9246606,0.00550399043 12.1671336,0.000397099207 C12.4095369,-0.0047028344 12.6505488,0.0393667147 12.8754886,0.129961852 C13.1004284,0.220556989 13.304704,0.355813073 13.475931,0.527527072 C13.6471579,0.699241071 13.7818574,0.903864601 13.8718194,1.12905485 C13.9617814,1.35425205 14.0052665,1.5953335 13.9994917,1.83777168 C13.9937169,2.08020986 13.9388213,2.31898833 13.8382837,2.53964917 C13.7376765,2.76031001 13.5934451,2.95831685 13.4142169,3.12168866 L13.4142169,3.12168866 Z",
|
|
1361
|
+
id: "Path"
|
|
1362
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1363
|
+
d: "M6.26185573,1.45182568 L2.78304699,1.45182568 C2.04493422,1.45182568 1.33710101,1.7450336 0.815175336,2.26695927 C0.293256619,2.78888495 0,3.4967599 0,4.23487267 L0,11.1924901 C0,11.9306238 0.293256619,12.6384918 0.815175336,13.1603827 C1.33710101,13.6823431 2.04493422,13.9755371 2.78304699,13.9755371 L10.4364262,13.9755371 C11.9740597,13.9755371 12.5237115,12.723166 12.5237115,11.1924901 L12.5237115,7.71368141",
|
|
1364
|
+
id: "Path"
|
|
1365
|
+
}))));
|
|
1366
|
+
};
|
|
1367
|
+
const ShareIcon = ({
|
|
1368
|
+
color,
|
|
1369
|
+
size
|
|
1370
|
+
}) => {
|
|
1371
|
+
const ratio = 1.22;
|
|
1372
|
+
let width = size ?? 14;
|
|
1373
|
+
let height = width * ratio;
|
|
1374
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1375
|
+
width: `${width}px`,
|
|
1376
|
+
height: `${height}px`,
|
|
1377
|
+
viewBox: "0 0 18 22",
|
|
1378
|
+
version: "1.1",
|
|
1379
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1380
|
+
}, /*#__PURE__*/React.createElement("title", null, "share"), /*#__PURE__*/React.createElement("g", {
|
|
1381
|
+
id: "Page-1",
|
|
1382
|
+
stroke: "none",
|
|
1383
|
+
"stroke-width": "1",
|
|
1384
|
+
fill: "none",
|
|
1385
|
+
"fill-rule": "evenodd",
|
|
1386
|
+
"stroke-linecap": "round",
|
|
1387
|
+
"stroke-linejoin": "round"
|
|
1388
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1389
|
+
id: "share",
|
|
1390
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1391
|
+
stroke: color,
|
|
1392
|
+
"stroke-width": "2"
|
|
1393
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1394
|
+
d: "M0,10 L0,18 C0,19.1045695 0.8954305,20 2,20 L14,20 C15.1045695,20 16,19.1045695 16,18 L16,10",
|
|
1395
|
+
id: "Path"
|
|
1396
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
1397
|
+
id: "Path",
|
|
1398
|
+
points: "12 4 8 0 4 4"
|
|
1399
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1400
|
+
x1: "8",
|
|
1401
|
+
y1: "0",
|
|
1402
|
+
x2: "8",
|
|
1403
|
+
y2: "13",
|
|
1404
|
+
id: "Path"
|
|
1405
|
+
}))));
|
|
1406
|
+
};
|
|
1407
|
+
const AlertIcon = ({
|
|
1408
|
+
color,
|
|
1409
|
+
size
|
|
1410
|
+
}) => {
|
|
1411
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
1412
|
+
width: `${size}px`,
|
|
1413
|
+
height: `${size}px`,
|
|
1414
|
+
viewBox: "0 0 22 22",
|
|
1415
|
+
version: "1.1",
|
|
1416
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1417
|
+
}, /*#__PURE__*/React.createElement("title", null, "alert-circle"), /*#__PURE__*/React.createElement("g", {
|
|
1418
|
+
id: "Page-1",
|
|
1419
|
+
stroke: "none",
|
|
1420
|
+
"stroke-width": "1",
|
|
1421
|
+
fill: "none",
|
|
1422
|
+
"fill-rule": "evenodd",
|
|
1423
|
+
"stroke-linecap": "round",
|
|
1424
|
+
"stroke-linejoin": "round"
|
|
1425
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
1426
|
+
id: "alert-circle",
|
|
1427
|
+
transform: "translate(1.000000, 1.000000)",
|
|
1428
|
+
stroke: color,
|
|
1429
|
+
"stroke-width": "2"
|
|
1430
|
+
}, /*#__PURE__*/React.createElement("circle", {
|
|
1431
|
+
id: "Oval",
|
|
1432
|
+
cx: "10",
|
|
1433
|
+
cy: "10",
|
|
1434
|
+
r: "10"
|
|
1435
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1436
|
+
x1: "10",
|
|
1437
|
+
y1: "6",
|
|
1438
|
+
x2: "10",
|
|
1439
|
+
y2: "10",
|
|
1440
|
+
id: "Path"
|
|
1441
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
1442
|
+
x1: "10",
|
|
1443
|
+
y1: "14",
|
|
1444
|
+
x2: "10.01",
|
|
1445
|
+
y2: "14",
|
|
1446
|
+
id: "Path"
|
|
1447
|
+
}))));
|
|
1448
|
+
};
|
|
1449
|
+
export default {
|
|
1450
|
+
SearchIcon,
|
|
1451
|
+
EyeOnIcon,
|
|
1452
|
+
AlertIcon,
|
|
1453
|
+
BankIcon,
|
|
1454
|
+
EditIcon,
|
|
1455
|
+
CheckCirlceIcon,
|
|
1456
|
+
ShareIcon,
|
|
1457
|
+
TrophyIcon,
|
|
1458
|
+
ListIcon,
|
|
1459
|
+
UserIcon,
|
|
1460
|
+
InProgressIcon,
|
|
1461
|
+
LockClosedIcon,
|
|
1462
|
+
CloseIcon,
|
|
1463
|
+
BettorEdgeIcon,
|
|
1464
|
+
CheckIcon,
|
|
1465
|
+
ImageIcon,
|
|
1466
|
+
MenuIcon,
|
|
1467
|
+
MoreIcon,
|
|
1468
|
+
SnoozeIcon,
|
|
1469
|
+
WithdrawIcon,
|
|
1470
|
+
DepositIcon,
|
|
1471
|
+
BankInstantIcon,
|
|
1472
|
+
CreditCardIcon,
|
|
1473
|
+
PayPalIcon,
|
|
1474
|
+
ChevronIcon,
|
|
1475
|
+
ShareSocialIcon,
|
|
1476
|
+
PacerCarIcon,
|
|
1477
|
+
AwardRibbonIcon,
|
|
1478
|
+
TVIcon,
|
|
1479
|
+
PlusCircleIcon,
|
|
1480
|
+
PausedIcon,
|
|
1481
|
+
ChangeIcon,
|
|
1482
|
+
USDIcon,
|
|
1483
|
+
EyeOffIcon
|
|
1484
|
+
};
|
|
1485
|
+
//# sourceMappingURL=Icons.js.map
|