@gem-sdk/pages 1.12.1 → 1.12.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/AddSectionImageToLayout.js +156 -185
- package/dist/cjs/components/Footer.js +97 -116
- package/dist/cjs/components/Header.js +90 -121
- package/dist/esm/components/AddSectionImageToLayout.js +158 -187
- package/dist/esm/components/Footer.js +98 -117
- package/dist/esm/components/Header.js +91 -122
- package/package.json +1 -1
|
@@ -6,47 +6,24 @@ var jsxRuntime = require('react/jsx-runtime');
|
|
|
6
6
|
var core = require('@gem-sdk/core');
|
|
7
7
|
var react = require('react');
|
|
8
8
|
|
|
9
|
-
const
|
|
10
|
-
desktop: '
|
|
9
|
+
const defaultMargin = {
|
|
10
|
+
desktop: '40px',
|
|
11
11
|
tablet: '40px',
|
|
12
12
|
mobile: '40px'
|
|
13
13
|
};
|
|
14
14
|
const Footer = ()=>{
|
|
15
15
|
const layoutSetting = core.useShopStore((s)=>s.layoutSettings);
|
|
16
16
|
const [shouldFixed, setShouldFixed] = react.useState(false);
|
|
17
|
-
const [padding, setPadding] = react.useState(defaultPadding);
|
|
18
17
|
react.useEffect(()=>{
|
|
19
18
|
const $iframe = parent.document.querySelector('.iframe');
|
|
20
19
|
if (!$iframe) return;
|
|
21
20
|
const $storefront = document.querySelector('#storefront');
|
|
22
21
|
if (!$storefront) return;
|
|
23
|
-
const $iframeDoc = $iframe.contentDocument || $iframe.contentWindow.document;
|
|
24
|
-
const $section = $iframeDoc.getElementsByTagName('section');
|
|
25
22
|
const headerHeight = 40;
|
|
26
23
|
const footerHeight = 48;
|
|
27
24
|
const iframeHeight = $iframe.clientHeight;
|
|
28
25
|
const comparedHeight = layoutSetting?.showHeader ? iframeHeight - headerHeight - footerHeight : iframeHeight - footerHeight;
|
|
29
|
-
let prevWidth = 0;
|
|
30
26
|
const observer = new ResizeObserver((entries)=>{
|
|
31
|
-
// Handle resize footer padding according to content
|
|
32
|
-
const currentWidth = entries[0]?.borderBoxSize?.[0]?.inlineSize;
|
|
33
|
-
const shouldUpdatePadding = !!$section.length && typeof currentWidth === 'number' && currentWidth !== prevWidth;
|
|
34
|
-
if (shouldUpdatePadding) {
|
|
35
|
-
prevWidth = currentWidth;
|
|
36
|
-
const padding = getComputedStyle($section[0]).getPropertyValue('padding-left');
|
|
37
|
-
const margin = getComputedStyle($section[0]).getPropertyValue('margin-left');
|
|
38
|
-
const newPadding = parseInt(margin, 10) + parseInt(padding, 10);
|
|
39
|
-
const basePadding = 68;
|
|
40
|
-
if (newPadding > basePadding) {
|
|
41
|
-
setPadding({
|
|
42
|
-
desktop: `${newPadding}px`,
|
|
43
|
-
tablet: `${newPadding}px`,
|
|
44
|
-
mobile: `${newPadding}px`
|
|
45
|
-
});
|
|
46
|
-
} else {
|
|
47
|
-
setPadding(defaultPadding);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
27
|
// Handle set fixed footer
|
|
51
28
|
const currentEditingFrameHeight = entries[0]?.target.clientHeight;
|
|
52
29
|
if (currentEditingFrameHeight && comparedHeight) setShouldFixed(currentEditingFrameHeight < comparedHeight);
|
|
@@ -58,102 +35,106 @@ const Footer = ()=>{
|
|
|
58
35
|
}, [
|
|
59
36
|
layoutSetting
|
|
60
37
|
]);
|
|
61
|
-
return /*#__PURE__*/ jsxRuntime.
|
|
62
|
-
className: core.cls('gp-footer-container border-1 group flex h-[48px]
|
|
38
|
+
return /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
39
|
+
className: core.cls('gp-footer-container border-1 group flex h-[48px] justify-center border-y border-[#EEEEEE] bg-white font-sans', {
|
|
63
40
|
hidden: !layoutSetting?.showFooter,
|
|
64
41
|
'fixed bottom-0 w-full': shouldFixed
|
|
65
42
|
}),
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
43
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
44
|
+
className: "flex flex-1 h-[40px] items-center justify-between",
|
|
45
|
+
style: {
|
|
46
|
+
maxWidth: `var(--g-ct-w)`,
|
|
47
|
+
...core.makeStyleResponsive('ml', defaultMargin),
|
|
48
|
+
...core.makeStyleResponsive('mr', defaultMargin)
|
|
49
|
+
},
|
|
50
|
+
children: [
|
|
51
|
+
/*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
52
|
+
width: "192",
|
|
53
|
+
height: "8",
|
|
54
|
+
viewBox: "0 0 192 8",
|
|
55
|
+
fill: "none",
|
|
56
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
57
|
+
children: [
|
|
58
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
59
|
+
width: "56",
|
|
60
|
+
height: "8",
|
|
61
|
+
rx: "3",
|
|
62
|
+
fill: "#E1E1E1"
|
|
63
|
+
}),
|
|
64
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
65
|
+
x: "68",
|
|
66
|
+
width: "56",
|
|
67
|
+
height: "8",
|
|
68
|
+
rx: "3",
|
|
69
|
+
fill: "#E1E1E1"
|
|
70
|
+
}),
|
|
71
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
72
|
+
x: "136",
|
|
73
|
+
width: "56",
|
|
74
|
+
height: "8",
|
|
75
|
+
rx: "3",
|
|
76
|
+
fill: "#E1E1E1"
|
|
77
|
+
})
|
|
78
|
+
]
|
|
79
|
+
}),
|
|
80
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
81
|
+
className: "gp-footer hover:bg-[#0000001a] invisible absolute left-[8px] flex h-[24px] w-[24px] cursor-pointer items-center justify-center rounded bg-[#EEEEEE] p-[4px] group-hover:visible",
|
|
82
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
83
|
+
className: "flex h-[24px] w-[24px] items-center justify-center",
|
|
84
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
85
|
+
width: "14",
|
|
86
|
+
height: "14",
|
|
87
|
+
viewBox: "0 0 14 14",
|
|
88
|
+
fill: "none",
|
|
89
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
90
|
+
children: [
|
|
91
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
92
|
+
fillRule: "evenodd",
|
|
93
|
+
clipRule: "evenodd",
|
|
94
|
+
d: "M6.99985 4.08501C5.38983 4.08501 4.08465 5.39019 4.08465 7.00021C4.08465 8.61023 5.38983 9.9154 6.99985 9.9154C8.60987 9.9154 9.91504 8.61023 9.91504 7.00021C9.91504 5.39019 8.60987 4.08501 6.99985 4.08501ZM5.08465 7.00021C5.08465 5.94247 5.94211 5.08501 6.99985 5.08501C8.05758 5.08501 8.91504 5.94247 8.91504 7.00021C8.91504 8.05794 8.05758 8.9154 6.99985 8.9154C5.94211 8.9154 5.08465 8.05794 5.08465 7.00021Z",
|
|
95
|
+
fill: "#212121"
|
|
96
|
+
}),
|
|
97
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
98
|
+
fillRule: "evenodd",
|
|
99
|
+
clipRule: "evenodd",
|
|
100
|
+
d: "M5.52351 0.00390625C5.28138 0.00390625 5.07405 0.177388 5.03135 0.415715L4.7415 2.03321C4.40346 2.18248 4.08346 2.36419 3.78558 2.57432L2.18557 2.00147C1.95684 1.91958 1.70235 2.01395 1.58232 2.22517L0.122204 4.79451C0.00217064 5.00572 0.0513362 5.27266 0.238747 5.42725L1.50086 6.46836C1.48358 6.64355 1.47474 6.82106 1.47474 7.00047C1.47474 7.17981 1.48357 7.35726 1.50084 7.53238L0.238747 8.57347C0.0513362 8.72806 0.00217064 8.995 0.122203 9.20622L1.58232 11.7756C1.70235 11.9868 1.95684 12.0811 2.18557 11.9993L3.78537 11.4265C4.08332 11.6367 4.40341 11.8185 4.74155 11.9678L5.03135 13.585C5.07405 13.8233 5.28138 13.9968 5.52351 13.9968H8.47647C8.7186 13.9968 8.92593 13.8233 8.96863 13.585L9.25846 11.9676C9.5965 11.8183 9.91649 11.6365 10.2144 11.4264L11.8144 11.9993C12.0431 12.0811 12.2976 11.9868 12.4177 11.7756L13.8778 9.20622C13.9978 8.995 13.9486 8.72806 13.7612 8.57347L12.4988 7.5321C12.516 7.35706 12.5249 7.17971 12.5249 7.00047C12.5249 6.82116 12.516 6.64375 12.4988 6.46864L13.7612 5.42725C13.9486 5.27266 13.9978 5.00572 13.8778 4.79451L12.4177 2.22517C12.2976 2.01395 12.0431 1.91958 11.8144 2.00147L10.2141 2.57441C9.91636 2.36433 9.59645 2.18264 9.25851 2.0334L8.96863 0.415715C8.92593 0.177389 8.7186 0.00390625 8.47647 0.00390625H5.52351ZM5.67747 2.47943L5.94187 1.00391H8.0581L8.32253 2.47958C8.35348 2.6523 8.47271 2.79616 8.63668 2.85863C9.06768 3.02283 9.46674 3.25007 9.82215 3.5288C9.95734 3.63483 10.1375 3.66402 10.2993 3.6061L11.7559 3.08459L12.8007 4.92323L11.6503 5.8722C11.5145 5.98427 11.4476 6.15956 11.4743 6.33366C11.5076 6.55089 11.5249 6.77354 11.5249 7.00047C11.5249 7.22735 11.5076 7.44993 11.4743 7.66711C11.4476 7.8412 11.5145 8.01648 11.6504 8.12855L12.8007 9.07749L11.7559 10.9161L10.2994 10.3947C10.1377 10.3368 9.95752 10.366 9.82233 10.472C9.46686 10.7508 9.06773 10.9781 8.63664 11.1423C8.47267 11.2048 8.35344 11.3487 8.32249 11.5214L8.0581 12.9968H5.94187L5.67752 11.5215C5.64656 11.3488 5.52732 11.2049 5.36333 11.1425C4.93215 10.9782 4.53292 10.7509 4.17738 10.4721C4.04219 10.3661 3.86203 10.3369 3.70027 10.3948L2.24412 10.9161L1.19924 9.07749L2.34929 8.12883C2.48516 8.01675 2.55204 7.84146 2.52535 7.66736C2.49205 7.4501 2.47474 7.22743 2.47474 7.00047C2.47474 6.77345 2.49206 6.55072 2.52538 6.33341C2.55207 6.15931 2.48519 5.984 2.34932 5.87192L1.19924 4.92323L2.24412 3.08459L3.70047 3.60601C3.86221 3.66392 4.04236 3.63474 4.17755 3.52872C4.53304 3.24994 4.93219 3.02269 5.36329 2.85849C5.52728 2.79603 5.64652 2.65216 5.67747 2.47943Z",
|
|
101
|
+
fill: "#212121"
|
|
102
|
+
})
|
|
103
|
+
]
|
|
104
|
+
})
|
|
124
105
|
})
|
|
106
|
+
}),
|
|
107
|
+
/*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
108
|
+
width: "82",
|
|
109
|
+
height: "8",
|
|
110
|
+
viewBox: "0 0 82 8",
|
|
111
|
+
fill: "none",
|
|
112
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
113
|
+
children: [
|
|
114
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
115
|
+
width: "22",
|
|
116
|
+
height: "8",
|
|
117
|
+
rx: "3",
|
|
118
|
+
fill: "#E1E1E1"
|
|
119
|
+
}),
|
|
120
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
121
|
+
x: "30",
|
|
122
|
+
width: "22",
|
|
123
|
+
height: "8",
|
|
124
|
+
rx: "3",
|
|
125
|
+
fill: "#E1E1E1"
|
|
126
|
+
}),
|
|
127
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
128
|
+
x: "60",
|
|
129
|
+
width: "22",
|
|
130
|
+
height: "8",
|
|
131
|
+
rx: "3",
|
|
132
|
+
fill: "#E1E1E1"
|
|
133
|
+
})
|
|
134
|
+
]
|
|
125
135
|
})
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
width: "82",
|
|
129
|
-
height: "8",
|
|
130
|
-
viewBox: "0 0 82 8",
|
|
131
|
-
fill: "none",
|
|
132
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
133
|
-
children: [
|
|
134
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
135
|
-
width: "22",
|
|
136
|
-
height: "8",
|
|
137
|
-
rx: "3",
|
|
138
|
-
fill: "#E1E1E1"
|
|
139
|
-
}),
|
|
140
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
141
|
-
x: "30",
|
|
142
|
-
width: "22",
|
|
143
|
-
height: "8",
|
|
144
|
-
rx: "3",
|
|
145
|
-
fill: "#E1E1E1"
|
|
146
|
-
}),
|
|
147
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
148
|
-
x: "60",
|
|
149
|
-
width: "22",
|
|
150
|
-
height: "8",
|
|
151
|
-
rx: "3",
|
|
152
|
-
fill: "#E1E1E1"
|
|
153
|
-
})
|
|
154
|
-
]
|
|
155
|
-
})
|
|
156
|
-
]
|
|
136
|
+
]
|
|
137
|
+
})
|
|
157
138
|
});
|
|
158
139
|
};
|
|
159
140
|
|
|
@@ -4,137 +4,106 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
var core = require('@gem-sdk/core');
|
|
7
|
-
var react = require('react');
|
|
8
7
|
|
|
9
|
-
const
|
|
10
|
-
desktop: '
|
|
8
|
+
const defaultMargin = {
|
|
9
|
+
desktop: '40px',
|
|
11
10
|
tablet: '40px',
|
|
12
11
|
mobile: '40px'
|
|
13
12
|
};
|
|
14
13
|
const Header = ()=>{
|
|
15
14
|
const layoutSetting = core.useShopStore((s)=>s.layoutSettings);
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
const $iframe = parent.document.querySelector('.iframe');
|
|
19
|
-
if (!$iframe) return;
|
|
20
|
-
const $storefront = document.querySelector('#storefront');
|
|
21
|
-
if (!$storefront) return;
|
|
22
|
-
const $iframeDoc = $iframe.contentDocument || $iframe.contentWindow.document;
|
|
23
|
-
const $section = $iframeDoc.getElementsByTagName('section');
|
|
24
|
-
let prevWidth = 0;
|
|
25
|
-
const observer = new ResizeObserver((entries)=>{
|
|
26
|
-
const currentWidth = entries[0]?.borderBoxSize?.[0]?.inlineSize;
|
|
27
|
-
const shouldUpdatePadding = !!$section.length && typeof currentWidth === 'number' && currentWidth !== prevWidth;
|
|
28
|
-
if (shouldUpdatePadding) {
|
|
29
|
-
prevWidth = currentWidth;
|
|
30
|
-
const padding = getComputedStyle($section[0]).getPropertyValue('padding-left');
|
|
31
|
-
const margin = getComputedStyle($section[0]).getPropertyValue('margin-left');
|
|
32
|
-
const newPadding = parseInt(margin, 10) + parseInt(padding, 10);
|
|
33
|
-
const basePadding = 68;
|
|
34
|
-
if (newPadding > basePadding) {
|
|
35
|
-
setPadding({
|
|
36
|
-
desktop: `${newPadding}px`,
|
|
37
|
-
tablet: `${newPadding}px`,
|
|
38
|
-
mobile: `${newPadding}px`
|
|
39
|
-
});
|
|
40
|
-
} else {
|
|
41
|
-
setPadding(defaultPadding);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
observer.observe($storefront);
|
|
46
|
-
return ()=>{
|
|
47
|
-
observer.unobserve($storefront);
|
|
48
|
-
};
|
|
49
|
-
}, []);
|
|
50
|
-
return /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
51
|
-
className: core.cls('gp-header-container flex h-[40px] items-center justify-between border-b border-1 border-[#EEEEEE] group relative font-sans', {
|
|
15
|
+
return /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
16
|
+
className: core.cls('gp-header-container border-b border-1 border-[#EEEEEE] group relative font-sans flex justify-center', {
|
|
52
17
|
hidden: !layoutSetting?.showHeader
|
|
53
18
|
}),
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
19
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
20
|
+
className: "flex flex-1 h-[40px] items-center justify-between",
|
|
21
|
+
style: {
|
|
22
|
+
maxWidth: `var(--g-ct-w)`,
|
|
23
|
+
...core.makeStyleResponsive('ml', defaultMargin),
|
|
24
|
+
...core.makeStyleResponsive('mr', defaultMargin)
|
|
25
|
+
},
|
|
26
|
+
children: [
|
|
27
|
+
/*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
28
|
+
width: "84",
|
|
29
|
+
height: "8",
|
|
30
|
+
viewBox: "0 0 84 8",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
children: [
|
|
34
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
35
|
+
width: "22",
|
|
36
|
+
height: "8",
|
|
37
|
+
rx: "3",
|
|
38
|
+
fill: "#9E9E9E"
|
|
39
|
+
}),
|
|
40
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
41
|
+
x: "28",
|
|
42
|
+
width: "56",
|
|
43
|
+
height: "8",
|
|
44
|
+
rx: "3",
|
|
45
|
+
fill: "#E1E1E1"
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
}),
|
|
49
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
50
|
+
className: "gp-header invisible flex h-[24px] w-[24px] cursor-pointer items-center justify-center rounded bg-[#EEEEEE] p-[4px] group-hover:visible absolute left-[8px] hover:bg-[#0000001a]",
|
|
51
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
52
|
+
className: "h-[24px] w-[24px] flex items-center justify-center",
|
|
53
|
+
children: /*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
54
|
+
width: "14",
|
|
55
|
+
height: "14",
|
|
56
|
+
viewBox: "0 0 14 14",
|
|
57
|
+
fill: "none",
|
|
58
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
59
|
+
children: [
|
|
60
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
clipRule: "evenodd",
|
|
63
|
+
d: "M6.99985 4.08501C5.38983 4.08501 4.08465 5.39019 4.08465 7.00021C4.08465 8.61023 5.38983 9.9154 6.99985 9.9154C8.60987 9.9154 9.91504 8.61023 9.91504 7.00021C9.91504 5.39019 8.60987 4.08501 6.99985 4.08501ZM5.08465 7.00021C5.08465 5.94247 5.94211 5.08501 6.99985 5.08501C8.05758 5.08501 8.91504 5.94247 8.91504 7.00021C8.91504 8.05794 8.05758 8.9154 6.99985 8.9154C5.94211 8.9154 5.08465 8.05794 5.08465 7.00021Z",
|
|
64
|
+
fill: "#212121"
|
|
65
|
+
}),
|
|
66
|
+
/*#__PURE__*/ jsxRuntime.jsx("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
clipRule: "evenodd",
|
|
69
|
+
d: "M5.52351 0.00390625C5.28138 0.00390625 5.07405 0.177388 5.03135 0.415715L4.7415 2.03321C4.40346 2.18248 4.08346 2.36419 3.78558 2.57432L2.18557 2.00147C1.95684 1.91958 1.70235 2.01395 1.58232 2.22517L0.122204 4.79451C0.00217064 5.00572 0.0513362 5.27266 0.238747 5.42725L1.50086 6.46836C1.48358 6.64355 1.47474 6.82106 1.47474 7.00047C1.47474 7.17981 1.48357 7.35726 1.50084 7.53238L0.238747 8.57347C0.0513362 8.72806 0.00217064 8.995 0.122203 9.20622L1.58232 11.7756C1.70235 11.9868 1.95684 12.0811 2.18557 11.9993L3.78537 11.4265C4.08332 11.6367 4.40341 11.8185 4.74155 11.9678L5.03135 13.585C5.07405 13.8233 5.28138 13.9968 5.52351 13.9968H8.47647C8.7186 13.9968 8.92593 13.8233 8.96863 13.585L9.25846 11.9676C9.5965 11.8183 9.91649 11.6365 10.2144 11.4264L11.8144 11.9993C12.0431 12.0811 12.2976 11.9868 12.4177 11.7756L13.8778 9.20622C13.9978 8.995 13.9486 8.72806 13.7612 8.57347L12.4988 7.5321C12.516 7.35706 12.5249 7.17971 12.5249 7.00047C12.5249 6.82116 12.516 6.64375 12.4988 6.46864L13.7612 5.42725C13.9486 5.27266 13.9978 5.00572 13.8778 4.79451L12.4177 2.22517C12.2976 2.01395 12.0431 1.91958 11.8144 2.00147L10.2141 2.57441C9.91636 2.36433 9.59645 2.18264 9.25851 2.0334L8.96863 0.415715C8.92593 0.177389 8.7186 0.00390625 8.47647 0.00390625H5.52351ZM5.67747 2.47943L5.94187 1.00391H8.0581L8.32253 2.47958C8.35348 2.6523 8.47271 2.79616 8.63668 2.85863C9.06768 3.02283 9.46674 3.25007 9.82215 3.5288C9.95734 3.63483 10.1375 3.66402 10.2993 3.6061L11.7559 3.08459L12.8007 4.92323L11.6503 5.8722C11.5145 5.98427 11.4476 6.15956 11.4743 6.33366C11.5076 6.55089 11.5249 6.77354 11.5249 7.00047C11.5249 7.22735 11.5076 7.44993 11.4743 7.66711C11.4476 7.8412 11.5145 8.01648 11.6504 8.12855L12.8007 9.07749L11.7559 10.9161L10.2994 10.3947C10.1377 10.3368 9.95752 10.366 9.82233 10.472C9.46686 10.7508 9.06773 10.9781 8.63664 11.1423C8.47267 11.2048 8.35344 11.3487 8.32249 11.5214L8.0581 12.9968H5.94187L5.67752 11.5215C5.64656 11.3488 5.52732 11.2049 5.36333 11.1425C4.93215 10.9782 4.53292 10.7509 4.17738 10.4721C4.04219 10.3661 3.86203 10.3369 3.70027 10.3948L2.24412 10.9161L1.19924 9.07749L2.34929 8.12883C2.48516 8.01675 2.55204 7.84146 2.52535 7.66736C2.49205 7.4501 2.47474 7.22743 2.47474 7.00047C2.47474 6.77345 2.49206 6.55072 2.52538 6.33341C2.55207 6.15931 2.48519 5.984 2.34932 5.87192L1.19924 4.92323L2.24412 3.08459L3.70047 3.60601C3.86221 3.66392 4.04236 3.63474 4.17755 3.52872C4.53304 3.24994 4.93219 3.02269 5.36329 2.85849C5.52728 2.79603 5.64652 2.65216 5.67747 2.47943Z",
|
|
70
|
+
fill: "#212121"
|
|
71
|
+
})
|
|
72
|
+
]
|
|
73
|
+
})
|
|
105
74
|
})
|
|
75
|
+
}),
|
|
76
|
+
/*#__PURE__*/ jsxRuntime.jsxs("svg", {
|
|
77
|
+
width: "192",
|
|
78
|
+
height: "8",
|
|
79
|
+
viewBox: "0 0 192 8",
|
|
80
|
+
fill: "none",
|
|
81
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
82
|
+
children: [
|
|
83
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
84
|
+
width: "56",
|
|
85
|
+
height: "8",
|
|
86
|
+
rx: "3",
|
|
87
|
+
fill: "#E1E1E1"
|
|
88
|
+
}),
|
|
89
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
90
|
+
x: "68",
|
|
91
|
+
width: "56",
|
|
92
|
+
height: "8",
|
|
93
|
+
rx: "3",
|
|
94
|
+
fill: "#E1E1E1"
|
|
95
|
+
}),
|
|
96
|
+
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
97
|
+
x: "136",
|
|
98
|
+
width: "56",
|
|
99
|
+
height: "8",
|
|
100
|
+
rx: "3",
|
|
101
|
+
fill: "#E1E1E1"
|
|
102
|
+
})
|
|
103
|
+
]
|
|
106
104
|
})
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
width: "192",
|
|
110
|
-
height: "8",
|
|
111
|
-
viewBox: "0 0 192 8",
|
|
112
|
-
fill: "none",
|
|
113
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
114
|
-
children: [
|
|
115
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
116
|
-
width: "56",
|
|
117
|
-
height: "8",
|
|
118
|
-
rx: "3",
|
|
119
|
-
fill: "#E1E1E1"
|
|
120
|
-
}),
|
|
121
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
122
|
-
x: "68",
|
|
123
|
-
width: "56",
|
|
124
|
-
height: "8",
|
|
125
|
-
rx: "3",
|
|
126
|
-
fill: "#E1E1E1"
|
|
127
|
-
}),
|
|
128
|
-
/*#__PURE__*/ jsxRuntime.jsx("rect", {
|
|
129
|
-
x: "136",
|
|
130
|
-
width: "56",
|
|
131
|
-
height: "8",
|
|
132
|
-
rx: "3",
|
|
133
|
-
fill: "#E1E1E1"
|
|
134
|
-
})
|
|
135
|
-
]
|
|
136
|
-
})
|
|
137
|
-
]
|
|
105
|
+
]
|
|
106
|
+
})
|
|
138
107
|
});
|
|
139
108
|
};
|
|
140
109
|
|