@trackunit/react-components 1.1.0 → 1.1.2
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/index.cjs.js +182 -1454
- package/index.esm.js +48 -1302
- package/package.json +2 -2
- package/src/components/EmptyState/states/AnatomySVG.d.ts +5 -0
- package/src/components/EmptyState/states/BuildingErrorSVG.d.ts +5 -0
- package/src/components/EmptyState/states/Dont3SVG.d.ts +5 -0
- package/src/components/EmptyState/states/PhoneLockSecuritySVG.d.ts +5 -0
- package/src/components/EmptyState/states/RoadBlockSVG.d.ts +5 -0
- package/src/components/EmptyState/states/SearchDocumentSVG.d.ts +5 -0
- package/src/components/EmptyState/states/WallConstructionSVG.d.ts +5 -0
- package/src/components/EmptyState/states/WorkerWithSignSVG.d.ts +5 -0
- package/src/components/EmptyState/states/index.d.ts +7 -0
- package/051071830dacb5a2.svg +0 -36
- package/143a6e982b3d1ec9.svg +0 -59
- package/36c10e69abcc3b8f.svg +0 -19
- package/8df3d27593b5fba4.svg +0 -70
package/index.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var jsxRuntime = require('react/jsx-runtime');
|
|
4
|
-
var
|
|
4
|
+
var react = require('react');
|
|
5
5
|
var sharedUtils = require('@trackunit/shared-utils');
|
|
6
6
|
var uiDesignTokens = require('@trackunit/ui-design-tokens');
|
|
7
7
|
var uiIcons = require('@trackunit/ui-icons');
|
|
@@ -14,32 +14,13 @@ var cssClassVarianceUtilities = require('@trackunit/css-class-variance-utilities
|
|
|
14
14
|
var reactSlot = require('@radix-ui/react-slot');
|
|
15
15
|
var usehooksTs = require('usehooks-ts');
|
|
16
16
|
var reactRouter = require('@tanstack/react-router');
|
|
17
|
-
var react = require('@floating-ui/react');
|
|
17
|
+
var react$1 = require('@floating-ui/react');
|
|
18
18
|
var omit = require('lodash/omit');
|
|
19
19
|
var tailwindMerge = require('tailwind-merge');
|
|
20
20
|
var reactHelmetAsync = require('react-helmet-async');
|
|
21
21
|
var reactTabs = require('@radix-ui/react-tabs');
|
|
22
22
|
var reactTablePagination = require('@trackunit/react-table-pagination');
|
|
23
23
|
|
|
24
|
-
function _interopNamespaceDefault(e) {
|
|
25
|
-
var n = Object.create(null);
|
|
26
|
-
if (e) {
|
|
27
|
-
Object.keys(e).forEach(function (k) {
|
|
28
|
-
if (k !== 'default') {
|
|
29
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
30
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
31
|
-
enumerable: true,
|
|
32
|
-
get: function () { return e[k]; }
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
n.default = e;
|
|
38
|
-
return Object.freeze(n);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
var React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
42
|
-
|
|
43
24
|
const docs = {
|
|
44
25
|
source: {
|
|
45
26
|
type: "dynamic",
|
|
@@ -163,9 +144,9 @@ const isSafari = () => {
|
|
|
163
144
|
* @returns {JSX.Element} Icon component
|
|
164
145
|
*/
|
|
165
146
|
const Icon = ({ name, size = "large", className, dataTestId, color, onClick, type, style, forwardedRef, ariaLabel, fontSize, ariaLabelledBy, ariaDescribedBy, }) => {
|
|
166
|
-
const useTagRef =
|
|
147
|
+
const useTagRef = react.useRef(null);
|
|
167
148
|
const ICON_CONTAINER_ID = sharedUtils.uuidv4();
|
|
168
|
-
const correctIconType =
|
|
149
|
+
const correctIconType = react.useMemo(() => {
|
|
169
150
|
if (size === "small") {
|
|
170
151
|
return "micro";
|
|
171
152
|
}
|
|
@@ -177,7 +158,7 @@ const Icon = ({ name, size = "large", className, dataTestId, color, onClick, typ
|
|
|
177
158
|
}
|
|
178
159
|
return "outline";
|
|
179
160
|
}, [type, size]);
|
|
180
|
-
const correctViewBox =
|
|
161
|
+
const correctViewBox = react.useMemo(() => {
|
|
181
162
|
if (size === "small") {
|
|
182
163
|
return "0 0 16 16";
|
|
183
164
|
}
|
|
@@ -190,13 +171,13 @@ const Icon = ({ name, size = "large", className, dataTestId, color, onClick, typ
|
|
|
190
171
|
return "0 0 24 24";
|
|
191
172
|
}, [type, size]);
|
|
192
173
|
const iconName = uiIcons.iconNames[name];
|
|
193
|
-
const href =
|
|
174
|
+
const href = react.useMemo(() => ({
|
|
194
175
|
solid: `${IconSpriteSolid}#${iconName}`,
|
|
195
176
|
outline: `${IconSpriteOutline}#${iconName}`,
|
|
196
177
|
mini: `${IconSpriteMini}#${iconName}`,
|
|
197
178
|
micro: `${IconSpriteMicro}#${iconName}`,
|
|
198
179
|
}), [iconName]);
|
|
199
|
-
|
|
180
|
+
react.useEffect(() => {
|
|
200
181
|
if (isSafari() && useTagRef.current) {
|
|
201
182
|
useTagRef.current.setAttribute("href", href[correctIconType]);
|
|
202
183
|
}
|
|
@@ -273,7 +254,7 @@ const cvaTagIcon = cssClassVarianceUtilities.cvaMerge(["cursor-pointer", "transi
|
|
|
273
254
|
* @param {TagProps} props - The props for the tag component
|
|
274
255
|
* @returns {JSX.Element} tag component
|
|
275
256
|
*/
|
|
276
|
-
const Tag =
|
|
257
|
+
const Tag = react.forwardRef(({ className, dataTestId, children, size = "medium", onClose, color = "primary", disabled = false }, ref) => {
|
|
277
258
|
return (jsxRuntime.jsxs("span", { className: cvaTag({ className, size, color, layout: onClose ? "withIcon" : "default" }), "data-testid": dataTestId, ref: ref, children: [children, Boolean(onClose) && !disabled ? (
|
|
278
259
|
// a fix for multiselect deselecting tags working together with fade out animation
|
|
279
260
|
jsxRuntime.jsx("div", { className: cvaTagIconContainer(), onMouseDown: onClose, children: jsxRuntime.jsx(Icon, { className: cvaTagIcon(), dataTestId: dataTestId + "Icon", name: "XCircle", size: size, style: { WebkitTransition: "-webkit-transform 0.150s" }, type: "solid" }) })) : null] }));
|
|
@@ -294,8 +275,8 @@ const PackageNameStoryComponent = ({ packageJSON }) => {
|
|
|
294
275
|
* @returns {boolean} True if the text spans multiple lines
|
|
295
276
|
*/
|
|
296
277
|
const useIsTextWrapping = (ref) => {
|
|
297
|
-
const [isWrapping, setIsWrapping] =
|
|
298
|
-
|
|
278
|
+
const [isWrapping, setIsWrapping] = react.useState(false);
|
|
279
|
+
react.useEffect(() => {
|
|
299
280
|
if (!ref.current) {
|
|
300
281
|
setIsWrapping(false);
|
|
301
282
|
return;
|
|
@@ -368,8 +349,8 @@ const cvaText = cssClassVarianceUtilities.cvaMerge(["text-black", "m-0", "relati
|
|
|
368
349
|
* @param {TextProps} props - The props for the Text component
|
|
369
350
|
* @returns {JSX.Element} Text component
|
|
370
351
|
*/
|
|
371
|
-
const Text =
|
|
372
|
-
return
|
|
352
|
+
const Text = react.forwardRef(({ children, type = "p", size = "medium", align = "left", weight = "normal", underline = false, inverted = false, subtle = false, italicize = false, uppercase = false, disabled = false, className, dataTestId, ...rest }, ref) => {
|
|
353
|
+
return react.createElement(type, {
|
|
373
354
|
ref,
|
|
374
355
|
className: cvaText({
|
|
375
356
|
inverted,
|
|
@@ -699,7 +680,7 @@ const cvaIconButton = cssClassVarianceUtilities.cvaMerge([], {
|
|
|
699
680
|
* @param {ButtonProps} props - The props for the Button component
|
|
700
681
|
* @returns {JSX.Element} Button component
|
|
701
682
|
*/
|
|
702
|
-
const Button =
|
|
683
|
+
const Button = react.forwardRef(({ onClick, children, loading, disabled, className, fullWidth = false, prefix, suffix, variant = "primary", type = "button", size = "medium", square = false, dataTestId, title, role, tabIndex, asChild = false, circular, ...rest }, ref) => {
|
|
703
684
|
const Comp = asChild ? reactSlot.Slot : "button";
|
|
704
685
|
const sharedCompProps = {
|
|
705
686
|
ref,
|
|
@@ -724,7 +705,7 @@ Button.displayName = "Button";
|
|
|
724
705
|
/**
|
|
725
706
|
* Buttons are clickable elements that are used to trigger actions. They communicate calls to action to the user and allow users to interact with pages in a variety of ways. The Icon Button is a version of the standard Button component without the text label.
|
|
726
707
|
*/
|
|
727
|
-
const IconButton =
|
|
708
|
+
const IconButton = react.forwardRef(({ icon, size = "medium", square = true, loading, disabled, className, ...rest }, ref) => {
|
|
728
709
|
return (jsxRuntime.jsx(Button, { className: cvaIconButton({ size: size, className }), disabled: disabled || loading, loading: loading,
|
|
729
710
|
// eslint-disable-next-line local-rules/design-guideline-button-icon-size-match
|
|
730
711
|
prefix: !loading ? icon : undefined, ref: ref, size: size, square: square, ...rest }));
|
|
@@ -774,10 +755,10 @@ const cvaAlertIconContainer = cssClassVarianceUtilities.cvaMerge(["self-start",
|
|
|
774
755
|
* @returns {JSX.Element} Alert component
|
|
775
756
|
*/
|
|
776
757
|
const Alert = ({ color = "info", title, className, children, primaryAction, secondaryAction, onClose, dataTestId, autoScroll, }) => {
|
|
777
|
-
const ref =
|
|
778
|
-
const titleRef =
|
|
758
|
+
const ref = react.useRef(null);
|
|
759
|
+
const titleRef = react.useRef(null);
|
|
779
760
|
const isWrapping = useIsTextWrapping(titleRef);
|
|
780
|
-
|
|
761
|
+
react.useEffect(() => {
|
|
781
762
|
if (autoScroll) {
|
|
782
763
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
783
764
|
ref.current?.scrollIntoView?.();
|
|
@@ -872,7 +853,7 @@ const useClickOutside = (el, options = {}, onClick) => {
|
|
|
872
853
|
}
|
|
873
854
|
};
|
|
874
855
|
const cleanup = () => window.removeEventListener("click", handler);
|
|
875
|
-
|
|
856
|
+
react.useEffect(() => {
|
|
876
857
|
if (active) {
|
|
877
858
|
window.addEventListener("click", handler);
|
|
878
859
|
}
|
|
@@ -944,22 +925,22 @@ const createBreakpointState = ({ width }) => {
|
|
|
944
925
|
* }
|
|
945
926
|
*/
|
|
946
927
|
const useContainerBreakpoints = (ref) => {
|
|
947
|
-
const [containerSize, setContainerSize] =
|
|
948
|
-
|
|
928
|
+
const [containerSize, setContainerSize] = react.useState(() => defaultBreakpointState);
|
|
929
|
+
react.useEffect(() => {
|
|
949
930
|
if (process.env.NODE_ENV === "development" && !ref.current) {
|
|
950
931
|
// eslint-disable-next-line no-console
|
|
951
932
|
console.warn("useContainerBreakpoints: The provided ref is not attached to any element. " +
|
|
952
933
|
"Make sure to pass the ref to an element using the ref prop, like: <div ref={myRef}>", "\nComponent:", ref.current);
|
|
953
934
|
}
|
|
954
935
|
}, [ref]);
|
|
955
|
-
const updateContainerSize =
|
|
936
|
+
const updateContainerSize = react.useCallback(() => {
|
|
956
937
|
if (!ref.current) {
|
|
957
938
|
return;
|
|
958
939
|
}
|
|
959
940
|
const width = ref.current.getBoundingClientRect().width;
|
|
960
941
|
setContainerSize(createBreakpointState({ width }));
|
|
961
942
|
}, [ref]);
|
|
962
|
-
|
|
943
|
+
react.useEffect(() => {
|
|
963
944
|
const element = ref.current;
|
|
964
945
|
if (!element) {
|
|
965
946
|
return;
|
|
@@ -985,10 +966,10 @@ const useContainerBreakpoints = (ref) => {
|
|
|
985
966
|
* @returns {object} An object containing functions to start and stop the timeout.
|
|
986
967
|
*/
|
|
987
968
|
const useTimeout = ({ onTimeout, duration }) => {
|
|
988
|
-
const ready =
|
|
989
|
-
const timeout =
|
|
990
|
-
const callback =
|
|
991
|
-
const startTimeout =
|
|
969
|
+
const ready = react.useRef(false);
|
|
970
|
+
const timeout = react.useRef();
|
|
971
|
+
const callback = react.useRef(onTimeout);
|
|
972
|
+
const startTimeout = react.useCallback(() => {
|
|
992
973
|
ready.current = false;
|
|
993
974
|
timeout.current && clearTimeout(timeout.current);
|
|
994
975
|
timeout.current = setTimeout(() => {
|
|
@@ -996,15 +977,15 @@ const useTimeout = ({ onTimeout, duration }) => {
|
|
|
996
977
|
callback.current();
|
|
997
978
|
}, duration);
|
|
998
979
|
}, [duration]);
|
|
999
|
-
const stopTimeout =
|
|
980
|
+
const stopTimeout = react.useCallback(() => {
|
|
1000
981
|
ready.current = null;
|
|
1001
982
|
timeout.current && clearTimeout(timeout.current);
|
|
1002
983
|
}, []);
|
|
1003
|
-
|
|
984
|
+
react.useEffect(() => {
|
|
1004
985
|
// Use the latest callback function provided by the parent component.
|
|
1005
986
|
callback.current = onTimeout;
|
|
1006
987
|
}, [onTimeout]);
|
|
1007
|
-
|
|
988
|
+
react.useEffect(() => {
|
|
1008
989
|
// Cleanup function to clear the timeout when component unmounts
|
|
1009
990
|
return () => {
|
|
1010
991
|
timeout.current && clearTimeout(timeout.current);
|
|
@@ -1024,8 +1005,8 @@ const useTimeout = ({ onTimeout, duration }) => {
|
|
|
1024
1005
|
* @returns {object} An object containing functions to start and stop the timeout, current retry count, and the timeout status.
|
|
1025
1006
|
*/
|
|
1026
1007
|
const useContinuousTimeout = ({ onTimeout, onMaxRetries, duration, maxRetries }) => {
|
|
1027
|
-
const retries =
|
|
1028
|
-
const [isRunning, setIsRunning] =
|
|
1008
|
+
const retries = react.useRef(0);
|
|
1009
|
+
const [isRunning, setIsRunning] = react.useState(false); // Track the timeout status
|
|
1029
1010
|
const stopTimeouts = () => {
|
|
1030
1011
|
stopTimeout();
|
|
1031
1012
|
setIsRunning(false); // Update the status when stopped
|
|
@@ -1073,8 +1054,8 @@ const useContinuousTimeout = ({ onTimeout, onMaxRetries, duration, maxRetries })
|
|
|
1073
1054
|
*
|
|
1074
1055
|
*/
|
|
1075
1056
|
const useDebounce = (value, delay = 500, direction, onBounce) => {
|
|
1076
|
-
const [debouncedValue, setDebouncedValue] =
|
|
1077
|
-
|
|
1057
|
+
const [debouncedValue, setDebouncedValue] = react.useState(value);
|
|
1058
|
+
react.useEffect(() => {
|
|
1078
1059
|
let handler;
|
|
1079
1060
|
if ((direction === "in" && !debouncedValue && value) ||
|
|
1080
1061
|
(direction === "out" && debouncedValue && !value) ||
|
|
@@ -1105,9 +1086,9 @@ const useDebounce = (value, delay = 500, direction, onBounce) => {
|
|
|
1105
1086
|
*/
|
|
1106
1087
|
function useDevicePixelRatio(options) {
|
|
1107
1088
|
const dpr = getDevicePixelRatio(options);
|
|
1108
|
-
const [currentDpr, setCurrentDpr] =
|
|
1089
|
+
const [currentDpr, setCurrentDpr] = react.useState(dpr);
|
|
1109
1090
|
const { defaultDpr, maxDpr, round } = options || {};
|
|
1110
|
-
|
|
1091
|
+
react.useEffect(() => {
|
|
1111
1092
|
const canListen = typeof window !== "undefined" && "matchMedia" in window;
|
|
1112
1093
|
if (!canListen) {
|
|
1113
1094
|
return;
|
|
@@ -1142,7 +1123,7 @@ function getDevicePixelRatio(options) {
|
|
|
1142
1123
|
* If no custom state is provided, the fallback state will be used and it works like a normal useState hook.
|
|
1143
1124
|
*/
|
|
1144
1125
|
const useElevatedState = (initialState, customState) => {
|
|
1145
|
-
const fallbackState =
|
|
1126
|
+
const fallbackState = react.useState(initialState);
|
|
1146
1127
|
return customState ?? fallbackState;
|
|
1147
1128
|
};
|
|
1148
1129
|
|
|
@@ -1151,7 +1132,7 @@ const useElevatedState = (initialState, customState) => {
|
|
|
1151
1132
|
* Size and position of the element relative to the viewport.
|
|
1152
1133
|
*/
|
|
1153
1134
|
const useGeometry = (ref) => {
|
|
1154
|
-
const [geometry, setGeometry] =
|
|
1135
|
+
const [geometry, setGeometry] = react.useState({
|
|
1155
1136
|
width: 0,
|
|
1156
1137
|
height: 0,
|
|
1157
1138
|
top: 0,
|
|
@@ -1161,8 +1142,8 @@ const useGeometry = (ref) => {
|
|
|
1161
1142
|
x: 0,
|
|
1162
1143
|
y: 0,
|
|
1163
1144
|
});
|
|
1164
|
-
const resizeObserver =
|
|
1165
|
-
|
|
1145
|
+
const resizeObserver = react.useRef(null);
|
|
1146
|
+
react.useEffect(() => {
|
|
1166
1147
|
if (!ref.current) {
|
|
1167
1148
|
return;
|
|
1168
1149
|
}
|
|
@@ -1203,7 +1184,7 @@ const useGeometry = (ref) => {
|
|
|
1203
1184
|
* @returns {object} The object containing the onMouseEnter, onMouseLeave and hovering props
|
|
1204
1185
|
*/
|
|
1205
1186
|
const useHover = ({ debounced = false, delay = 100, direction = "out" } = { debounced: false }) => {
|
|
1206
|
-
const [hovering, setHovering] =
|
|
1187
|
+
const [hovering, setHovering] = react.useState(false);
|
|
1207
1188
|
const debouncedHovering = useDebounce(hovering, delay, direction);
|
|
1208
1189
|
const onMouseEnter = () => {
|
|
1209
1190
|
setHovering(true);
|
|
@@ -1220,7 +1201,7 @@ const useHover = ({ debounced = false, delay = 100, direction = "out" } = { debo
|
|
|
1220
1201
|
* @returns {boolean} Returns true if it is the first render, false otherwise.
|
|
1221
1202
|
*/
|
|
1222
1203
|
const useIsFirstRender = () => {
|
|
1223
|
-
const renderRef =
|
|
1204
|
+
const renderRef = react.useRef(true);
|
|
1224
1205
|
if (renderRef.current === true) {
|
|
1225
1206
|
renderRef.current = false;
|
|
1226
1207
|
return true;
|
|
@@ -1232,7 +1213,7 @@ const useIsFirstRender = () => {
|
|
|
1232
1213
|
* Custom hook for checking if the browser is in fullscreen mode.
|
|
1233
1214
|
*/
|
|
1234
1215
|
const useIsFullscreen = () => {
|
|
1235
|
-
const [isFullScreen, setIsFullScreen] =
|
|
1216
|
+
const [isFullScreen, setIsFullScreen] = react.useState(false);
|
|
1236
1217
|
document.addEventListener("fullscreenchange", () => {
|
|
1237
1218
|
if (document.fullscreenElement) {
|
|
1238
1219
|
setIsFullScreen(true);
|
|
@@ -1251,8 +1232,8 @@ const useIsFullscreen = () => {
|
|
|
1251
1232
|
* @returns {boolean} True if the text is cut off.
|
|
1252
1233
|
*/
|
|
1253
1234
|
const useIsTextCutOff = (ref) => {
|
|
1254
|
-
const [isTextCutOff, setIsTextCutOff] =
|
|
1255
|
-
|
|
1235
|
+
const [isTextCutOff, setIsTextCutOff] = react.useState(false);
|
|
1236
|
+
react.useEffect(() => {
|
|
1256
1237
|
if (!ref.current) {
|
|
1257
1238
|
setIsTextCutOff(false);
|
|
1258
1239
|
return;
|
|
@@ -1268,8 +1249,8 @@ const useIsTextCutOff = (ref) => {
|
|
|
1268
1249
|
* @returns {WindowSize} An object containing the current window height and width.
|
|
1269
1250
|
*/
|
|
1270
1251
|
const useResize = () => {
|
|
1271
|
-
const [size, setSize] =
|
|
1272
|
-
|
|
1252
|
+
const [size, setSize] = react.useState(getWindowSize());
|
|
1253
|
+
react.useEffect(() => {
|
|
1273
1254
|
const handleResize = () => {
|
|
1274
1255
|
setSize(getWindowSize());
|
|
1275
1256
|
};
|
|
@@ -1306,12 +1287,12 @@ const SCROLL_DEBOUNCE_TIME = 50;
|
|
|
1306
1287
|
* @returns {object} An object containing if the element is scrollable, is at the top, is at the bottom, and its current scroll position.
|
|
1307
1288
|
*/
|
|
1308
1289
|
const useScrollDetection = (elementRef) => {
|
|
1309
|
-
const [isScrollable, setIsScrollable] =
|
|
1310
|
-
const [isAtTop, setIsAtTop] =
|
|
1311
|
-
const [isAtBottom, setIsAtBottom] =
|
|
1312
|
-
const [scrollPosition, setScrollPosition] =
|
|
1313
|
-
const observerRef =
|
|
1314
|
-
const checkScrollable =
|
|
1290
|
+
const [isScrollable, setIsScrollable] = react.useState(false);
|
|
1291
|
+
const [isAtTop, setIsAtTop] = react.useState(true);
|
|
1292
|
+
const [isAtBottom, setIsAtBottom] = react.useState(false);
|
|
1293
|
+
const [scrollPosition, setScrollPosition] = react.useState({ top: 0, bottom: 0 });
|
|
1294
|
+
const observerRef = react.useRef();
|
|
1295
|
+
const checkScrollable = react.useCallback(() => {
|
|
1315
1296
|
const element = elementRef.current;
|
|
1316
1297
|
if (!element) {
|
|
1317
1298
|
return;
|
|
@@ -1319,7 +1300,7 @@ const useScrollDetection = (elementRef) => {
|
|
|
1319
1300
|
const hasOverflow = element.scrollHeight > element.clientHeight;
|
|
1320
1301
|
setIsScrollable(hasOverflow);
|
|
1321
1302
|
}, [elementRef]);
|
|
1322
|
-
const checkScrollPosition =
|
|
1303
|
+
const checkScrollPosition = react.useCallback(() => {
|
|
1323
1304
|
const element = elementRef.current;
|
|
1324
1305
|
if (!element) {
|
|
1325
1306
|
return;
|
|
@@ -1330,7 +1311,7 @@ const useScrollDetection = (elementRef) => {
|
|
|
1330
1311
|
setScrollPosition(prev => ({ ...prev, top: scrollTop, bottom: clientHeight - scrollTop }));
|
|
1331
1312
|
}, [elementRef]);
|
|
1332
1313
|
const debouncedCheckScrollPosition = usehooksTs.useDebounceCallback(checkScrollPosition, SCROLL_DEBOUNCE_TIME);
|
|
1333
|
-
|
|
1314
|
+
react.useEffect(() => {
|
|
1334
1315
|
const element = elementRef.current;
|
|
1335
1316
|
if (!element) {
|
|
1336
1317
|
return;
|
|
@@ -1360,8 +1341,8 @@ const useScrollDetection = (elementRef) => {
|
|
|
1360
1341
|
* @returns {boolean} Returns true if it is the first render, false otherwise.
|
|
1361
1342
|
*/
|
|
1362
1343
|
const useSelfUpdatingRef = (initialState) => {
|
|
1363
|
-
const stateRef =
|
|
1364
|
-
|
|
1344
|
+
const stateRef = react.useRef(initialState);
|
|
1345
|
+
react.useEffect(() => {
|
|
1365
1346
|
stateRef.current = initialState;
|
|
1366
1347
|
}, [initialState]);
|
|
1367
1348
|
return stateRef;
|
|
@@ -1387,15 +1368,15 @@ const useSelfUpdatingRef = (initialState) => {
|
|
|
1387
1368
|
* }
|
|
1388
1369
|
*/
|
|
1389
1370
|
const useViewportBreakpoints = () => {
|
|
1390
|
-
const [viewportSize, setViewportSize] =
|
|
1391
|
-
const updateViewportSize =
|
|
1371
|
+
const [viewportSize, setViewportSize] = react.useState(() => defaultBreakpointState);
|
|
1372
|
+
const updateViewportSize = react.useCallback(() => {
|
|
1392
1373
|
const newViewportSize = sharedUtils.objectEntries(uiDesignTokens.themeScreenSizeAsNumber).reduce((acc, [size, minWidth]) => ({
|
|
1393
1374
|
...acc,
|
|
1394
1375
|
[breakpointPropsMap[size]]: window.matchMedia(`(min-width: ${minWidth}px)`).matches,
|
|
1395
1376
|
}), { ...defaultBreakpointState });
|
|
1396
1377
|
setViewportSize(newViewportSize);
|
|
1397
1378
|
}, []);
|
|
1398
|
-
|
|
1379
|
+
react.useEffect(() => {
|
|
1399
1380
|
// Initial check
|
|
1400
1381
|
updateViewportSize();
|
|
1401
1382
|
// Set up listeners for each breakpoint
|
|
@@ -1418,16 +1399,16 @@ const hasFocus = () => typeof document !== "undefined" && document.hasFocus();
|
|
|
1418
1399
|
* Use this hook to disable functionality while the tab is hidden within the browser or to react to focus or blur events
|
|
1419
1400
|
*/
|
|
1420
1401
|
const useWindowActivity = ({ onFocus, onBlur } = { onBlur: undefined, onFocus: undefined }) => {
|
|
1421
|
-
const [focused, setFocused] =
|
|
1422
|
-
const onFocusInternal =
|
|
1402
|
+
const [focused, setFocused] = react.useState(hasFocus());
|
|
1403
|
+
const onFocusInternal = react.useCallback(() => {
|
|
1423
1404
|
setFocused(hasFocus());
|
|
1424
1405
|
onFocus?.();
|
|
1425
1406
|
}, [onFocus]);
|
|
1426
|
-
const onBlurInternal =
|
|
1407
|
+
const onBlurInternal = react.useCallback(() => {
|
|
1427
1408
|
setFocused(hasFocus());
|
|
1428
1409
|
onBlur?.();
|
|
1429
1410
|
}, [onBlur]);
|
|
1430
|
-
|
|
1411
|
+
react.useEffect(() => {
|
|
1431
1412
|
setFocused(hasFocus()); // Focus for additional renders
|
|
1432
1413
|
window.addEventListener("focus", onFocusInternal);
|
|
1433
1414
|
window.addEventListener("blur", onBlurInternal);
|
|
@@ -1471,8 +1452,8 @@ const BreadcrumbForLargeScreen = ({ dataTestId, breadcrumbItems }) => {
|
|
|
1471
1452
|
* BreadcrumbForMediumScreen is a helper component that renders the breadcrumb items for medium screens.
|
|
1472
1453
|
*/
|
|
1473
1454
|
const BreadcrumbForMediumScreen = ({ dataTestId, breadcrumbItems }) => {
|
|
1474
|
-
const [expanded, setExpanded] =
|
|
1475
|
-
const getReducedArray =
|
|
1455
|
+
const [expanded, setExpanded] = react.useState(false);
|
|
1456
|
+
const getReducedArray = react.useCallback(() => {
|
|
1476
1457
|
let reducedArrayElements = [];
|
|
1477
1458
|
const collapsibleButton = (jsxRuntime.jsxs("div", { className: cvaBreadcrumbItem(), children: [jsxRuntime.jsx(IconButton, { dataTestId: `collapsibleButton-${dataTestId}`, icon: jsxRuntime.jsx(Icon, { name: "EllipsisHorizontal", size: "small" }), onClick: () => setExpanded(true), size: "small", variant: "ghost-neutral" }), jsxRuntime.jsx(Icon, { color: "secondary", name: "Slash", size: "small" })] }));
|
|
1478
1459
|
const firstBreadcrumbItem = breadcrumbItems[0];
|
|
@@ -1723,7 +1704,7 @@ const Heading = ({ variant = "primary", inverted = false, subtle = false, classN
|
|
|
1723
1704
|
tertiary: "h3",
|
|
1724
1705
|
subtitle: "h4",
|
|
1725
1706
|
};
|
|
1726
|
-
return
|
|
1707
|
+
return react.createElement(semanticType[variant], {
|
|
1727
1708
|
...rest,
|
|
1728
1709
|
className: cvaHeading({ subtle, inverted, size: variant, className }),
|
|
1729
1710
|
"data-testid": dataTestId,
|
|
@@ -1820,8 +1801,8 @@ const cvaChevronIcon = cssClassVarianceUtilities.cvaMerge(["transition-transform
|
|
|
1820
1801
|
*/
|
|
1821
1802
|
const Collapse = ({ id, initialExpanded = false, onToggle, label, children, className, headerClassName, headerAddon, dataTestId, animate = true, extraPadding = true, }) => {
|
|
1822
1803
|
const LABEL_ID = sharedUtils.uuidv4();
|
|
1823
|
-
const [expanded, setExpanded] =
|
|
1824
|
-
const handleClick =
|
|
1804
|
+
const [expanded, setExpanded] = react.useState(initialExpanded);
|
|
1805
|
+
const handleClick = react.useCallback((e) => {
|
|
1825
1806
|
if (onToggle) {
|
|
1826
1807
|
onToggle(e, !expanded);
|
|
1827
1808
|
}
|
|
@@ -1830,7 +1811,7 @@ const Collapse = ({ id, initialExpanded = false, onToggle, label, children, clas
|
|
|
1830
1811
|
return (jsxRuntime.jsxs("div", { className: cvaCollapse({ className }), "data-testid": dataTestId, children: [jsxRuntime.jsxs("div", { "aria-controls": id, "aria-expanded": expanded, className: cvaCollapseHeader({ expanded, className: headerClassName }), onClick: handleClick, role: "button", children: [jsxRuntime.jsxs("div", { className: cvaCollapseLabelContainer(), children: [jsxRuntime.jsx(Icon, { ariaLabelledBy: LABEL_ID, className: cvaChevronIcon({ expanded }), name: "ChevronRight", size: "small" }), jsxRuntime.jsx(Text, { id: LABEL_ID, type: "span", weight: "bold", children: label })] }), headerAddon ? headerAddon : null] }), jsxRuntime.jsx(Collapsible, { expanded: expanded, extraPadding: extraPadding, id: id, children: expanded || animate ? children : null })] }));
|
|
1831
1812
|
};
|
|
1832
1813
|
const Collapsible = ({ children, expanded, id, extraPadding }) => {
|
|
1833
|
-
const ref =
|
|
1814
|
+
const ref = react.useRef(null);
|
|
1834
1815
|
const { height } = useGeometry(ref);
|
|
1835
1816
|
return (jsxRuntime.jsx("div", { className: cvaCollapseAnimated({ expanded }), id: id, style: { height: expanded ? height : "0" }, children: jsxRuntime.jsx("div", { ref: ref, children: jsxRuntime.jsx("div", { className: cvaCollapsible({ extraPadding }), children: children }) }) }));
|
|
1836
1817
|
};
|
|
@@ -1894,7 +1875,7 @@ const cvaCopyableText = cssClassVarianceUtilities.cvaMerge([
|
|
|
1894
1875
|
*/
|
|
1895
1876
|
const CopyableText = ({ text, alternativeText, dataTestId, className }) => {
|
|
1896
1877
|
const value = alternativeText ?? text ?? "";
|
|
1897
|
-
const [animating, setAnimating] =
|
|
1878
|
+
const [animating, setAnimating] = react.useState(false);
|
|
1898
1879
|
const [, copyToClipboard] = usehooksTs.useCopyToClipboard();
|
|
1899
1880
|
const handleOnClick = () => {
|
|
1900
1881
|
copyToClipboard(value);
|
|
@@ -1919,7 +1900,7 @@ const cvaSkeletonLine = cssClassVarianceUtilities.cvaMerge([
|
|
|
1919
1900
|
/**
|
|
1920
1901
|
* Display placeholder lines before the data gets loaded to reduce load-time frustration.
|
|
1921
1902
|
*/
|
|
1922
|
-
const SkeletonLines =
|
|
1903
|
+
const SkeletonLines = react.memo(({ margin = "10px 0", lines = 1, height, width = "100%", className, dataTestId }) => {
|
|
1923
1904
|
const skeletonLines = [];
|
|
1924
1905
|
const getWidth = (index) => {
|
|
1925
1906
|
if (width instanceof Array) {
|
|
@@ -1955,1306 +1936,53 @@ const cvaContainerStyles = cssClassVarianceUtilities.cvaMerge([
|
|
|
1955
1936
|
]);
|
|
1956
1937
|
const cvaImgStyles = cssClassVarianceUtilities.cvaMerge(["w-2/3", "min-w-[60px]", "max-w-[200px]"]);
|
|
1957
1938
|
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
title,
|
|
1966
|
-
titleId
|
|
1967
|
-
} = _ref,
|
|
1968
|
-
props = _objectWithoutProperties$5(_ref, _excluded$5);
|
|
1969
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$5({
|
|
1970
|
-
width: 200,
|
|
1971
|
-
height: 200,
|
|
1972
|
-
viewBox: "0 0 200 200",
|
|
1973
|
-
fill: "none",
|
|
1974
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1975
|
-
ref: ref,
|
|
1976
|
-
"aria-labelledby": titleId
|
|
1977
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
1978
|
-
id: titleId
|
|
1979
|
-
}, title) : null, _path$4 || (_path$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1980
|
-
d: "M101.922 194C146.105 194 181.922 158.183 181.922 114C181.922 69.8172 146.105 34 101.922 34C57.7391 34 21.9219 69.8172 21.9219 114C21.9219 158.183 57.7391 194 101.922 194Z",
|
|
1981
|
-
fill: "#F1F5F9"
|
|
1982
|
-
})), _path2$4 || (_path2$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1983
|
-
d: "M80.2002 54C80.2002 54.5304 79.9895 55.0391 79.6144 55.4142C79.2393 55.7893 78.7306 56 78.2002 56H66.2002C65.6698 56 65.1611 55.7893 64.786 55.4142C64.4109 55.0391 64.2002 54.5304 64.2002 54V48H80.2002V54Z",
|
|
1984
|
-
fill: "#E2E8F0",
|
|
1985
|
-
stroke: "#334155",
|
|
1986
|
-
strokeWidth: 2,
|
|
1987
|
-
strokeLinecap: "round",
|
|
1988
|
-
strokeLinejoin: "round"
|
|
1989
|
-
})), _path3$4 || (_path3$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1990
|
-
d: "M50.208 92L72.208 76L94.208 92H50.208Z",
|
|
1991
|
-
stroke: "#334155",
|
|
1992
|
-
strokeWidth: 2,
|
|
1993
|
-
strokeLinecap: "round",
|
|
1994
|
-
strokeLinejoin: "round"
|
|
1995
|
-
})), _path4$4 || (_path4$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1996
|
-
d: "M72.208 76C74.4171 76 76.208 74.2091 76.208 72C76.208 69.7909 74.4171 68 72.208 68C69.9989 68 68.208 69.7909 68.208 72C68.208 74.2091 69.9989 76 72.208 76Z",
|
|
1997
|
-
fill: "white",
|
|
1998
|
-
stroke: "#334155",
|
|
1999
|
-
strokeWidth: 2,
|
|
2000
|
-
strokeLinecap: "round",
|
|
2001
|
-
strokeLinejoin: "round"
|
|
2002
|
-
})), _path5$4 || (_path5$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2003
|
-
d: "M72.208 56V68",
|
|
2004
|
-
stroke: "#334155",
|
|
2005
|
-
strokeWidth: 2,
|
|
2006
|
-
strokeLinecap: "round",
|
|
2007
|
-
strokeLinejoin: "round"
|
|
2008
|
-
})), _path6$4 || (_path6$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2009
|
-
d: "M133.922 187.342C138.101 185.517 142.116 183.336 145.922 180.824V48H133.922V187.342Z",
|
|
2010
|
-
fill: "white"
|
|
2011
|
-
})), _path7$4 || (_path7$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2012
|
-
d: "M145.922 180.824V48H133.922V187.342",
|
|
2013
|
-
stroke: "#334155",
|
|
2014
|
-
strokeWidth: 2,
|
|
2015
|
-
strokeLinecap: "round",
|
|
2016
|
-
strokeLinejoin: "round"
|
|
2017
|
-
})), _path8$4 || (_path8$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2018
|
-
d: "M133.922 48L145.922 60L133.922 72L145.922 84L133.922 96L145.922 108L133.922 120L145.922 132L133.922 144L145.922 156L133.922 168L145.922 180",
|
|
2019
|
-
stroke: "#334155",
|
|
2020
|
-
strokeWidth: 2,
|
|
2021
|
-
strokeLinecap: "round",
|
|
2022
|
-
strokeLinejoin: "round"
|
|
2023
|
-
})), _path9$4 || (_path9$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2024
|
-
d: "M146.208 20H134.208V36H146.208V20Z",
|
|
2025
|
-
fill: "white",
|
|
2026
|
-
stroke: "#334155",
|
|
2027
|
-
strokeWidth: 2,
|
|
2028
|
-
strokeLinecap: "round",
|
|
2029
|
-
strokeLinejoin: "round"
|
|
2030
|
-
})), _path10$4 || (_path10$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2031
|
-
d: "M26.6219 48C26.424 48 26.2306 47.9412 26.0661 47.8312C25.9016 47.7212 25.7735 47.5649 25.6979 47.382C25.6223 47.1991 25.6027 46.998 25.6415 46.8039C25.6803 46.6099 25.7758 46.4317 25.9159 46.292L36.1999 36H168.2V48H26.6219Z",
|
|
2032
|
-
fill: "white",
|
|
2033
|
-
stroke: "#334155",
|
|
2034
|
-
strokeWidth: 2,
|
|
2035
|
-
strokeLinecap: "round",
|
|
2036
|
-
strokeLinejoin: "round"
|
|
2037
|
-
})), _path11$4 || (_path11$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2038
|
-
d: "M146.208 20L140.208 6L134.208 20H146.208Z",
|
|
2039
|
-
fill: "white",
|
|
2040
|
-
stroke: "#334155",
|
|
2041
|
-
strokeWidth: 2,
|
|
2042
|
-
strokeLinecap: "round",
|
|
2043
|
-
strokeLinejoin: "round"
|
|
2044
|
-
})), _path12$4 || (_path12$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2045
|
-
d: "M182.2 46C182.2 46.5304 181.989 47.0391 181.614 47.4142C181.239 47.7893 180.73 48 180.2 48H168.2V36C168.2 35.4696 168.41 34.9609 168.785 34.5858C169.161 34.2107 169.669 34 170.2 34H182.2V46Z",
|
|
2046
|
-
fill: "#E2E8F0",
|
|
2047
|
-
stroke: "#334155",
|
|
2048
|
-
strokeWidth: 2,
|
|
2049
|
-
strokeLinecap: "round",
|
|
2050
|
-
strokeLinejoin: "round"
|
|
2051
|
-
})), _path13$4 || (_path13$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2052
|
-
d: "M60.208 36L140.208 6L182.208 34",
|
|
2053
|
-
stroke: "#334155",
|
|
2054
|
-
strokeWidth: 2,
|
|
2055
|
-
strokeLinecap: "round",
|
|
2056
|
-
strokeLinejoin: "round"
|
|
2057
|
-
})), _path14$4 || (_path14$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2058
|
-
d: "M146.208 20L134.208 33.836",
|
|
2059
|
-
stroke: "#334155",
|
|
2060
|
-
strokeWidth: 2,
|
|
2061
|
-
strokeLinecap: "round",
|
|
2062
|
-
strokeLinejoin: "round"
|
|
2063
|
-
})), _path15$4 || (_path15$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2064
|
-
d: "M36.208 36L48.208 48L60.208 36L72.208 48L84.208 36L96.208 48L108.208 36L120.208 48L132.208 36L144.208 48L156.208 36L168.208 48",
|
|
2065
|
-
stroke: "#334155",
|
|
2066
|
-
strokeWidth: 2,
|
|
2067
|
-
strokeLinecap: "round",
|
|
2068
|
-
strokeLinejoin: "round"
|
|
2069
|
-
})), _path16$4 || (_path16$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2070
|
-
d: "M118.14 92H23.992C20.5678 92 17.792 94.7758 17.792 98.2V165.494C17.792 168.918 20.5678 171.694 23.992 171.694H118.14C121.564 171.694 124.34 168.918 124.34 165.494V98.2C124.34 94.7758 121.564 92 118.14 92Z",
|
|
2071
|
-
fill: "#E2E8F0",
|
|
2072
|
-
stroke: "#334155",
|
|
2073
|
-
strokeWidth: 2,
|
|
2074
|
-
strokeLinecap: "round",
|
|
2075
|
-
strokeLinejoin: "round"
|
|
2076
|
-
})), _path17$4 || (_path17$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2077
|
-
d: "M118.14 92H23.9996C22.3553 92 20.7783 92.6532 19.6156 93.8159C18.4528 94.9787 17.7996 96.5557 17.7996 98.2V106.75H124.34V98.2C124.34 96.5557 123.686 94.9787 122.524 93.8159C121.361 92.6532 119.784 92 118.14 92Z",
|
|
2078
|
-
fill: "white",
|
|
2079
|
-
stroke: "#334155",
|
|
2080
|
-
strokeWidth: 2,
|
|
2081
|
-
strokeLinecap: "round",
|
|
2082
|
-
strokeLinejoin: "round"
|
|
2083
|
-
})), _path18$3 || (_path18$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2084
|
-
d: "M27.0922 102.436C28.8043 102.436 30.1922 101.048 30.1922 99.3361C30.1922 97.624 28.8043 96.2361 27.0922 96.2361C25.3801 96.2361 23.9922 97.624 23.9922 99.3361C23.9922 101.048 25.3801 102.436 27.0922 102.436Z",
|
|
2085
|
-
fill: "#E2E8F0",
|
|
2086
|
-
stroke: "#334155",
|
|
2087
|
-
strokeWidth: 2,
|
|
2088
|
-
strokeLinejoin: "round"
|
|
2089
|
-
})), _path19$3 || (_path19$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2090
|
-
d: "M37.8002 102.436C39.5123 102.436 40.9002 101.048 40.9002 99.3361C40.9002 97.624 39.5123 96.2361 37.8002 96.2361C36.0881 96.2361 34.7002 97.624 34.7002 99.3361C34.7002 101.048 36.0881 102.436 37.8002 102.436Z",
|
|
2091
|
-
fill: "#E2E8F0",
|
|
2092
|
-
stroke: "#334155",
|
|
2093
|
-
strokeWidth: 2,
|
|
2094
|
-
strokeLinejoin: "round"
|
|
2095
|
-
})), _path20$3 || (_path20$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2096
|
-
d: "M48.5058 102.436C50.2178 102.436 51.6058 101.048 51.6058 99.3361C51.6058 97.624 50.2178 96.2361 48.5058 96.2361C46.7937 96.2361 45.4058 97.624 45.4058 99.3361C45.4058 101.048 46.7937 102.436 48.5058 102.436Z",
|
|
2097
|
-
fill: "#E2E8F0",
|
|
2098
|
-
stroke: "#334155",
|
|
2099
|
-
strokeWidth: 2,
|
|
2100
|
-
strokeLinejoin: "round"
|
|
2101
|
-
})), _path21$3 || (_path21$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2102
|
-
d: "M82.5722 154.45C81.8565 154.451 81.1478 154.31 80.4869 154.036C79.8261 153.761 79.2262 153.358 78.7222 152.85L71.0662 145.2L63.4002 152.854C62.8944 153.359 62.2941 153.76 61.6335 154.034C60.9728 154.307 60.2648 154.448 59.5498 154.448C58.1057 154.447 56.721 153.873 55.7002 152.852C54.6794 151.831 54.1061 150.446 54.1064 149.002C54.1068 147.558 54.6808 146.173 55.7022 145.152L63.3582 137.498L55.7022 129.842C54.6808 128.821 54.1068 127.436 54.1064 125.992C54.1061 124.548 54.6794 123.163 55.7002 122.142C56.721 121.121 58.1057 120.547 59.5498 120.546C60.9938 120.546 62.3788 121.119 63.4002 122.14L71.0662 129.8L78.7222 122.142C79.2252 121.624 79.8261 121.212 80.49 120.928C81.1538 120.645 81.8674 120.496 82.5892 120.491C83.311 120.486 84.0266 120.625 84.6944 120.899C85.3623 121.172 85.969 121.576 86.4793 122.087C86.9897 122.597 87.3934 123.204 87.6671 123.872C87.9409 124.54 88.0791 125.256 88.0738 125.977C88.0685 126.699 87.9197 127.413 87.6362 128.076C87.3526 128.74 86.94 129.341 86.4222 129.844L78.7662 137.5L86.4222 145.154C87.1831 145.916 87.7013 146.886 87.9111 147.942C88.1209 148.999 88.0131 150.093 87.6011 151.088C87.1891 152.083 86.4916 152.934 85.5965 153.532C84.7014 154.131 83.649 154.449 82.5722 154.45Z",
|
|
2103
|
-
fill: "white",
|
|
2104
|
-
stroke: "#334155",
|
|
2105
|
-
strokeWidth: 2,
|
|
2106
|
-
strokeLinecap: "round",
|
|
2107
|
-
strokeLinejoin: "round"
|
|
2108
|
-
})));
|
|
2109
|
-
};
|
|
2110
|
-
var ForwardRef$5 = /*#__PURE__*/React.forwardRef(SvgBuildingError);
|
|
1939
|
+
/**
|
|
1940
|
+
* The Graphic for the BuildingError EmptyState
|
|
1941
|
+
*/
|
|
1942
|
+
const BuildingErrorSVG = react.forwardRef((props, ref) => {
|
|
1943
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsx("path", { d: "M101.922 194C146.105 194 181.922 158.183 181.922 114C181.922 69.8172 146.105 34 101.922 34C57.7391 34 21.9219 69.8172 21.9219 114C21.9219 158.183 57.7391 194 101.922 194Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M80.2002 54C80.2002 54.5304 79.9895 55.0391 79.6144 55.4142C79.2393 55.7893 78.7306 56 78.2002 56H66.2002C65.6698 56 65.1611 55.7893 64.786 55.4142C64.4109 55.0391 64.2002 54.5304 64.2002 54V48H80.2002V54Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M50.208 92L72.208 76L94.208 92H50.208Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M72.208 76C74.4171 76 76.208 74.2091 76.208 72C76.208 69.7909 74.4171 68 72.208 68C69.9989 68 68.208 69.7909 68.208 72C68.208 74.2091 69.9989 76 72.208 76Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M72.208 56V68", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M133.922 187.342C138.101 185.517 142.116 183.336 145.922 180.824V48H133.922V187.342Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M145.922 180.824V48H133.922V187.342", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M133.922 48L145.922 60L133.922 72L145.922 84L133.922 96L145.922 108L133.922 120L145.922 132L133.922 144L145.922 156L133.922 168L145.922 180", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M146.208 20H134.208V36H146.208V20Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M26.6219 48C26.424 48 26.2306 47.9412 26.0661 47.8312C25.9016 47.7212 25.7735 47.5649 25.6979 47.382C25.6223 47.1991 25.6027 46.998 25.6415 46.8039C25.6803 46.6099 25.7758 46.4317 25.9159 46.292L36.1999 36H168.2V48H26.6219Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M146.208 20L140.208 6L134.208 20H146.208Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M182.2 46C182.2 46.5304 181.989 47.0391 181.614 47.4142C181.239 47.7893 180.73 48 180.2 48H168.2V36C168.2 35.4696 168.41 34.9609 168.785 34.5858C169.161 34.2107 169.669 34 170.2 34H182.2V46Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M60.208 36L140.208 6L182.208 34", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M146.208 20L134.208 33.836", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M36.208 36L48.208 48L60.208 36L72.208 48L84.208 36L96.208 48L108.208 36L120.208 48L132.208 36L144.208 48L156.208 36L168.208 48", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M118.14 92H23.992C20.5678 92 17.792 94.7758 17.792 98.2V165.494C17.792 168.918 20.5678 171.694 23.992 171.694H118.14C121.564 171.694 124.34 168.918 124.34 165.494V98.2C124.34 94.7758 121.564 92 118.14 92Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M118.14 92H23.9996C22.3553 92 20.7783 92.6532 19.6156 93.8159C18.4528 94.9787 17.7996 96.5557 17.7996 98.2V106.75H124.34V98.2C124.34 96.5557 123.686 94.9787 122.524 93.8159C121.361 92.6532 119.784 92 118.14 92Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M27.0922 102.436C28.8043 102.436 30.1922 101.048 30.1922 99.3361C30.1922 97.624 28.8043 96.2361 27.0922 96.2361C25.3801 96.2361 23.9922 97.624 23.9922 99.3361C23.9922 101.048 25.3801 102.436 27.0922 102.436Z", fill: "#E2E8F0", stroke: "#334155", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M37.8002 102.436C39.5123 102.436 40.9002 101.048 40.9002 99.3361C40.9002 97.624 39.5123 96.2361 37.8002 96.2361C36.0881 96.2361 34.7002 97.624 34.7002 99.3361C34.7002 101.048 36.0881 102.436 37.8002 102.436Z", fill: "#E2E8F0", stroke: "#334155", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M48.5058 102.436C50.2178 102.436 51.6058 101.048 51.6058 99.3361C51.6058 97.624 50.2178 96.2361 48.5058 96.2361C46.7937 96.2361 45.4058 97.624 45.4058 99.3361C45.4058 101.048 46.7937 102.436 48.5058 102.436Z", fill: "#E2E8F0", stroke: "#334155", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M82.5722 154.45C81.8565 154.451 81.1478 154.31 80.4869 154.036C79.8261 153.761 79.2262 153.358 78.7222 152.85L71.0662 145.2L63.4002 152.854C62.8944 153.359 62.2941 153.76 61.6335 154.034C60.9728 154.307 60.2648 154.448 59.5498 154.448C58.1057 154.447 56.721 153.873 55.7002 152.852C54.6794 151.831 54.1061 150.446 54.1064 149.002C54.1068 147.558 54.6808 146.173 55.7022 145.152L63.3582 137.498L55.7022 129.842C54.6808 128.821 54.1068 127.436 54.1064 125.992C54.1061 124.548 54.6794 123.163 55.7002 122.142C56.721 121.121 58.1057 120.547 59.5498 120.546C60.9938 120.546 62.3788 121.119 63.4002 122.14L71.0662 129.8L78.7222 122.142C79.2252 121.624 79.8261 121.212 80.49 120.928C81.1538 120.645 81.8674 120.496 82.5892 120.491C83.311 120.486 84.0266 120.625 84.6944 120.899C85.3623 121.172 85.969 121.576 86.4793 122.087C86.9897 122.597 87.3934 123.204 87.6671 123.872C87.9409 124.54 88.0791 125.256 88.0738 125.977C88.0685 126.699 87.9197 127.413 87.6362 128.076C87.3526 128.74 86.94 129.341 86.4222 129.844L78.7662 137.5L86.4222 145.154C87.1831 145.916 87.7013 146.886 87.9111 147.942C88.1209 148.999 88.0131 150.093 87.6011 151.088C87.1891 152.083 86.4916 152.934 85.5965 153.532C84.7014 154.131 83.649 154.449 82.5722 154.45Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" })] }));
|
|
1944
|
+
});
|
|
1945
|
+
BuildingErrorSVG.displayName = "BuildingErrorSVG";
|
|
2111
1946
|
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
function _objectWithoutPropertiesLoose$4(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
title,
|
|
2120
|
-
titleId
|
|
2121
|
-
} = _ref,
|
|
2122
|
-
props = _objectWithoutProperties$4(_ref, _excluded$4);
|
|
2123
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$4({
|
|
2124
|
-
width: 200,
|
|
2125
|
-
height: 200,
|
|
2126
|
-
viewBox: "0 0 200 200",
|
|
2127
|
-
fill: "none",
|
|
2128
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2129
|
-
ref: ref,
|
|
2130
|
-
"aria-labelledby": titleId
|
|
2131
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
2132
|
-
id: titleId
|
|
2133
|
-
}, title) : null, _path$3 || (_path$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2134
|
-
d: "M100 189.208C144.183 189.208 180 153.391 180 109.208C180 65.0252 144.183 29.2079 100 29.2079C55.8172 29.2079 20 65.0252 20 109.208C20 153.391 55.8172 189.208 100 189.208Z",
|
|
2135
|
-
fill: "#F1F5F9"
|
|
2136
|
-
})), _path2$3 || (_path2$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2137
|
-
d: "M153.546 10.8H51.546C50.0077 10.7934 48.4831 11.0899 47.0594 11.6725C45.6357 12.2551 44.3406 13.1124 43.2483 14.1955C42.1559 15.2786 41.2875 16.5663 40.6928 17.985C40.098 19.4037 39.7885 20.9257 39.782 22.464V161.872C47.7471 170.981 57.6748 178.165 68.8178 182.882C79.9608 187.599 92.0287 189.727 104.113 189.106C116.197 188.485 127.984 185.13 138.584 179.295C149.184 173.46 158.323 165.296 165.312 155.418V22.456C165.296 19.3504 164.048 16.3782 161.842 14.1926C159.635 12.0069 156.652 10.7867 153.546 10.8Z",
|
|
2138
|
-
fill: "white"
|
|
2139
|
-
})), _path3$3 || (_path3$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2140
|
-
d: "M165.312 155.418V22.456C165.296 19.3504 164.048 16.3782 161.842 14.1926C159.635 12.0069 156.652 10.7867 153.546 10.8H51.546C50.0077 10.7934 48.4831 11.0899 47.0594 11.6725C45.6357 12.2551 44.3406 13.1124 43.2483 14.1955C42.1559 15.2786 41.2875 16.5663 40.6928 17.985C40.098 19.4037 39.7885 20.9257 39.782 22.464V161.872",
|
|
2141
|
-
stroke: "#334155",
|
|
2142
|
-
strokeWidth: 2,
|
|
2143
|
-
strokeLinecap: "round",
|
|
2144
|
-
strokeLinejoin: "round"
|
|
2145
|
-
})), _path4$3 || (_path4$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2146
|
-
d: "M153.546 46.4299C153.545 46.0599 153.471 45.6936 153.328 45.3522C153.186 45.0107 152.977 44.7006 152.715 44.4397C152.452 44.1787 152.141 43.972 151.799 43.8314C151.457 43.6907 151.09 43.6189 150.72 43.6199H54.3719C54.0018 43.6189 53.6352 43.6907 53.2929 43.8314C52.9506 43.972 52.6393 44.1787 52.3769 44.4397C52.1145 44.7006 51.906 45.0107 51.7635 45.3522C51.6209 45.6936 51.5469 46.0599 51.5459 46.4299V172.87C66.3504 184.138 84.6192 189.894 103.209 189.147C121.799 188.4 139.547 181.197 153.4 168.778L153.546 46.4299Z",
|
|
2147
|
-
fill: "#E2E8F0"
|
|
2148
|
-
})), _path5$3 || (_path5$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2149
|
-
d: "M153.4 168.778L153.548 46.43C153.547 46.0597 153.473 45.6933 153.33 45.3517C153.187 45.0101 152.979 44.6999 152.716 44.439C152.454 44.178 152.142 43.9713 151.8 43.8308C151.457 43.6903 151.09 43.6186 150.72 43.62H54.3719C54.0018 43.6189 53.6352 43.6908 53.2929 43.8314C52.9506 43.972 52.6393 44.1787 52.3769 44.4397C52.1145 44.7006 51.906 45.0107 51.7635 45.3522C51.6209 45.6937 51.5469 46.0599 51.5459 46.43V172.87",
|
|
2150
|
-
stroke: "#334155",
|
|
2151
|
-
strokeWidth: 2,
|
|
2152
|
-
strokeLinecap: "round",
|
|
2153
|
-
strokeLinejoin: "round"
|
|
2154
|
-
})), _path6$3 || (_path6$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2155
|
-
d: "M83.762 27.374C84.8665 27.374 85.762 26.4785 85.762 25.374C85.762 24.2694 84.8665 23.374 83.762 23.374C82.6574 23.374 81.762 24.2694 81.762 25.374C81.762 26.4785 82.6574 27.374 83.762 27.374Z",
|
|
2156
|
-
fill: "#334155"
|
|
2157
|
-
})), _path7$3 || (_path7$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2158
|
-
d: "M94.0559 25.374H120.528",
|
|
2159
|
-
stroke: "#334155",
|
|
2160
|
-
strokeWidth: 2,
|
|
2161
|
-
strokeLinecap: "round",
|
|
2162
|
-
strokeLinejoin: "round"
|
|
2163
|
-
})), _path8$3 || (_path8$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2164
|
-
d: "M131.156 135.882H74.49C68.9671 135.882 64.49 140.359 64.49 145.882C64.49 151.405 68.9671 155.882 74.49 155.882H131.156C136.679 155.882 141.156 151.405 141.156 145.882C141.156 140.359 136.679 135.882 131.156 135.882Z",
|
|
2165
|
-
fill: "white",
|
|
2166
|
-
stroke: "#334155",
|
|
2167
|
-
strokeWidth: 2,
|
|
2168
|
-
strokeLinecap: "round",
|
|
2169
|
-
strokeLinejoin: "round"
|
|
2170
|
-
})), _path9$3 || (_path9$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2171
|
-
d: "M80.8361 141.216C80.8361 141.686 80.6601 142.45 80.6001 143.066C81.4241 142.48 82.0121 141.866 82.6881 141.866C83.113 141.899 83.5088 142.094 83.7931 142.412C84.0774 142.729 84.2282 143.144 84.2141 143.57C84.2141 144.686 82.7761 144.922 81.8661 145.392C82.7761 145.832 84.2141 146.068 84.2141 147.192C84.2292 147.621 84.0795 148.04 83.7958 148.362C83.5121 148.685 83.1158 148.886 82.6881 148.926C82.0121 148.926 81.4241 148.28 80.6001 147.692C80.6601 148.31 80.8361 149.072 80.8361 149.544C80.7977 149.915 80.6231 150.259 80.3461 150.509C80.069 150.759 79.7092 150.897 79.3361 150.897C78.963 150.897 78.6032 150.759 78.3261 150.509C78.0491 150.259 77.8745 149.915 77.8361 149.544C77.8361 149.072 78.0141 148.31 78.0721 147.692C77.2201 148.28 76.6041 148.926 75.9561 148.926C75.5323 148.889 75.1402 148.686 74.8653 148.361C74.5904 148.036 74.4548 147.616 74.4881 147.192C74.4881 146.076 75.9281 145.84 76.8101 145.392C75.9281 144.922 74.4881 144.686 74.4881 143.57C74.4723 143.362 74.4977 143.152 74.563 142.954C74.6283 142.755 74.7321 142.572 74.8684 142.413C75.0048 142.255 75.1711 142.125 75.3577 142.031C75.5444 141.937 75.7477 141.881 75.9561 141.866C76.6041 141.866 77.2201 142.484 78.0721 143.066C78.0141 142.45 77.8361 141.686 77.8361 141.216C77.8696 140.841 78.0422 140.493 78.3198 140.239C78.5974 139.985 78.9599 139.844 79.3361 139.844C79.7123 139.844 80.0748 139.985 80.3524 140.239C80.63 140.493 80.8026 140.841 80.8361 141.216Z",
|
|
2172
|
-
fill: "#334155"
|
|
2173
|
-
})), _path10$3 || (_path10$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2174
|
-
d: "M96.4842 141.216C96.4842 141.686 96.3062 142.45 96.2482 143.066C97.0702 142.48 97.6482 141.866 98.3342 141.866C98.7594 141.898 99.1558 142.093 99.4405 142.411C99.7252 142.728 99.8763 143.144 99.8622 143.57C99.8622 144.686 98.4222 144.922 97.5122 145.392C98.4222 145.832 99.8622 146.068 99.8622 147.192C99.8772 147.621 99.7273 148.04 99.4432 148.363C99.159 148.685 98.7622 148.887 98.3342 148.926C97.6582 148.926 97.0702 148.28 96.2482 147.692C96.3062 148.31 96.4842 149.072 96.4842 149.544C96.4458 149.915 96.2712 150.259 95.9942 150.509C95.7171 150.759 95.3573 150.897 94.9842 150.897C94.6111 150.897 94.2512 150.759 93.9742 150.509C93.6971 150.259 93.5226 149.915 93.4842 149.544C93.4842 149.072 93.6602 148.31 93.7202 147.692C92.8682 148.28 92.2502 148.926 91.6042 148.926C91.1802 148.889 90.788 148.686 90.5127 148.361C90.2375 148.036 90.1015 147.616 90.1342 147.192C90.1342 146.076 91.5742 145.84 92.4562 145.392C91.5742 144.922 90.1342 144.686 90.1342 143.57C90.1184 143.361 90.1439 143.152 90.2093 142.953C90.2747 142.755 90.3786 142.571 90.5152 142.413C90.6518 142.254 90.8183 142.124 91.0052 142.031C91.1921 141.937 91.3956 141.881 91.6042 141.866C92.2502 141.866 92.8682 142.484 93.7202 143.066C93.6602 142.45 93.4842 141.686 93.4842 141.216C93.5177 140.841 93.6903 140.493 93.9679 140.239C94.2455 139.985 94.608 139.844 94.9842 139.844C95.3603 139.844 95.7229 139.985 96.0005 140.239C96.2781 140.493 96.4506 140.841 96.4842 141.216Z",
|
|
2175
|
-
fill: "#334155"
|
|
2176
|
-
})), _path11$3 || (_path11$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2177
|
-
d: "M112.13 141.216C112.13 141.686 111.954 142.45 111.894 143.066C112.718 142.48 113.306 141.866 113.982 141.866C114.407 141.899 114.803 142.094 115.087 142.412C115.371 142.729 115.522 143.144 115.508 143.57C115.508 144.686 114.07 144.922 113.16 145.392C114.07 145.832 115.508 146.068 115.508 147.192C115.523 147.621 115.373 148.04 115.09 148.362C114.806 148.685 114.41 148.886 113.982 148.926C113.306 148.926 112.718 148.28 111.894 147.692C111.954 148.31 112.13 149.072 112.13 149.544C112.092 149.915 111.917 150.259 111.64 150.509C111.363 150.759 111.003 150.897 110.63 150.897C110.257 150.897 109.897 150.759 109.62 150.509C109.343 150.259 109.168 149.915 109.13 149.544C109.13 149.072 109.308 148.31 109.366 147.692C108.514 148.28 107.898 148.926 107.25 148.926C106.826 148.889 106.434 148.686 106.159 148.361C105.884 148.036 105.749 147.616 105.782 147.192C105.782 146.076 107.222 145.84 108.104 145.392C107.222 144.922 105.782 144.686 105.782 143.57C105.766 143.362 105.792 143.152 105.857 142.954C105.922 142.755 106.026 142.572 106.162 142.413C106.299 142.255 106.465 142.125 106.652 142.031C106.838 141.937 107.042 141.881 107.25 141.866C107.898 141.866 108.514 142.484 109.366 143.066C109.308 142.45 109.13 141.686 109.13 141.216C109.164 140.841 109.336 140.493 109.614 140.239C109.891 139.985 110.254 139.844 110.63 139.844C111.006 139.844 111.369 139.985 111.646 140.239C111.924 140.493 112.096 140.841 112.13 141.216Z",
|
|
2178
|
-
fill: "#334155"
|
|
2179
|
-
})), _path12$3 || (_path12$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2180
|
-
d: "M127.778 141.216C127.778 141.686 127.6 142.45 127.542 143.066C128.364 142.48 128.942 141.866 129.628 141.866C130.053 141.898 130.45 142.093 130.734 142.411C131.019 142.728 131.17 143.144 131.156 143.57C131.156 144.686 129.716 144.922 128.806 145.392C129.716 145.832 131.156 146.068 131.156 147.192C131.171 147.621 131.021 148.04 130.737 148.363C130.453 148.685 130.056 148.887 129.628 148.926C128.952 148.926 128.364 148.28 127.542 147.692C127.6 148.31 127.778 149.072 127.778 149.544C127.74 149.915 127.565 150.259 127.288 150.509C127.011 150.759 126.651 150.897 126.278 150.897C125.905 150.897 125.545 150.759 125.268 150.509C124.991 150.259 124.816 149.915 124.778 149.544C124.778 149.072 124.954 148.31 125.014 147.692C124.162 148.28 123.544 148.926 122.898 148.926C122.474 148.889 122.082 148.686 121.807 148.361C121.531 148.036 121.395 147.616 121.428 147.192C121.428 146.076 122.868 145.84 123.75 145.392C122.868 144.922 121.428 144.686 121.428 143.57C121.412 143.361 121.438 143.152 121.503 142.953C121.569 142.755 121.673 142.571 121.809 142.413C121.946 142.254 122.112 142.124 122.299 142.031C122.486 141.937 122.69 141.881 122.898 141.866C123.544 141.866 124.162 142.484 125.014 143.066C124.954 142.45 124.778 141.686 124.778 141.216C124.812 140.841 124.984 140.493 125.262 140.239C125.539 139.985 125.902 139.844 126.278 139.844C126.654 139.844 127.017 139.985 127.294 140.239C127.572 140.493 127.745 140.841 127.778 141.216Z",
|
|
2181
|
-
fill: "#334155"
|
|
2182
|
-
})), _path13$3 || (_path13$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2183
|
-
d: "M102.506 119.066C117.441 119.066 129.548 106.959 129.548 92.024C129.548 77.0891 117.441 64.982 102.506 64.982C87.571 64.982 75.4639 77.0891 75.4639 92.024C75.4639 106.959 87.571 119.066 102.506 119.066Z",
|
|
2184
|
-
fill: "white",
|
|
2185
|
-
stroke: "#334155",
|
|
2186
|
-
strokeWidth: 2,
|
|
2187
|
-
strokeLinecap: "round",
|
|
2188
|
-
strokeLinejoin: "round"
|
|
2189
|
-
})), _path14$3 || (_path14$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2190
|
-
d: "M93.7999 91.4C93.775 92.5582 93.9817 93.7097 94.4077 94.7869C94.8338 95.8642 95.4707 96.8456 96.281 97.6735C97.0913 98.5014 98.0588 99.1591 99.1267 99.6082C100.195 100.057 101.341 100.289 102.5 100.289C103.658 100.289 104.805 100.057 105.873 99.6082C106.941 99.1591 107.908 98.5014 108.719 97.6735C109.529 96.8456 110.166 95.8642 110.592 94.7869C111.018 93.7097 111.225 92.5582 111.2 91.4V87.048C111.151 84.7729 110.213 82.6074 108.587 81.0157C106.961 79.4239 104.775 78.5325 102.5 78.5325C100.224 78.5325 98.0392 79.4239 96.4129 81.0157C94.7867 82.6074 93.8486 84.7729 93.7999 87.048V91.4Z",
|
|
2191
|
-
fill: "white",
|
|
2192
|
-
stroke: "#334155",
|
|
2193
|
-
strokeWidth: 2,
|
|
2194
|
-
strokeLinecap: "round",
|
|
2195
|
-
strokeLinejoin: "round"
|
|
2196
|
-
})), _path15$3 || (_path15$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2197
|
-
d: "M120.582 112.136C115.619 116.595 109.182 119.062 102.51 119.062C95.8378 119.062 89.4011 116.595 84.438 112.136C85.9232 108.571 88.4297 105.526 91.6418 103.383C94.854 101.239 98.6284 100.094 102.49 100.091C106.352 100.087 110.128 101.226 113.344 103.364C116.559 105.503 119.071 108.544 120.562 112.106",
|
|
2198
|
-
fill: "#E2E8F0"
|
|
2199
|
-
})), _path16$3 || (_path16$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2200
|
-
d: "M120.582 112.136C115.619 116.595 109.182 119.062 102.51 119.062C95.8378 119.062 89.4011 116.595 84.438 112.136C85.9232 108.571 88.4297 105.526 91.6418 103.383C94.854 101.239 98.6284 100.094 102.49 100.091C106.352 100.087 110.128 101.226 113.344 103.364C116.559 105.503 119.071 108.544 120.562 112.106",
|
|
2201
|
-
stroke: "#334155",
|
|
2202
|
-
strokeWidth: 2,
|
|
2203
|
-
strokeLinecap: "round",
|
|
2204
|
-
strokeLinejoin: "round"
|
|
2205
|
-
})), _path17$3 || (_path17$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2206
|
-
d: "M93.876 85.924C94.1051 84.1698 94.8634 82.527 96.0499 81.2147C97.2364 79.9024 98.7947 78.9829 100.517 78.5789C102.239 78.1748 104.044 78.3053 105.69 78.9529C107.337 79.6006 108.747 80.7347 109.732 82.204C107.673 84.2003 105.11 85.6006 102.318 86.2557C99.5259 86.9108 96.6082 86.7962 93.876 85.924Z",
|
|
2207
|
-
fill: "white",
|
|
2208
|
-
stroke: "#334155",
|
|
2209
|
-
strokeWidth: 2,
|
|
2210
|
-
strokeLinecap: "round",
|
|
2211
|
-
strokeLinejoin: "round"
|
|
2212
|
-
})));
|
|
2213
|
-
};
|
|
2214
|
-
var ForwardRef$4 = /*#__PURE__*/React.forwardRef(SvgPhoneLockSecurity);
|
|
1947
|
+
/**
|
|
1948
|
+
* The Graphic for the PhoneLockSecurity EmptyState
|
|
1949
|
+
*/
|
|
1950
|
+
const PhoneLockSecuritySVG = react.forwardRef((props, ref) => {
|
|
1951
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsx("path", { d: "M100 189.208C144.183 189.208 180 153.391 180 109.208C180 65.0252 144.183 29.2079 100 29.2079C55.8172 29.2079 20 65.0252 20 109.208C20 153.391 55.8172 189.208 100 189.208Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M153.546 10.8H51.546C50.0077 10.7934 48.4831 11.0899 47.0594 11.6725C45.6357 12.2551 44.3406 13.1124 43.2483 14.1955C42.1559 15.2786 41.2875 16.5663 40.6928 17.985C40.098 19.4037 39.7885 20.9257 39.782 22.464V161.872C47.7471 170.981 57.6748 178.165 68.8178 182.882C79.9608 187.599 92.0287 189.727 104.113 189.106C116.197 188.485 127.984 185.13 138.584 179.295C149.184 173.46 158.323 165.296 165.312 155.418V22.456C165.296 19.3504 164.048 16.3782 161.842 14.1926C159.635 12.0069 156.652 10.7867 153.546 10.8Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M165.312 155.418V22.456C165.296 19.3504 164.048 16.3782 161.842 14.1926C159.635 12.0069 156.652 10.7867 153.546 10.8H51.546C50.0077 10.7934 48.4831 11.0899 47.0594 11.6725C45.6357 12.2551 44.3406 13.1124 43.2483 14.1955C42.1559 15.2786 41.2875 16.5663 40.6928 17.985C40.098 19.4037 39.7885 20.9257 39.782 22.464V161.872", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M153.546 46.4299C153.545 46.0599 153.471 45.6936 153.328 45.3522C153.186 45.0107 152.977 44.7006 152.715 44.4397C152.452 44.1787 152.141 43.972 151.799 43.8314C151.457 43.6907 151.09 43.6189 150.72 43.6199H54.3719C54.0018 43.6189 53.6352 43.6907 53.2929 43.8314C52.9506 43.972 52.6393 44.1787 52.3769 44.4397C52.1145 44.7006 51.906 45.0107 51.7635 45.3522C51.6209 45.6936 51.5469 46.0599 51.5459 46.4299V172.87C66.3504 184.138 84.6192 189.894 103.209 189.147C121.799 188.4 139.547 181.197 153.4 168.778L153.546 46.4299Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M153.4 168.778L153.548 46.43C153.547 46.0597 153.473 45.6933 153.33 45.3517C153.187 45.0101 152.979 44.6999 152.716 44.439C152.454 44.178 152.142 43.9713 151.8 43.8308C151.457 43.6903 151.09 43.6186 150.72 43.62H54.3719C54.0018 43.6189 53.6352 43.6908 53.2929 43.8314C52.9506 43.972 52.6393 44.1787 52.3769 44.4397C52.1145 44.7006 51.906 45.0107 51.7635 45.3522C51.6209 45.6937 51.5469 46.0599 51.5459 46.43V172.87", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M83.762 27.374C84.8665 27.374 85.762 26.4785 85.762 25.374C85.762 24.2694 84.8665 23.374 83.762 23.374C82.6574 23.374 81.762 24.2694 81.762 25.374C81.762 26.4785 82.6574 27.374 83.762 27.374Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M94.0559 25.374H120.528", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M131.156 135.882H74.49C68.9671 135.882 64.49 140.359 64.49 145.882C64.49 151.405 68.9671 155.882 74.49 155.882H131.156C136.679 155.882 141.156 151.405 141.156 145.882C141.156 140.359 136.679 135.882 131.156 135.882Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M80.8361 141.216C80.8361 141.686 80.6601 142.45 80.6001 143.066C81.4241 142.48 82.0121 141.866 82.6881 141.866C83.113 141.899 83.5088 142.094 83.7931 142.412C84.0774 142.729 84.2282 143.144 84.2141 143.57C84.2141 144.686 82.7761 144.922 81.8661 145.392C82.7761 145.832 84.2141 146.068 84.2141 147.192C84.2292 147.621 84.0795 148.04 83.7958 148.362C83.5121 148.685 83.1158 148.886 82.6881 148.926C82.0121 148.926 81.4241 148.28 80.6001 147.692C80.6601 148.31 80.8361 149.072 80.8361 149.544C80.7977 149.915 80.6231 150.259 80.3461 150.509C80.069 150.759 79.7092 150.897 79.3361 150.897C78.963 150.897 78.6032 150.759 78.3261 150.509C78.0491 150.259 77.8745 149.915 77.8361 149.544C77.8361 149.072 78.0141 148.31 78.0721 147.692C77.2201 148.28 76.6041 148.926 75.9561 148.926C75.5323 148.889 75.1402 148.686 74.8653 148.361C74.5904 148.036 74.4548 147.616 74.4881 147.192C74.4881 146.076 75.9281 145.84 76.8101 145.392C75.9281 144.922 74.4881 144.686 74.4881 143.57C74.4723 143.362 74.4977 143.152 74.563 142.954C74.6283 142.755 74.7321 142.572 74.8684 142.413C75.0048 142.255 75.1711 142.125 75.3577 142.031C75.5444 141.937 75.7477 141.881 75.9561 141.866C76.6041 141.866 77.2201 142.484 78.0721 143.066C78.0141 142.45 77.8361 141.686 77.8361 141.216C77.8696 140.841 78.0422 140.493 78.3198 140.239C78.5974 139.985 78.9599 139.844 79.3361 139.844C79.7123 139.844 80.0748 139.985 80.3524 140.239C80.63 140.493 80.8026 140.841 80.8361 141.216Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M96.4842 141.216C96.4842 141.686 96.3062 142.45 96.2482 143.066C97.0702 142.48 97.6482 141.866 98.3342 141.866C98.7594 141.898 99.1558 142.093 99.4405 142.411C99.7252 142.728 99.8763 143.144 99.8622 143.57C99.8622 144.686 98.4222 144.922 97.5122 145.392C98.4222 145.832 99.8622 146.068 99.8622 147.192C99.8772 147.621 99.7273 148.04 99.4432 148.363C99.159 148.685 98.7622 148.887 98.3342 148.926C97.6582 148.926 97.0702 148.28 96.2482 147.692C96.3062 148.31 96.4842 149.072 96.4842 149.544C96.4458 149.915 96.2712 150.259 95.9942 150.509C95.7171 150.759 95.3573 150.897 94.9842 150.897C94.6111 150.897 94.2512 150.759 93.9742 150.509C93.6971 150.259 93.5226 149.915 93.4842 149.544C93.4842 149.072 93.6602 148.31 93.7202 147.692C92.8682 148.28 92.2502 148.926 91.6042 148.926C91.1802 148.889 90.788 148.686 90.5127 148.361C90.2375 148.036 90.1015 147.616 90.1342 147.192C90.1342 146.076 91.5742 145.84 92.4562 145.392C91.5742 144.922 90.1342 144.686 90.1342 143.57C90.1184 143.361 90.1439 143.152 90.2093 142.953C90.2747 142.755 90.3786 142.571 90.5152 142.413C90.6518 142.254 90.8183 142.124 91.0052 142.031C91.1921 141.937 91.3956 141.881 91.6042 141.866C92.2502 141.866 92.8682 142.484 93.7202 143.066C93.6602 142.45 93.4842 141.686 93.4842 141.216C93.5177 140.841 93.6903 140.493 93.9679 140.239C94.2455 139.985 94.608 139.844 94.9842 139.844C95.3603 139.844 95.7229 139.985 96.0005 140.239C96.2781 140.493 96.4506 140.841 96.4842 141.216Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M112.13 141.216C112.13 141.686 111.954 142.45 111.894 143.066C112.718 142.48 113.306 141.866 113.982 141.866C114.407 141.899 114.803 142.094 115.087 142.412C115.371 142.729 115.522 143.144 115.508 143.57C115.508 144.686 114.07 144.922 113.16 145.392C114.07 145.832 115.508 146.068 115.508 147.192C115.523 147.621 115.373 148.04 115.09 148.362C114.806 148.685 114.41 148.886 113.982 148.926C113.306 148.926 112.718 148.28 111.894 147.692C111.954 148.31 112.13 149.072 112.13 149.544C112.092 149.915 111.917 150.259 111.64 150.509C111.363 150.759 111.003 150.897 110.63 150.897C110.257 150.897 109.897 150.759 109.62 150.509C109.343 150.259 109.168 149.915 109.13 149.544C109.13 149.072 109.308 148.31 109.366 147.692C108.514 148.28 107.898 148.926 107.25 148.926C106.826 148.889 106.434 148.686 106.159 148.361C105.884 148.036 105.749 147.616 105.782 147.192C105.782 146.076 107.222 145.84 108.104 145.392C107.222 144.922 105.782 144.686 105.782 143.57C105.766 143.362 105.792 143.152 105.857 142.954C105.922 142.755 106.026 142.572 106.162 142.413C106.299 142.255 106.465 142.125 106.652 142.031C106.838 141.937 107.042 141.881 107.25 141.866C107.898 141.866 108.514 142.484 109.366 143.066C109.308 142.45 109.13 141.686 109.13 141.216C109.164 140.841 109.336 140.493 109.614 140.239C109.891 139.985 110.254 139.844 110.63 139.844C111.006 139.844 111.369 139.985 111.646 140.239C111.924 140.493 112.096 140.841 112.13 141.216Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M127.778 141.216C127.778 141.686 127.6 142.45 127.542 143.066C128.364 142.48 128.942 141.866 129.628 141.866C130.053 141.898 130.45 142.093 130.734 142.411C131.019 142.728 131.17 143.144 131.156 143.57C131.156 144.686 129.716 144.922 128.806 145.392C129.716 145.832 131.156 146.068 131.156 147.192C131.171 147.621 131.021 148.04 130.737 148.363C130.453 148.685 130.056 148.887 129.628 148.926C128.952 148.926 128.364 148.28 127.542 147.692C127.6 148.31 127.778 149.072 127.778 149.544C127.74 149.915 127.565 150.259 127.288 150.509C127.011 150.759 126.651 150.897 126.278 150.897C125.905 150.897 125.545 150.759 125.268 150.509C124.991 150.259 124.816 149.915 124.778 149.544C124.778 149.072 124.954 148.31 125.014 147.692C124.162 148.28 123.544 148.926 122.898 148.926C122.474 148.889 122.082 148.686 121.807 148.361C121.531 148.036 121.395 147.616 121.428 147.192C121.428 146.076 122.868 145.84 123.75 145.392C122.868 144.922 121.428 144.686 121.428 143.57C121.412 143.361 121.438 143.152 121.503 142.953C121.569 142.755 121.673 142.571 121.809 142.413C121.946 142.254 122.112 142.124 122.299 142.031C122.486 141.937 122.69 141.881 122.898 141.866C123.544 141.866 124.162 142.484 125.014 143.066C124.954 142.45 124.778 141.686 124.778 141.216C124.812 140.841 124.984 140.493 125.262 140.239C125.539 139.985 125.902 139.844 126.278 139.844C126.654 139.844 127.017 139.985 127.294 140.239C127.572 140.493 127.745 140.841 127.778 141.216Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M102.506 119.066C117.441 119.066 129.548 106.959 129.548 92.024C129.548 77.0891 117.441 64.982 102.506 64.982C87.571 64.982 75.4639 77.0891 75.4639 92.024C75.4639 106.959 87.571 119.066 102.506 119.066Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M93.7999 91.4C93.775 92.5582 93.9817 93.7097 94.4077 94.7869C94.8338 95.8642 95.4707 96.8456 96.281 97.6735C97.0913 98.5014 98.0588 99.1591 99.1267 99.6082C100.195 100.057 101.341 100.289 102.5 100.289C103.658 100.289 104.805 100.057 105.873 99.6082C106.941 99.1591 107.908 98.5014 108.719 97.6735C109.529 96.8456 110.166 95.8642 110.592 94.7869C111.018 93.7097 111.225 92.5582 111.2 91.4V87.048C111.151 84.7729 110.213 82.6074 108.587 81.0157C106.961 79.4239 104.775 78.5325 102.5 78.5325C100.224 78.5325 98.0392 79.4239 96.4129 81.0157C94.7867 82.6074 93.8486 84.7729 93.7999 87.048V91.4Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M120.582 112.136C115.619 116.595 109.182 119.062 102.51 119.062C95.8378 119.062 89.4011 116.595 84.438 112.136C85.9232 108.571 88.4297 105.526 91.6418 103.383C94.854 101.239 98.6284 100.094 102.49 100.091C106.352 100.087 110.128 101.226 113.344 103.364C116.559 105.503 119.071 108.544 120.562 112.106", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M120.582 112.136C115.619 116.595 109.182 119.062 102.51 119.062C95.8378 119.062 89.4011 116.595 84.438 112.136C85.9232 108.571 88.4297 105.526 91.6418 103.383C94.854 101.239 98.6284 100.094 102.49 100.091C106.352 100.087 110.128 101.226 113.344 103.364C116.559 105.503 119.071 108.544 120.562 112.106", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M93.876 85.924C94.1051 84.1698 94.8634 82.527 96.0499 81.2147C97.2364 79.9024 98.7947 78.9829 100.517 78.5789C102.239 78.1748 104.044 78.3053 105.69 78.9529C107.337 79.6006 108.747 80.7347 109.732 82.204C107.673 84.2003 105.11 85.6006 102.318 86.2557C99.5259 86.9108 96.6082 86.7962 93.876 85.924Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" })] }));
|
|
1952
|
+
});
|
|
1953
|
+
PhoneLockSecuritySVG.displayName = "PhoneLockSecuritySVG";
|
|
2215
1954
|
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
function _objectWithoutPropertiesLoose$3(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
title,
|
|
2224
|
-
titleId
|
|
2225
|
-
} = _ref,
|
|
2226
|
-
props = _objectWithoutProperties$3(_ref, _excluded$3);
|
|
2227
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$3({
|
|
2228
|
-
width: 200,
|
|
2229
|
-
height: 200,
|
|
2230
|
-
viewBox: "0 0 200 200",
|
|
2231
|
-
fill: "none",
|
|
2232
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2233
|
-
ref: ref,
|
|
2234
|
-
"aria-labelledby": titleId
|
|
2235
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
2236
|
-
id: titleId
|
|
2237
|
-
}, title) : null, _path$2 || (_path$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2238
|
-
d: "M100 191.432C144.183 191.432 180 155.615 180 111.432C180 67.2492 144.183 31.432 100 31.432C55.8172 31.432 20 67.2492 20 111.432C20 155.615 55.8172 191.432 100 191.432Z",
|
|
2239
|
-
fill: "#F1F5F9"
|
|
2240
|
-
})), _path2$2 || (_path2$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2241
|
-
d: "M13 144.432H18",
|
|
2242
|
-
stroke: "#334155",
|
|
2243
|
-
strokeWidth: 2,
|
|
2244
|
-
strokeLinecap: "round",
|
|
2245
|
-
strokeLinejoin: "round"
|
|
2246
|
-
})), _path3$2 || (_path3$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2247
|
-
d: "M182 144.432H187",
|
|
2248
|
-
stroke: "#334155",
|
|
2249
|
-
strokeWidth: 2,
|
|
2250
|
-
strokeLinecap: "round",
|
|
2251
|
-
strokeLinejoin: "round"
|
|
2252
|
-
})), _path4$2 || (_path4$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2253
|
-
d: "M27.128 144.432C33.4734 158.44 43.7216 170.322 56.6457 178.656C69.5698 186.99 84.622 191.422 100 191.422C115.378 191.422 130.43 186.99 143.354 178.656C156.278 170.322 166.527 158.44 172.872 144.432H27.128Z",
|
|
2254
|
-
fill: "white"
|
|
2255
|
-
})), _path5$2 || (_path5$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2256
|
-
d: "M156.8 167.76L133.648 144.432H62.892L41.506 165.98C48.8464 173.858 57.7025 180.173 67.5431 184.545C77.3838 188.917 88.0061 191.256 98.7729 191.423C109.54 191.589 120.229 189.579 130.2 185.512C140.171 181.446 149.22 175.408 156.8 167.76Z",
|
|
2257
|
-
fill: "#E2E8F0"
|
|
2258
|
-
})), _path6$2 || (_path6$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2259
|
-
d: "M156.798 167.76L133.648 144.432H62.892L41.506 165.98",
|
|
2260
|
-
stroke: "#334155",
|
|
2261
|
-
strokeWidth: 2,
|
|
2262
|
-
strokeLinecap: "round",
|
|
2263
|
-
strokeLinejoin: "round"
|
|
2264
|
-
})), _path7$2 || (_path7$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2265
|
-
d: "M102.73 153.8L101.8 144.432H94.738L93.81 153.8C93.772 154.183 93.8146 154.57 93.9351 154.935C94.0556 155.301 94.2513 155.637 94.5096 155.922C94.7679 156.207 95.0831 156.435 95.4349 156.591C95.7866 156.747 96.1672 156.828 96.552 156.828H99.988C100.373 156.828 100.753 156.747 101.105 156.591C101.457 156.435 101.772 156.207 102.03 155.922C102.289 155.637 102.484 155.301 102.605 154.935C102.725 154.57 102.768 154.183 102.73 153.8Z",
|
|
2266
|
-
fill: "white",
|
|
2267
|
-
stroke: "#334155",
|
|
2268
|
-
strokeWidth: 2,
|
|
2269
|
-
strokeLinecap: "round",
|
|
2270
|
-
strokeLinejoin: "round"
|
|
2271
|
-
})), _path8$2 || (_path8$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2272
|
-
d: "M105.186 178.6L103.958 166.2C103.89 165.52 103.572 164.889 103.065 164.431C102.558 163.972 101.899 163.718 101.216 163.718H95.324C94.6405 163.718 93.9815 163.972 93.4748 164.431C92.9681 164.889 92.6499 165.52 92.582 166.2L91.354 178.6C91.316 178.983 91.3586 179.37 91.4791 179.735C91.5996 180.101 91.7953 180.437 92.0536 180.722C92.3119 181.007 92.6271 181.235 92.9789 181.391C93.3306 181.547 93.7112 181.628 94.096 181.628H102.444C102.829 181.628 103.209 181.547 103.561 181.391C103.913 181.235 104.228 181.007 104.486 180.722C104.745 180.437 104.94 180.101 105.061 179.735C105.181 179.37 105.224 178.983 105.186 178.6Z",
|
|
2273
|
-
fill: "white",
|
|
2274
|
-
stroke: "#334155",
|
|
2275
|
-
strokeWidth: 2,
|
|
2276
|
-
strokeLinecap: "round",
|
|
2277
|
-
strokeLinejoin: "round"
|
|
2278
|
-
})), _path9$2 || (_path9$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2279
|
-
d: "M162 59.33H154V144.432H162V59.33Z",
|
|
2280
|
-
fill: "white"
|
|
2281
|
-
})), _path10$2 || (_path10$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2282
|
-
d: "M162 59.33H154V144.432H162V59.33Z",
|
|
2283
|
-
stroke: "#334155",
|
|
2284
|
-
strokeWidth: 2,
|
|
2285
|
-
strokeLinecap: "round",
|
|
2286
|
-
strokeLinejoin: "round"
|
|
2287
|
-
})), _path11$2 || (_path11$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2288
|
-
d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z",
|
|
2289
|
-
fill: "#E2E8F0"
|
|
2290
|
-
})), _path12$2 || (_path12$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2291
|
-
d: "M158.9 43.4C158.848 43.5992 158.732 43.7756 158.569 43.9015C158.406 44.0274 158.206 44.0957 158 44.0957C157.794 44.0957 157.594 44.0274 157.431 43.9015C157.268 43.7756 157.152 43.5992 157.1 43.4C153.464 29.062 153.616 29.708 153.602 29.564C153.544 28.9509 153.614 28.3324 153.808 27.7481C154.003 27.1637 154.317 26.6265 154.731 26.1708C155.146 25.7151 155.651 25.351 156.214 25.1018C156.777 24.8527 157.386 24.724 158.002 24.724C158.618 24.724 159.227 24.8527 159.79 25.1018C160.353 25.351 160.858 25.7151 161.273 26.1708C161.687 26.6265 162.001 27.1637 162.196 27.7481C162.39 28.3324 162.461 28.9509 162.402 29.564C162.386 29.702 162.54 29.052 158.9 43.4Z",
|
|
2292
|
-
fill: "white",
|
|
2293
|
-
stroke: "#334155",
|
|
2294
|
-
strokeWidth: 2,
|
|
2295
|
-
strokeLinecap: "round",
|
|
2296
|
-
strokeLinejoin: "round"
|
|
2297
|
-
})), _path13$2 || (_path13$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2298
|
-
d: "M158 55.328C157.323 55.3284 156.661 55.128 156.098 54.7523C155.535 54.3765 155.096 53.8422 154.837 53.2169C154.578 52.5917 154.51 51.9036 154.642 51.2396C154.773 50.5757 155.099 49.9658 155.578 49.487C156.056 49.0082 156.666 48.6821 157.33 48.5499C157.994 48.4177 158.682 48.4854 159.307 48.7443C159.932 49.0032 160.467 49.4419 160.843 50.0046C161.219 50.5674 161.42 51.2291 161.42 51.906C161.419 52.8131 161.059 53.6829 160.418 54.3244C159.777 54.966 158.907 55.3269 158 55.328Z",
|
|
2299
|
-
fill: "white",
|
|
2300
|
-
stroke: "#334155",
|
|
2301
|
-
strokeWidth: 2,
|
|
2302
|
-
strokeLinecap: "round",
|
|
2303
|
-
strokeLinejoin: "round"
|
|
2304
|
-
})), _path14$2 || (_path14$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2305
|
-
d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z",
|
|
2306
|
-
stroke: "#334155",
|
|
2307
|
-
strokeWidth: 2,
|
|
2308
|
-
strokeLinecap: "round",
|
|
2309
|
-
strokeLinejoin: "round"
|
|
2310
|
-
})), _path15$2 || (_path15$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2311
|
-
d: "M134.268 110.774H125.27V144.432H134.268V110.774Z",
|
|
2312
|
-
fill: "#E2E8F0"
|
|
2313
|
-
})), _path16$2 || (_path16$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2314
|
-
d: "M140.278 110.774H56.262C55.8692 110.776 55.4797 110.701 55.1161 110.552C54.7525 110.403 54.4218 110.184 54.1431 109.907C53.8643 109.63 53.643 109.301 53.4918 108.938C53.3406 108.576 53.2625 108.187 53.262 107.794V99.412C53.2625 99.0191 53.3406 98.6302 53.4918 98.2676C53.643 97.905 53.8643 97.5758 54.1431 97.2989C54.4218 97.022 54.7525 96.8029 55.1161 96.6541C55.4797 96.5054 55.8692 96.4299 56.262 96.432H140.278C140.671 96.4299 141.06 96.5054 141.424 96.6541C141.788 96.8029 142.118 97.022 142.397 97.2989C142.676 97.5758 142.897 97.905 143.048 98.2676C143.199 98.6302 143.278 99.0191 143.278 99.412V107.8C143.277 108.192 143.198 108.581 143.046 108.943C142.895 109.304 142.673 109.633 142.395 109.909C142.116 110.185 141.786 110.404 141.423 110.552C141.059 110.701 140.67 110.776 140.278 110.774Z",
|
|
2315
|
-
fill: "white",
|
|
2316
|
-
stroke: "#334155",
|
|
2317
|
-
strokeWidth: 2,
|
|
2318
|
-
strokeLinecap: "round",
|
|
2319
|
-
strokeLinejoin: "round"
|
|
2320
|
-
})), _path17$2 || (_path17$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2321
|
-
d: "M71.268 110.774H62.27V144.432H71.268V110.774Z",
|
|
2322
|
-
fill: "#E2E8F0"
|
|
2323
|
-
})), _path18$2 || (_path18$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2324
|
-
d: "M71.268 110.774H62.27V144.432H71.268V110.774Z",
|
|
2325
|
-
stroke: "#334155",
|
|
2326
|
-
strokeWidth: 2,
|
|
2327
|
-
strokeLinecap: "round",
|
|
2328
|
-
strokeLinejoin: "round"
|
|
2329
|
-
})), _path19$2 || (_path19$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2330
|
-
d: "M134.268 110.774H125.27V144.432H134.268V110.774Z",
|
|
2331
|
-
stroke: "#334155",
|
|
2332
|
-
strokeWidth: 2,
|
|
2333
|
-
strokeLinecap: "round",
|
|
2334
|
-
strokeLinejoin: "round"
|
|
2335
|
-
})), _path20$2 || (_path20$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2336
|
-
d: "M125.27 125.116H71.268V134.078H125.27V125.116Z",
|
|
2337
|
-
fill: "white",
|
|
2338
|
-
stroke: "#334155",
|
|
2339
|
-
strokeWidth: 2,
|
|
2340
|
-
strokeLinecap: "round",
|
|
2341
|
-
strokeLinejoin: "round"
|
|
2342
|
-
})), _path21$2 || (_path21$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2343
|
-
d: "M73.068 88.122H62.27V96.432H73.068V88.122Z",
|
|
2344
|
-
fill: "#E2E8F0",
|
|
2345
|
-
stroke: "#334155",
|
|
2346
|
-
strokeWidth: 2,
|
|
2347
|
-
strokeLinecap: "round",
|
|
2348
|
-
strokeLinejoin: "round"
|
|
2349
|
-
})), _path22$2 || (_path22$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2350
|
-
d: "M67.67 110.774H58.668L65.87 96.432H74.872L67.67 110.774Z",
|
|
2351
|
-
fill: "#E2E8F0",
|
|
2352
|
-
stroke: "#334155",
|
|
2353
|
-
strokeWidth: 2,
|
|
2354
|
-
strokeLinecap: "round",
|
|
2355
|
-
strokeLinejoin: "round"
|
|
2356
|
-
})), _path23$2 || (_path23$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2357
|
-
d: "M89.268 110.774H80.27L87.468 96.432H96.47L89.268 110.774Z",
|
|
2358
|
-
fill: "#E2E8F0",
|
|
2359
|
-
stroke: "#334155",
|
|
2360
|
-
strokeWidth: 2,
|
|
2361
|
-
strokeLinecap: "round",
|
|
2362
|
-
strokeLinejoin: "round"
|
|
2363
|
-
})), _path24$2 || (_path24$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2364
|
-
d: "M110.87 110.774H101.868L109.07 96.432H118.068L110.87 110.774Z",
|
|
2365
|
-
fill: "#E2E8F0",
|
|
2366
|
-
stroke: "#334155",
|
|
2367
|
-
strokeWidth: 2,
|
|
2368
|
-
strokeLinecap: "round",
|
|
2369
|
-
strokeLinejoin: "round"
|
|
2370
|
-
})), _path25$2 || (_path25$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2371
|
-
d: "M132.468 110.774H123.47L130.67 96.432H139.67L132.468 110.774Z",
|
|
2372
|
-
fill: "#E2E8F0",
|
|
2373
|
-
stroke: "#334155",
|
|
2374
|
-
strokeWidth: 2,
|
|
2375
|
-
strokeLinecap: "round",
|
|
2376
|
-
strokeLinejoin: "round"
|
|
2377
|
-
})), _path26$2 || (_path26$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2378
|
-
d: "M82.07 134.078H74.872L80.27 125.116H87.468L82.07 134.078Z",
|
|
2379
|
-
fill: "#E2E8F0",
|
|
2380
|
-
stroke: "#334155",
|
|
2381
|
-
strokeWidth: 2,
|
|
2382
|
-
strokeLinecap: "round",
|
|
2383
|
-
strokeLinejoin: "round"
|
|
2384
|
-
})), _path27$2 || (_path27$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2385
|
-
d: "M98.27 134.078H91.068L96.47 125.116H103.668L98.27 134.078Z",
|
|
2386
|
-
fill: "#E2E8F0",
|
|
2387
|
-
stroke: "#334155",
|
|
2388
|
-
strokeWidth: 2,
|
|
2389
|
-
strokeLinecap: "round",
|
|
2390
|
-
strokeLinejoin: "round"
|
|
2391
|
-
})), _path28$2 || (_path28$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2392
|
-
d: "M114.47 134.078H107.27L112.67 125.116H119.868L114.47 134.078Z",
|
|
2393
|
-
fill: "#E2E8F0",
|
|
2394
|
-
stroke: "#334155",
|
|
2395
|
-
strokeWidth: 2,
|
|
2396
|
-
strokeLinecap: "round",
|
|
2397
|
-
strokeLinejoin: "round"
|
|
2398
|
-
})), _path29$2 || (_path29$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2399
|
-
d: "M134.268 88.122H123.47V96.432H134.268V88.122Z",
|
|
2400
|
-
fill: "#E2E8F0",
|
|
2401
|
-
stroke: "#334155",
|
|
2402
|
-
strokeWidth: 2,
|
|
2403
|
-
strokeLinecap: "round",
|
|
2404
|
-
strokeLinejoin: "round"
|
|
2405
|
-
})), _path30$2 || (_path30$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2406
|
-
d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z",
|
|
2407
|
-
fill: "white"
|
|
2408
|
-
})), _path31$2 || (_path31$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2409
|
-
d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z",
|
|
2410
|
-
stroke: "#334155",
|
|
2411
|
-
strokeWidth: 2,
|
|
2412
|
-
strokeLinecap: "round",
|
|
2413
|
-
strokeLinejoin: "round"
|
|
2414
|
-
})), _path32$2 || (_path32$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2415
|
-
d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z",
|
|
2416
|
-
fill: "white"
|
|
2417
|
-
})), _path33$2 || (_path33$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2418
|
-
d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z",
|
|
2419
|
-
stroke: "#334155",
|
|
2420
|
-
strokeWidth: 2,
|
|
2421
|
-
strokeLinecap: "round",
|
|
2422
|
-
strokeLinejoin: "round"
|
|
2423
|
-
})), _path34$2 || (_path34$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2424
|
-
d: "M22 144.432H178",
|
|
2425
|
-
stroke: "#334155",
|
|
2426
|
-
strokeWidth: 2,
|
|
2427
|
-
strokeLinecap: "round",
|
|
2428
|
-
strokeLinejoin: "round"
|
|
2429
|
-
})));
|
|
2430
|
-
};
|
|
2431
|
-
var ForwardRef$3 = /*#__PURE__*/React.forwardRef(SvgRoadBlock);
|
|
1955
|
+
/**
|
|
1956
|
+
* The Graphic for the RoadBlock EmptyState
|
|
1957
|
+
*/
|
|
1958
|
+
const RoadBlockSVG = react.forwardRef((props, ref) => {
|
|
1959
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsx("path", { d: "M100 191.432C144.183 191.432 180 155.615 180 111.432C180 67.2492 144.183 31.432 100 31.432C55.8172 31.432 20 67.2492 20 111.432C20 155.615 55.8172 191.432 100 191.432Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M13 144.432H18", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M182 144.432H187", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M27.128 144.432C33.4734 158.44 43.7216 170.322 56.6457 178.656C69.5698 186.99 84.622 191.422 100 191.422C115.378 191.422 130.43 186.99 143.354 178.656C156.278 170.322 166.527 158.44 172.872 144.432H27.128Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M156.8 167.76L133.648 144.432H62.892L41.506 165.98C48.8464 173.858 57.7025 180.173 67.5431 184.545C77.3838 188.917 88.0061 191.256 98.7729 191.423C109.54 191.589 120.229 189.579 130.2 185.512C140.171 181.446 149.22 175.408 156.8 167.76Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M156.798 167.76L133.648 144.432H62.892L41.506 165.98", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M102.73 153.8L101.8 144.432H94.738L93.81 153.8C93.772 154.183 93.8146 154.57 93.9351 154.935C94.0556 155.301 94.2513 155.637 94.5096 155.922C94.7679 156.207 95.0831 156.435 95.4349 156.591C95.7866 156.747 96.1672 156.828 96.552 156.828H99.988C100.373 156.828 100.753 156.747 101.105 156.591C101.457 156.435 101.772 156.207 102.03 155.922C102.289 155.637 102.484 155.301 102.605 154.935C102.725 154.57 102.768 154.183 102.73 153.8Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M105.186 178.6L103.958 166.2C103.89 165.52 103.572 164.889 103.065 164.431C102.558 163.972 101.899 163.718 101.216 163.718H95.324C94.6405 163.718 93.9815 163.972 93.4748 164.431C92.9681 164.889 92.6499 165.52 92.582 166.2L91.354 178.6C91.316 178.983 91.3586 179.37 91.4791 179.735C91.5996 180.101 91.7953 180.437 92.0536 180.722C92.3119 181.007 92.6271 181.235 92.9789 181.391C93.3306 181.547 93.7112 181.628 94.096 181.628H102.444C102.829 181.628 103.209 181.547 103.561 181.391C103.913 181.235 104.228 181.007 104.486 180.722C104.745 180.437 104.94 180.101 105.061 179.735C105.181 179.37 105.224 178.983 105.186 178.6Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M162 59.33H154V144.432H162V59.33Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M162 59.33H154V144.432H162V59.33Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M158.9 43.4C158.848 43.5992 158.732 43.7756 158.569 43.9015C158.406 44.0274 158.206 44.0957 158 44.0957C157.794 44.0957 157.594 44.0274 157.431 43.9015C157.268 43.7756 157.152 43.5992 157.1 43.4C153.464 29.062 153.616 29.708 153.602 29.564C153.544 28.9509 153.614 28.3324 153.808 27.7481C154.003 27.1637 154.317 26.6265 154.731 26.1708C155.146 25.7151 155.651 25.351 156.214 25.1018C156.777 24.8527 157.386 24.724 158.002 24.724C158.618 24.724 159.227 24.8527 159.79 25.1018C160.353 25.351 160.858 25.7151 161.273 26.1708C161.687 26.6265 162.001 27.1637 162.196 27.7481C162.39 28.3324 162.461 28.9509 162.402 29.564C162.386 29.702 162.54 29.052 158.9 43.4Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M158 55.328C157.323 55.3284 156.661 55.128 156.098 54.7523C155.535 54.3765 155.096 53.8422 154.837 53.2169C154.578 52.5917 154.51 51.9036 154.642 51.2396C154.773 50.5757 155.099 49.9658 155.578 49.487C156.056 49.0082 156.666 48.6821 157.33 48.5499C157.994 48.4177 158.682 48.4854 159.307 48.7443C159.932 49.0032 160.467 49.4419 160.843 50.0046C161.219 50.5674 161.42 51.2291 161.42 51.906C161.419 52.8131 161.059 53.6829 160.418 54.3244C159.777 54.966 158.907 55.3269 158 55.328Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M133.916 61.33C133.258 61.3313 132.611 61.1617 132.038 60.8378C131.466 60.514 130.987 60.047 130.649 59.4825C130.311 58.9181 130.125 58.2755 130.11 57.6177C130.094 56.9599 130.25 56.3095 130.562 55.73L154.644 10.582C154.968 9.97276 155.451 9.46311 156.042 9.10769C156.633 8.75226 157.31 8.56448 158 8.56448C158.69 8.56448 159.367 8.75226 159.958 9.10769C160.549 9.46311 161.032 9.97276 161.356 10.582L185.438 55.738C185.75 56.3175 185.906 56.9679 185.89 57.6257C185.875 58.2835 185.689 58.9261 185.351 59.4905C185.013 60.055 184.534 60.522 183.962 60.8458C183.389 61.1697 182.742 61.3393 182.084 61.338L133.916 61.33Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M134.268 110.774H125.27V144.432H134.268V110.774Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M140.278 110.774H56.262C55.8692 110.776 55.4797 110.701 55.1161 110.552C54.7525 110.403 54.4218 110.184 54.1431 109.907C53.8643 109.63 53.643 109.301 53.4918 108.938C53.3406 108.576 53.2625 108.187 53.262 107.794V99.412C53.2625 99.0191 53.3406 98.6302 53.4918 98.2676C53.643 97.905 53.8643 97.5758 54.1431 97.2989C54.4218 97.022 54.7525 96.8029 55.1161 96.6541C55.4797 96.5054 55.8692 96.4299 56.262 96.432H140.278C140.671 96.4299 141.06 96.5054 141.424 96.6541C141.788 96.8029 142.118 97.022 142.397 97.2989C142.676 97.5758 142.897 97.905 143.048 98.2676C143.199 98.6302 143.278 99.0191 143.278 99.412V107.8C143.277 108.192 143.198 108.581 143.046 108.943C142.895 109.304 142.673 109.633 142.395 109.909C142.116 110.185 141.786 110.404 141.423 110.552C141.059 110.701 140.67 110.776 140.278 110.774Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M71.268 110.774H62.27V144.432H71.268V110.774Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M71.268 110.774H62.27V144.432H71.268V110.774Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M134.268 110.774H125.27V144.432H134.268V110.774Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M125.27 125.116H71.268V134.078H125.27V125.116Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M73.068 88.122H62.27V96.432H73.068V88.122Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M67.67 110.774H58.668L65.87 96.432H74.872L67.67 110.774Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M89.268 110.774H80.27L87.468 96.432H96.47L89.268 110.774Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M110.87 110.774H101.868L109.07 96.432H118.068L110.87 110.774Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M132.468 110.774H123.47L130.67 96.432H139.67L132.468 110.774Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M82.07 134.078H74.872L80.27 125.116H87.468L82.07 134.078Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M98.27 134.078H91.068L96.47 125.116H103.668L98.27 134.078Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M114.47 134.078H107.27L112.67 125.116H119.868L114.47 134.078Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M134.268 88.122H123.47V96.432H134.268V88.122Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M137.87 81.508C137.878 83.2896 137.356 85.0334 136.372 86.5184C135.387 88.0035 133.984 89.1629 132.341 89.85C130.697 90.537 128.886 90.7206 127.138 90.3777C125.389 90.0347 123.782 89.1806 122.52 87.9234C121.257 86.6663 120.396 85.0627 120.046 83.3158C119.695 81.569 119.871 79.7574 120.552 78.1107C121.232 76.4639 122.385 75.0561 123.866 74.0655C125.347 73.0748 127.088 72.546 128.87 72.546C131.252 72.5423 133.537 73.4841 135.225 75.1645C136.912 76.8449 137.864 79.1265 137.87 81.508Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M76.67 81.508C76.6775 83.2896 76.1561 85.0334 75.1718 86.5184C74.1874 88.0035 72.7845 89.1629 71.1406 89.85C69.4967 90.537 67.686 90.7206 65.9376 90.3777C64.1893 90.0347 62.5821 89.1805 61.3196 87.9234C60.0571 86.6663 59.1962 85.0627 58.8458 83.3158C58.4955 81.569 58.6715 79.7574 59.3515 78.1107C60.0316 76.4639 61.1851 75.0561 62.666 74.0654C64.1468 73.0748 65.8884 72.546 67.67 72.546C70.0517 72.5417 72.3376 73.4834 74.0253 75.1639C75.7129 76.8444 76.6642 79.1263 76.67 81.508Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M22 144.432H178", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" })] }));
|
|
1960
|
+
});
|
|
1961
|
+
RoadBlockSVG.displayName = "RoadBlockSVG";
|
|
2432
1962
|
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
title,
|
|
2441
|
-
titleId
|
|
2442
|
-
} = _ref,
|
|
2443
|
-
props = _objectWithoutProperties$2(_ref, _excluded$2);
|
|
2444
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$2({
|
|
2445
|
-
width: 200,
|
|
2446
|
-
height: 200,
|
|
2447
|
-
viewBox: "0 0 200 200",
|
|
2448
|
-
fill: "none",
|
|
2449
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2450
|
-
ref: ref,
|
|
2451
|
-
"aria-labelledby": titleId
|
|
2452
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
2453
|
-
id: titleId
|
|
2454
|
-
}, title) : null, _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
2455
|
-
clipPath: "url(#clip0_6094_4003)"
|
|
2456
|
-
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2457
|
-
d: "M173.477 131.639C190.951 91.0584 172.219 43.9962 131.638 26.5228C91.0573 9.04929 43.995 27.7814 26.5216 68.3622C9.0481 108.943 27.7802 156.005 68.361 173.479C108.942 190.952 156.004 172.22 173.477 131.639Z",
|
|
2458
|
-
fill: "#F1F5F9"
|
|
2459
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2460
|
-
d: "M89.8199 164.758C103.793 164.758 115.12 163.213 115.12 161.308C115.12 159.403 103.793 157.858 89.8199 157.858C75.8471 157.858 64.5199 159.403 64.5199 161.308C64.5199 163.213 75.8471 164.758 89.8199 164.758Z",
|
|
2461
|
-
fill: "#E2E8F0"
|
|
2462
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2463
|
-
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
2464
|
-
fill: "white"
|
|
2465
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2466
|
-
d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z",
|
|
2467
|
-
stroke: "#334155",
|
|
2468
|
-
strokeWidth: 2.00125,
|
|
2469
|
-
strokeLinecap: "round",
|
|
2470
|
-
strokeLinejoin: "round"
|
|
2471
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2472
|
-
d: "M130.748 68.93L108.53 46.712V66.152C108.53 66.8887 108.823 67.5953 109.344 68.1163C109.865 68.6373 110.571 68.93 111.308 68.93H130.748Z",
|
|
2473
|
-
fill: "#E2E8F0",
|
|
2474
|
-
stroke: "#334155",
|
|
2475
|
-
strokeWidth: 2.00125,
|
|
2476
|
-
strokeLinecap: "round",
|
|
2477
|
-
strokeLinejoin: "round"
|
|
2478
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2479
|
-
d: "M65.1139 67.412H95.6639",
|
|
2480
|
-
stroke: "#334155",
|
|
2481
|
-
strokeWidth: 2.00125,
|
|
2482
|
-
strokeLinecap: "round",
|
|
2483
|
-
strokeLinejoin: "round"
|
|
2484
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2485
|
-
d: "M65.1139 80.374H95.6639",
|
|
2486
|
-
stroke: "#334155",
|
|
2487
|
-
strokeWidth: 2.00125,
|
|
2488
|
-
strokeLinecap: "round",
|
|
2489
|
-
strokeLinejoin: "round"
|
|
2490
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2491
|
-
d: "M65.1139 93.598H116.908",
|
|
2492
|
-
stroke: "#334155",
|
|
2493
|
-
strokeWidth: 2.00125,
|
|
2494
|
-
strokeLinecap: "round",
|
|
2495
|
-
strokeLinejoin: "round"
|
|
2496
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2497
|
-
d: "M65.1139 106.248H116.908",
|
|
2498
|
-
stroke: "#334155",
|
|
2499
|
-
strokeWidth: 2.00125,
|
|
2500
|
-
strokeLinecap: "round",
|
|
2501
|
-
strokeLinejoin: "round"
|
|
2502
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2503
|
-
d: "M65.1139 119.474H116.908",
|
|
2504
|
-
stroke: "#334155",
|
|
2505
|
-
strokeWidth: 2.00125,
|
|
2506
|
-
strokeLinecap: "round",
|
|
2507
|
-
strokeLinejoin: "round"
|
|
2508
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2509
|
-
d: "M65.1139 132.124H116.908",
|
|
2510
|
-
stroke: "#334155",
|
|
2511
|
-
strokeWidth: 2.00125,
|
|
2512
|
-
strokeLinecap: "round",
|
|
2513
|
-
strokeLinejoin: "round"
|
|
2514
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2515
|
-
d: "M141.73 83.7514L136.792 88.6898L149.139 101.037L154.078 96.0989L141.73 83.7514Z",
|
|
2516
|
-
fill: "white",
|
|
2517
|
-
stroke: "#334155",
|
|
2518
|
-
strokeWidth: 2.00125,
|
|
2519
|
-
strokeLinecap: "round",
|
|
2520
|
-
strokeLinejoin: "round"
|
|
2521
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2522
|
-
d: "M142.966 45.472C147.362 49.8679 150.355 55.4685 151.568 61.5657C152.781 67.6629 152.158 73.9828 149.779 79.7262C147.4 85.4697 143.371 90.3786 138.202 93.8324C133.034 97.2862 126.957 99.1296 120.74 99.1296C114.523 99.1296 108.446 97.2862 103.277 93.8324C98.1083 90.3786 94.0796 85.4697 91.7006 79.7262C89.3215 73.9828 88.699 67.6629 89.9118 61.5657C91.1245 55.4685 94.1181 49.8679 98.5139 45.472C104.409 39.5777 112.404 36.2664 120.74 36.2664C129.076 36.2664 137.071 39.5777 142.966 45.472Z",
|
|
2523
|
-
fill: "white",
|
|
2524
|
-
stroke: "#334155",
|
|
2525
|
-
strokeWidth: 2.00125,
|
|
2526
|
-
strokeLinecap: "round",
|
|
2527
|
-
strokeLinejoin: "round"
|
|
2528
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2529
|
-
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
2530
|
-
fill: "#E2E8F0"
|
|
2531
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2532
|
-
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
2533
|
-
stroke: "#334155",
|
|
2534
|
-
strokeWidth: 2.00125,
|
|
2535
|
-
strokeLinecap: "round",
|
|
2536
|
-
strokeLinejoin: "round"
|
|
2537
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2538
|
-
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
2539
|
-
fill: "#E2E8F0"
|
|
2540
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2541
|
-
d: "M104.688 83.75C100.431 79.4917 98.0394 73.7166 98.0402 67.6952C98.0409 61.6737 100.434 55.8992 104.692 51.642C108.95 47.3847 114.725 44.9935 120.747 44.9942C126.768 44.995 132.543 47.3877 136.8 51.646L104.688 83.75Z",
|
|
2542
|
-
fill: "white"
|
|
2543
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2544
|
-
d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z",
|
|
2545
|
-
stroke: "#334155",
|
|
2546
|
-
strokeWidth: 2.00125,
|
|
2547
|
-
strokeLinecap: "round",
|
|
2548
|
-
strokeLinejoin: "round"
|
|
2549
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2550
|
-
d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z",
|
|
2551
|
-
stroke: "#334155",
|
|
2552
|
-
strokeWidth: 2.00125,
|
|
2553
|
-
strokeLinecap: "round",
|
|
2554
|
-
strokeLinejoin: "round"
|
|
2555
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2556
|
-
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.955 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
2557
|
-
fill: "#E2E8F0"
|
|
2558
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2559
|
-
d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.954 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z",
|
|
2560
|
-
stroke: "#334155",
|
|
2561
|
-
strokeWidth: 2.00125,
|
|
2562
|
-
strokeLinecap: "round",
|
|
2563
|
-
strokeLinejoin: "round"
|
|
2564
|
-
}))), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
2565
|
-
id: "clip0_6094_4003"
|
|
2566
|
-
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2567
|
-
width: 200,
|
|
2568
|
-
height: 200,
|
|
2569
|
-
fill: "white"
|
|
2570
|
-
})))));
|
|
2571
|
-
};
|
|
2572
|
-
var ForwardRef$2 = /*#__PURE__*/React.forwardRef(SvgSearchDocument);
|
|
1963
|
+
/**
|
|
1964
|
+
* The Graphic for the SearchDocument EmptyState
|
|
1965
|
+
*/
|
|
1966
|
+
const SearchDocumentSVG = react.forwardRef((props, ref) => {
|
|
1967
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_6094_4003)", children: [jsxRuntime.jsx("path", { d: "M173.477 131.639C190.951 91.0584 172.219 43.9962 131.638 26.5228C91.0573 9.04929 43.995 27.7814 26.5216 68.3622C9.0481 108.943 27.7802 156.005 68.361 173.479C108.942 190.952 156.004 172.22 173.477 131.639Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M89.8199 164.758C103.793 164.758 115.12 163.213 115.12 161.308C115.12 159.403 103.793 157.858 89.8199 157.858C75.8471 157.858 64.5199 159.403 64.5199 161.308C64.5199 163.213 75.8471 164.758 89.8199 164.758Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M52.986 46.712H108.53L130.748 68.93V144.296C130.748 144.661 130.677 145.022 130.537 145.359C130.398 145.696 130.193 146.002 129.936 146.26C129.678 146.518 129.372 146.723 129.035 146.862C128.698 147.002 128.337 147.074 127.972 147.074H52.986C52.6205 147.075 52.2584 147.004 51.9204 146.865C51.5824 146.726 51.2752 146.521 51.0164 146.263C50.7576 146.005 50.5523 145.698 50.4122 145.361C50.2721 145.023 50.2 144.661 50.2 144.296V49.496C50.1992 49.13 50.2707 48.7675 50.4105 48.4292C50.5502 48.0909 50.7554 47.7836 51.0143 47.5249C51.2732 47.2662 51.5807 47.0612 51.919 46.9217C52.2574 46.7822 52.62 46.7109 52.986 46.712Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M130.748 68.93L108.53 46.712V66.152C108.53 66.8887 108.823 67.5953 109.344 68.1163C109.865 68.6373 110.571 68.93 111.308 68.93H130.748Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 67.412H95.6639", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 80.374H95.6639", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 93.598H116.908", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 106.248H116.908", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 119.474H116.908", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M65.1139 132.124H116.908", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M141.73 83.7514L136.792 88.6898L149.139 101.037L154.078 96.0989L141.73 83.7514Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M142.966 45.472C147.362 49.8679 150.355 55.4685 151.568 61.5657C152.781 67.6629 152.158 73.9828 149.779 79.7262C147.4 85.4697 143.371 90.3786 138.202 93.8324C133.034 97.2862 126.957 99.1296 120.74 99.1296C114.523 99.1296 108.446 97.2862 103.277 93.8324C98.1083 90.3786 94.0796 85.4697 91.7006 79.7262C89.3215 73.9828 88.699 67.6629 89.9118 61.5657C91.1245 55.4685 94.1181 49.8679 98.5139 45.472C104.409 39.5777 112.404 36.2664 120.74 36.2664C129.076 36.2664 137.071 39.5777 142.966 45.472Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M104.688 83.75C100.431 79.4917 98.0394 73.7166 98.0402 67.6952C98.0409 61.6737 100.434 55.8992 104.692 51.642C108.95 47.3847 114.725 44.9935 120.747 44.9942C126.768 44.995 132.543 47.3877 136.8 51.646L104.688 83.75Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M136.8 51.646C139.974 54.8207 142.136 58.8655 143.012 63.2688C143.888 67.6721 143.438 72.2362 141.72 76.384C140.002 80.5318 137.092 84.0769 133.359 86.5711C129.626 89.0654 125.238 90.3966 120.748 90.3966C116.258 90.3966 111.87 89.0654 108.137 86.5711C104.404 84.0769 101.494 80.5318 99.7761 76.384C98.0579 72.2362 97.6083 67.6721 98.484 63.2688C99.3597 58.8655 101.522 54.8207 104.696 51.646C106.804 49.5379 109.306 47.8657 112.061 46.7248C114.815 45.5839 117.767 44.9966 120.748 44.9966C123.729 44.9966 126.681 45.5839 129.435 46.7248C132.19 47.8657 134.692 49.5379 136.8 51.646Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M133.95 86.164C130.556 88.5917 126.559 90.0371 122.398 90.3415C118.236 90.6459 114.071 89.7975 110.361 87.8896C106.65 85.9816 103.537 83.0878 101.363 79.5261C99.1895 75.9644 98.0396 71.8726 98.0396 67.7C98.0396 63.5274 99.1895 59.4356 101.363 55.8739C103.537 52.3122 106.65 49.4184 110.361 47.5104C114.071 45.6024 118.236 44.7541 122.398 45.0585C126.559 45.3629 130.556 46.8083 133.95 49.236V86.164Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" }), jsxRuntime.jsx("path", { d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.955 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M175.068 112.15C176.318 113.471 177.004 115.227 176.979 117.045C176.954 118.863 176.222 120.6 174.937 121.887C173.651 123.173 171.915 123.908 170.097 123.934C168.279 123.961 166.522 123.277 165.2 122.028L149.284 106.112C148.941 105.77 148.67 105.364 148.485 104.916C148.299 104.469 148.204 103.99 148.204 103.506C148.204 103.022 148.299 102.543 148.485 102.095C148.67 101.648 148.941 101.242 149.284 100.9L153.95 96.234C154.292 95.8916 154.698 95.62 155.145 95.4346C155.593 95.2493 156.072 95.1539 156.556 95.1539C157.04 95.1539 157.519 95.2493 157.966 95.4346C158.414 95.62 158.82 95.8916 159.162 96.234L175.068 112.15Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.00125" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_6094_4003", children: jsxRuntime.jsx("rect", { fill: "white", height: "200", width: "200" }) }) })] }));
|
|
1968
|
+
});
|
|
1969
|
+
SearchDocumentSVG.displayName = "SearchDocumentSVG";
|
|
2573
1970
|
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
function _objectWithoutPropertiesLoose$1(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
title,
|
|
2582
|
-
titleId
|
|
2583
|
-
} = _ref,
|
|
2584
|
-
props = _objectWithoutProperties$1(_ref, _excluded$1);
|
|
2585
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1({
|
|
2586
|
-
width: 200,
|
|
2587
|
-
height: 200,
|
|
2588
|
-
viewBox: "0 0 200 200",
|
|
2589
|
-
fill: "none",
|
|
2590
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2591
|
-
ref: ref,
|
|
2592
|
-
"aria-labelledby": titleId
|
|
2593
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
2594
|
-
id: titleId
|
|
2595
|
-
}, title) : null, _path$1 || (_path$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2596
|
-
d: "M83.108 180C127.291 180 163.108 144.183 163.108 100C163.108 55.8172 127.291 20 83.108 20C38.9253 20 3.10803 55.8172 3.10803 100C3.10803 144.183 38.9253 180 83.108 180Z",
|
|
2597
|
-
fill: "#F1F5F9"
|
|
2598
|
-
})), _path2$1 || (_path2$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2599
|
-
d: "M9.44397 131.248C15.5826 145.707 25.8408 158.04 38.9399 166.709C52.039 175.379 67.3998 180.001 83.108 180.001C98.8161 180.001 114.177 175.379 127.276 166.709C140.375 158.04 150.633 145.707 156.772 131.248H9.44397Z",
|
|
2600
|
-
fill: "white"
|
|
2601
|
-
})), _path3$1 || (_path3$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2602
|
-
d: "M156.772 131.248H9.44397",
|
|
2603
|
-
stroke: "#334155",
|
|
2604
|
-
strokeWidth: 2,
|
|
2605
|
-
strokeLinecap: "round",
|
|
2606
|
-
strokeLinejoin: "round"
|
|
2607
|
-
})), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2608
|
-
d: "M44.798 116.95H21.698V131.248H44.798V116.95Z",
|
|
2609
|
-
fill: "#E2E8F0"
|
|
2610
|
-
})), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2611
|
-
d: "M44.798 116.95H21.698V131.248H44.798V116.95Z",
|
|
2612
|
-
stroke: "#334155",
|
|
2613
|
-
strokeWidth: 2,
|
|
2614
|
-
strokeLinecap: "round",
|
|
2615
|
-
strokeLinejoin: "round"
|
|
2616
|
-
})), _path6$1 || (_path6$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2617
|
-
d: "M44.798 89.114H21.698V103.032H44.798V89.114Z",
|
|
2618
|
-
fill: "#E2E8F0"
|
|
2619
|
-
})), _path7$1 || (_path7$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2620
|
-
d: "M44.798 89.114H21.698V103.032H44.798V89.114Z",
|
|
2621
|
-
stroke: "#334155",
|
|
2622
|
-
strokeWidth: 2,
|
|
2623
|
-
strokeLinecap: "round",
|
|
2624
|
-
strokeLinejoin: "round"
|
|
2625
|
-
})), _path8$1 || (_path8$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2626
|
-
d: "M57.3981 103.032H34.2981V116.95H57.3981V103.032Z",
|
|
2627
|
-
fill: "#E2E8F0"
|
|
2628
|
-
})), _path9$1 || (_path9$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2629
|
-
d: "M57.3981 103.032H34.2981V116.95H57.3981V103.032Z",
|
|
2630
|
-
stroke: "#334155",
|
|
2631
|
-
strokeWidth: 2,
|
|
2632
|
-
strokeLinecap: "round",
|
|
2633
|
-
strokeLinejoin: "round"
|
|
2634
|
-
})), _path10$1 || (_path10$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2635
|
-
d: "M34.298 103.032H11.198V116.95H34.298V103.032Z",
|
|
2636
|
-
fill: "#E2E8F0",
|
|
2637
|
-
stroke: "#334155",
|
|
2638
|
-
strokeWidth: 2,
|
|
2639
|
-
strokeLinecap: "round",
|
|
2640
|
-
strokeLinejoin: "round"
|
|
2641
|
-
})), _path11$1 || (_path11$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2642
|
-
d: "M57.3981 75.196H34.2981V89.114H57.3981V75.196Z",
|
|
2643
|
-
fill: "#E2E8F0"
|
|
2644
|
-
})), _path12$1 || (_path12$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2645
|
-
d: "M57.3981 75.196H34.2981V89.114H57.3981V75.196Z",
|
|
2646
|
-
stroke: "#334155",
|
|
2647
|
-
strokeWidth: 2,
|
|
2648
|
-
strokeLinecap: "round",
|
|
2649
|
-
strokeLinejoin: "round"
|
|
2650
|
-
})), _path13$1 || (_path13$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2651
|
-
d: "M34.298 75.196H11.198V89.114H34.298V75.196Z",
|
|
2652
|
-
fill: "#E2E8F0"
|
|
2653
|
-
})), _path14$1 || (_path14$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2654
|
-
d: "M34.298 75.196H11.198V89.114H34.298V75.196Z",
|
|
2655
|
-
stroke: "#334155",
|
|
2656
|
-
strokeWidth: 2,
|
|
2657
|
-
strokeLinecap: "round",
|
|
2658
|
-
strokeLinejoin: "round"
|
|
2659
|
-
})), _path15$1 || (_path15$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2660
|
-
d: "M44.798 61.28H21.698V75.198H44.798V61.28Z",
|
|
2661
|
-
fill: "#E2E8F0"
|
|
2662
|
-
})), _path16$1 || (_path16$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2663
|
-
d: "M44.798 61.28H21.698V75.198H44.798V61.28Z",
|
|
2664
|
-
stroke: "#334155",
|
|
2665
|
-
strokeWidth: 2,
|
|
2666
|
-
strokeLinecap: "round",
|
|
2667
|
-
strokeLinejoin: "round"
|
|
2668
|
-
})), _path17$1 || (_path17$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2669
|
-
d: "M57.3981 47.362H34.2981V61.28H57.3981V47.362Z",
|
|
2670
|
-
fill: "#E2E8F0"
|
|
2671
|
-
})), _path18$1 || (_path18$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2672
|
-
d: "M57.3981 47.362H34.2981V61.28H57.3981V47.362Z",
|
|
2673
|
-
stroke: "#334155",
|
|
2674
|
-
strokeWidth: 2,
|
|
2675
|
-
strokeLinecap: "round",
|
|
2676
|
-
strokeLinejoin: "round"
|
|
2677
|
-
})), _path19$1 || (_path19$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2678
|
-
d: "M9.44407 131.248H21.6981V116.95H4.92407C5.98482 121.846 7.49798 126.632 9.44407 131.248Z",
|
|
2679
|
-
fill: "#E2E8F0"
|
|
2680
|
-
})), _path20$1 || (_path20$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2681
|
-
d: "M9.44407 131.248H21.6981V116.95H4.92407",
|
|
2682
|
-
stroke: "#334155",
|
|
2683
|
-
strokeWidth: 2,
|
|
2684
|
-
strokeLinecap: "round",
|
|
2685
|
-
strokeLinejoin: "round"
|
|
2686
|
-
})), _path21$1 || (_path21$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2687
|
-
d: "M4.92408 116.95H11.2001V103.032H3.18408C3.3558 107.713 3.93804 112.37 4.92408 116.95Z",
|
|
2688
|
-
fill: "#E2E8F0"
|
|
2689
|
-
})), _path22$1 || (_path22$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2690
|
-
d: "M4.92408 116.95H11.1981V103.032H3.18408",
|
|
2691
|
-
stroke: "#334155",
|
|
2692
|
-
strokeWidth: 2,
|
|
2693
|
-
strokeLinecap: "round",
|
|
2694
|
-
strokeLinejoin: "round"
|
|
2695
|
-
})), _path23$1 || (_path23$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2696
|
-
d: "M3.18403 103.032H21.698V89.114H3.86403C3.36691 92.7215 3.11433 96.3584 3.10803 100C3.10803 101.018 3.14603 102.024 3.18403 103.032Z",
|
|
2697
|
-
fill: "#E2E8F0"
|
|
2698
|
-
})), _path24$1 || (_path24$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2699
|
-
d: "M3.18408 103.032H21.6981V89.114H3.86408",
|
|
2700
|
-
stroke: "#334155",
|
|
2701
|
-
strokeWidth: 2,
|
|
2702
|
-
strokeLinecap: "round",
|
|
2703
|
-
strokeLinejoin: "round"
|
|
2704
|
-
})), _path25$1 || (_path25$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2705
|
-
d: "M11.2 89.114V75.2H7.04801C5.57164 79.7345 4.50602 84.3926 3.86401 89.118L11.2 89.114Z",
|
|
2706
|
-
fill: "#E2E8F0"
|
|
2707
|
-
})), _path26$1 || (_path26$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2708
|
-
d: "M3.86401 89.114H11.198V75.196H7.04801",
|
|
2709
|
-
stroke: "#334155",
|
|
2710
|
-
strokeWidth: 2,
|
|
2711
|
-
strokeLinecap: "round",
|
|
2712
|
-
strokeLinejoin: "round"
|
|
2713
|
-
})), _path27$1 || (_path27$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2714
|
-
d: "M21.6981 75.2V61.28H13.0981C10.6418 65.7163 8.61592 70.3776 7.0481 75.2H21.6981Z",
|
|
2715
|
-
fill: "#E2E8F0"
|
|
2716
|
-
})), _path28$1 || (_path28$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2717
|
-
d: "M7.0481 75.196H21.6981V61.28H13.1021",
|
|
2718
|
-
stroke: "#334155",
|
|
2719
|
-
strokeWidth: 2,
|
|
2720
|
-
strokeLinecap: "round",
|
|
2721
|
-
strokeLinejoin: "round"
|
|
2722
|
-
})), _path29$1 || (_path29$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2723
|
-
d: "M13.1021 61.28H34.302V47.362H22.9021C19.1507 51.6404 15.8655 56.306 13.1021 61.28Z",
|
|
2724
|
-
fill: "#E2E8F0"
|
|
2725
|
-
})), _path30$1 || (_path30$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2726
|
-
d: "M13.1021 61.28H34.298V47.362H22.8921",
|
|
2727
|
-
stroke: "#334155",
|
|
2728
|
-
strokeWidth: 2,
|
|
2729
|
-
strokeLinecap: "round",
|
|
2730
|
-
strokeLinejoin: "round"
|
|
2731
|
-
})), _path31$1 || (_path31$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2732
|
-
d: "M70.4401 173.618C83.6949 173.618 94.4401 172.275 94.4401 170.618C94.4401 168.961 83.6949 167.618 70.4401 167.618C57.1852 167.618 46.4401 168.961 46.4401 170.618C46.4401 172.275 57.1852 173.618 70.4401 173.618Z",
|
|
2733
|
-
fill: "#E2E8F0"
|
|
2734
|
-
})), _path32$1 || (_path32$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2735
|
-
d: "M93.034 158.926H64.4821V169.308H93.034V158.926Z",
|
|
2736
|
-
fill: "#E2E8F0"
|
|
2737
|
-
})), _path33$1 || (_path33$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2738
|
-
d: "M93.034 158.926H64.4821V169.308H93.034V158.926Z",
|
|
2739
|
-
stroke: "#334155",
|
|
2740
|
-
strokeWidth: 2,
|
|
2741
|
-
strokeLinecap: "round",
|
|
2742
|
-
strokeLinejoin: "round"
|
|
2743
|
-
})), _path34$1 || (_path34$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2744
|
-
d: "M69.2588 145.594L44.8698 160.439L50.2679 169.308L74.6569 154.462L69.2588 145.594Z",
|
|
2745
|
-
fill: "#E2E8F0"
|
|
2746
|
-
})), _path35$1 || (_path35$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2747
|
-
d: "M69.2588 145.594L44.8698 160.439L50.2679 169.308L74.6569 154.462L69.2588 145.594Z",
|
|
2748
|
-
stroke: "#334155",
|
|
2749
|
-
strokeWidth: 2,
|
|
2750
|
-
strokeLinecap: "round",
|
|
2751
|
-
strokeLinejoin: "round"
|
|
2752
|
-
})), _path36$1 || (_path36$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2753
|
-
d: "M119.302 157.572C134.766 157.572 147.302 156.229 147.302 154.572C147.302 152.915 134.766 151.572 119.302 151.572C103.838 151.572 91.302 152.915 91.302 154.572C91.302 156.229 103.838 157.572 119.302 157.572Z",
|
|
2754
|
-
fill: "#E2E8F0"
|
|
2755
|
-
})), _path37$1 || (_path37$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2756
|
-
d: "M149.348 74.068C149.366 72.8404 149.14 71.6214 148.683 70.482C148.225 69.3426 147.546 68.3055 146.684 67.431C145.822 66.5565 144.795 65.862 143.663 65.388C142.53 64.914 141.315 64.6699 140.087 64.6699C138.859 64.6699 137.644 64.914 136.511 65.388C135.379 65.862 134.352 66.5565 133.49 67.431C132.628 68.3055 131.949 69.3426 131.492 70.482C131.034 71.6214 130.808 72.8404 130.826 74.068C129.61 74.0677 128.406 74.3071 127.282 74.7723C126.158 75.2375 125.137 75.9196 124.277 76.7795C123.417 77.6394 122.735 78.6603 122.269 79.7839C121.804 80.9075 121.564 82.1118 121.564 83.328C121.564 85.912 113.864 89.884 115.564 91.564C116.816 92.796 127.176 92.04 128.964 92.404L149.338 92.59C151.686 92.59 162.046 93.308 163.678 91.868C165.602 90.172 158.6 86.098 158.6 83.328C158.6 80.8735 157.626 78.5194 155.891 76.783C154.156 75.0467 151.803 74.0701 149.348 74.068Z",
|
|
2757
|
-
fill: "white"
|
|
2758
|
-
})), _path38$1 || (_path38$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2759
|
-
d: "M149.348 74.068C149.366 72.8404 149.14 71.6214 148.683 70.482C148.225 69.3426 147.546 68.3055 146.684 67.431C145.822 66.5565 144.795 65.862 143.663 65.388C142.53 64.914 141.315 64.6699 140.087 64.6699C138.859 64.6699 137.644 64.914 136.511 65.388C135.379 65.862 134.352 66.5565 133.49 67.431C132.628 68.3055 131.949 69.3426 131.492 70.482C131.034 71.6214 130.808 72.8404 130.826 74.068C129.61 74.0677 128.406 74.3071 127.282 74.7723C126.158 75.2375 125.137 75.9196 124.277 76.7795C123.417 77.6394 122.735 78.6603 122.269 79.7839C121.804 80.9075 121.564 82.1118 121.564 83.328C121.564 85.912 113.864 89.884 115.564 91.564C116.816 92.796 127.176 92.04 128.964 92.404L149.338 92.59C151.686 92.59 162.046 93.308 163.678 91.868C165.602 90.172 158.6 86.098 158.6 83.328C158.6 80.8735 157.626 78.5194 155.891 76.783C154.156 75.0467 151.803 74.0701 149.348 74.068Z",
|
|
2760
|
-
stroke: "#334155",
|
|
2761
|
-
strokeWidth: 2,
|
|
2762
|
-
strokeLinecap: "round",
|
|
2763
|
-
strokeLinejoin: "round"
|
|
2764
|
-
})), _path39$1 || (_path39$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2765
|
-
d: "M135.261 50.8623L117.309 63.5796L121.933 70.1075L139.885 57.3903L135.261 50.8623Z",
|
|
2766
|
-
fill: "#E2E8F0"
|
|
2767
|
-
})), _path40$1 || (_path40$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2768
|
-
d: "M135.261 50.8623L117.309 63.5796L121.933 70.1075L139.885 57.3903L135.261 50.8623Z",
|
|
2769
|
-
stroke: "#334155",
|
|
2770
|
-
strokeWidth: 2,
|
|
2771
|
-
strokeLinecap: "round",
|
|
2772
|
-
strokeLinejoin: "round"
|
|
2773
|
-
})), _path41$1 || (_path41$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2774
|
-
d: "M130.082 70.026C130.082 65.9947 128.481 62.1285 125.63 59.278C122.78 56.4274 118.913 54.826 114.882 54.826C110.851 54.826 106.985 56.4274 104.134 59.278C101.284 62.1285 99.6821 65.9947 99.6821 70.026C95.6508 70.026 91.7846 71.6274 88.9341 74.478C86.0835 77.3285 84.4821 81.1947 84.4821 85.226C84.4821 89.466 71.8461 95.982 74.6461 98.738C76.7021 100.762 93.7021 99.52 96.6461 100.116L130.078 100.422C133.93 100.422 150.928 101.6 153.606 99.24C156.766 96.454 145.274 89.77 145.274 85.226C145.274 81.1961 143.674 77.3311 140.825 74.4808C137.976 71.6305 134.112 70.0281 130.082 70.026Z",
|
|
2775
|
-
fill: "white"
|
|
2776
|
-
})), _path42$1 || (_path42$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2777
|
-
d: "M130.082 70.026C130.082 65.9947 128.481 62.1285 125.63 59.278C122.78 56.4274 118.913 54.826 114.882 54.826C110.851 54.826 106.985 56.4274 104.134 59.278C101.284 62.1285 99.6821 65.9947 99.6821 70.026C95.6508 70.026 91.7846 71.6274 88.9341 74.478C86.0835 77.3285 84.4821 81.1947 84.4821 85.226C84.4821 89.466 71.8461 95.982 74.6461 98.738C76.7021 100.762 93.7021 99.52 96.6461 100.116L130.078 100.422C133.93 100.422 150.928 101.6 153.606 99.24C156.766 96.454 145.274 89.77 145.274 85.226C145.274 81.1961 143.674 77.3311 140.825 74.4808C137.976 71.6305 134.112 70.0281 130.082 70.026Z",
|
|
2778
|
-
stroke: "#334155",
|
|
2779
|
-
strokeWidth: 2,
|
|
2780
|
-
strokeLinecap: "round",
|
|
2781
|
-
strokeLinejoin: "round"
|
|
2782
|
-
})), _path43$1 || (_path43$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2783
|
-
d: "M91.2611 63.8681L85.6315 69.552L101.262 85.0335L106.892 79.3496L91.2611 63.8681Z",
|
|
2784
|
-
fill: "#E2E8F0"
|
|
2785
|
-
})), _path44$1 || (_path44$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2786
|
-
d: "M91.2611 63.8681L85.6315 69.552L101.262 85.0335L106.892 79.3496L91.2611 63.8681Z",
|
|
2787
|
-
stroke: "#334155",
|
|
2788
|
-
strokeWidth: 2,
|
|
2789
|
-
strokeLinecap: "round",
|
|
2790
|
-
strokeLinejoin: "round"
|
|
2791
|
-
})), _path45$1 || (_path45$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2792
|
-
d: "M121.572 79.884C121.317 79.1745 120.924 78.5222 120.417 77.9645C119.909 77.4067 119.297 76.9545 118.614 76.6335C117.932 76.3126 117.193 76.1292 116.44 76.094C115.686 76.0587 114.933 76.1722 114.224 76.428C113.982 75.7014 113.597 75.0305 113.092 74.4549C112.587 73.8793 111.971 73.4106 111.282 73.0764C110.593 72.7422 109.844 72.5492 109.079 72.5088C108.314 72.4684 107.549 72.5814 106.829 72.8412C106.108 73.1009 105.447 73.5022 104.884 74.0214C104.321 74.5406 103.867 75.1671 103.55 75.8642C103.233 76.5613 103.058 77.3148 103.037 78.0804C103.015 78.8459 103.147 79.6081 103.424 80.322C102.715 80.5776 102.063 80.9704 101.505 81.478C100.948 81.9856 100.496 82.5981 100.175 83.2805C99.854 83.9628 99.6709 84.7017 99.6357 85.4549C99.6006 86.208 99.7142 86.9608 99.9701 87.67",
|
|
2793
|
-
fill: "white"
|
|
2794
|
-
})), _path46$1 || (_path46$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2795
|
-
d: "M121.572 79.884C121.317 79.1745 120.924 78.5222 120.417 77.9645C119.909 77.4067 119.297 76.9545 118.614 76.6335C117.932 76.3126 117.193 76.1292 116.44 76.094C115.686 76.0587 114.933 76.1722 114.224 76.428C113.982 75.7014 113.597 75.0305 113.092 74.4549C112.587 73.8793 111.971 73.4106 111.282 73.0764C110.593 72.7422 109.844 72.5492 109.079 72.5088C108.314 72.4684 107.549 72.5814 106.829 72.8412C106.108 73.1009 105.447 73.5022 104.884 74.0214C104.321 74.5406 103.867 75.1671 103.55 75.8642C103.233 76.5613 103.058 77.3148 103.037 78.0804C103.015 78.8459 103.147 79.6081 103.424 80.322C102.715 80.5776 102.063 80.9704 101.505 81.478C100.948 81.9856 100.496 82.5981 100.175 83.2805C99.854 83.9628 99.6709 84.7017 99.6357 85.4549C99.6006 86.208 99.7142 86.9608 99.9701 87.67",
|
|
2796
|
-
stroke: "#334155",
|
|
2797
|
-
strokeWidth: 2,
|
|
2798
|
-
strokeLinecap: "round",
|
|
2799
|
-
strokeLinejoin: "round"
|
|
2800
|
-
})), _path47$1 || (_path47$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2801
|
-
d: "M151.16 123.83L94.6701 137.28L73.3881 99.618H161.744L151.16 123.83Z",
|
|
2802
|
-
fill: "#E2E8F0"
|
|
2803
|
-
})), _path48$1 || (_path48$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2804
|
-
d: "M151.16 123.83L94.6701 137.28L73.3881 99.618H161.744L151.16 123.83Z",
|
|
2805
|
-
stroke: "#334155",
|
|
2806
|
-
strokeWidth: 2,
|
|
2807
|
-
strokeLinecap: "round",
|
|
2808
|
-
strokeLinejoin: "round"
|
|
2809
|
-
})), _path49$1 || (_path49$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2810
|
-
d: "M167.302 95.584C167.302 96.6541 166.876 97.6801 166.119 98.4366C165.362 99.1931 164.336 99.618 163.266 99.618H71.8C71.2626 99.63 70.7282 99.5345 70.2281 99.3371C69.7281 99.1397 69.2726 98.8444 68.8883 98.4685C68.5039 98.0926 68.1985 97.6438 67.9901 97.1483C67.7816 96.6528 67.6742 96.1206 67.6742 95.583C67.6742 95.0454 67.7816 94.5133 67.9901 94.0178C68.1985 93.5223 68.5039 93.0734 68.8883 92.6975C69.2726 92.3217 69.7281 92.0264 70.2281 91.829C70.7282 91.6316 71.2626 91.536 71.8 91.548H163.266C164.336 91.5485 165.363 91.9739 166.119 92.7307C166.876 93.4875 167.302 94.5138 167.302 95.584Z",
|
|
2811
|
-
fill: "#E2E8F0"
|
|
2812
|
-
})), _path50$1 || (_path50$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2813
|
-
d: "M167.302 95.584C167.302 96.6541 166.876 97.6801 166.119 98.4366C165.362 99.1931 164.336 99.618 163.266 99.618H71.8C71.2626 99.63 70.7282 99.5345 70.2281 99.3371C69.7281 99.1397 69.2726 98.8444 68.8883 98.4685C68.5039 98.0926 68.1985 97.6438 67.9901 97.1483C67.7816 96.6528 67.6742 96.1206 67.6742 95.583C67.6742 95.0454 67.7816 94.5133 67.9901 94.0178C68.1985 93.5223 68.5039 93.0734 68.8883 92.6975C69.2726 92.3217 69.7281 92.0264 70.2281 91.829C70.7282 91.6316 71.2626 91.536 71.8 91.548H163.266C164.336 91.5485 165.363 91.9739 166.119 92.7307C166.876 93.4875 167.302 94.5138 167.302 95.584Z",
|
|
2814
|
-
stroke: "#334155",
|
|
2815
|
-
strokeWidth: 2,
|
|
2816
|
-
strokeLinecap: "round",
|
|
2817
|
-
strokeLinejoin: "round"
|
|
2818
|
-
})), _path51$1 || (_path51$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2819
|
-
d: "M94.67 154.398C104.124 154.398 111.788 146.734 111.788 137.28C111.788 127.826 104.124 120.162 94.67 120.162C85.216 120.162 77.552 127.826 77.552 137.28C77.552 146.734 85.216 154.398 94.67 154.398Z",
|
|
2820
|
-
fill: "#E2E8F0"
|
|
2821
|
-
})), _path52$1 || (_path52$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2822
|
-
d: "M94.67 148.04C100.613 148.04 105.43 143.223 105.43 137.28C105.43 131.337 100.613 126.52 94.67 126.52C88.7274 126.52 83.91 131.337 83.91 137.28C83.91 143.223 88.7274 148.04 94.67 148.04Z",
|
|
2823
|
-
fill: "white"
|
|
2824
|
-
})), _path53$1 || (_path53$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2825
|
-
d: "M94.67 148.04C100.613 148.04 105.43 143.223 105.43 137.28C105.43 131.337 100.613 126.52 94.67 126.52C88.7274 126.52 83.91 131.337 83.91 137.28C83.91 143.223 88.7274 148.04 94.67 148.04Z",
|
|
2826
|
-
stroke: "#334155",
|
|
2827
|
-
strokeWidth: 2,
|
|
2828
|
-
strokeLinecap: "round",
|
|
2829
|
-
strokeLinejoin: "round"
|
|
2830
|
-
})), _path54$1 || (_path54$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2831
|
-
d: "M94.67 154.398C104.124 154.398 111.788 146.734 111.788 137.28C111.788 127.826 104.124 120.162 94.67 120.162C85.216 120.162 77.552 127.826 77.552 137.28C77.552 146.734 85.216 154.398 94.67 154.398Z",
|
|
2832
|
-
stroke: "#334155",
|
|
2833
|
-
strokeWidth: 2,
|
|
2834
|
-
strokeLinecap: "round",
|
|
2835
|
-
strokeLinejoin: "round"
|
|
2836
|
-
})), _path55$1 || (_path55$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2837
|
-
d: "M175.62 91.738H175.372C174.908 91.7381 174.452 91.8674 174.057 92.1115C173.662 92.3555 173.342 92.7047 173.134 93.12L160.2 118.98L94.0801 134.848C93.4839 134.99 92.9607 135.346 92.6098 135.848C92.2588 136.351 92.1046 136.964 92.1764 137.573C92.2482 138.182 92.5411 138.743 92.9993 139.149C93.4576 139.556 94.0493 139.781 94.6621 139.78C94.8587 139.78 95.0547 139.757 95.2461 139.712L119.352 133.926L130.352 153.428C130.495 153.682 130.682 153.909 130.904 154.098C132.545 155.517 134.641 156.298 136.81 156.298C137.497 156.297 138.181 156.22 138.85 156.068C140.24 155.761 141.538 155.13 142.638 154.226C143.738 153.322 144.609 152.172 145.18 150.868C145.218 150.783 145.251 150.696 145.28 150.608L153.152 125.808L162.502 123.564C162.857 123.479 163.189 123.318 163.474 123.091C163.76 122.865 163.993 122.578 164.156 122.252L177.2 96.18C177.602 95.8546 177.892 95.4127 178.032 94.9152C178.172 94.4178 178.155 93.8891 177.982 93.4021C177.809 92.915 177.49 92.4935 177.067 92.1955C176.645 91.8975 176.141 91.7377 175.624 91.738H175.62ZM140.562 148.958C140.303 149.498 139.929 149.976 139.466 150.357C139.003 150.738 138.463 151.013 137.883 151.164C137.303 151.315 136.697 151.338 136.107 151.231C135.517 151.124 134.958 150.889 134.468 150.544L124.414 132.712L147.474 127.178L140.562 148.958Z",
|
|
2838
|
-
fill: "white",
|
|
2839
|
-
stroke: "#334155",
|
|
2840
|
-
strokeWidth: 2,
|
|
2841
|
-
strokeMiterlimit: 10
|
|
2842
|
-
})), _path56$1 || (_path56$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2843
|
-
d: "M175.372 92.894C175.372 91.825 175.796 90.7996 176.551 90.043C177.307 89.2863 178.331 88.8601 179.4 88.858H192.852C193.907 88.8815 194.91 89.3169 195.648 90.0711C196.385 90.8252 196.798 91.8382 196.798 92.893C196.798 93.9479 196.385 94.9608 195.648 95.715C194.91 96.4691 193.907 96.9045 192.852 96.928H179.4C178.331 96.9264 177.307 96.5007 176.551 95.7444C175.796 94.988 175.372 93.9629 175.372 92.894Z",
|
|
2844
|
-
fill: "#E2E8F0"
|
|
2845
|
-
})), _path57$1 || (_path57$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2846
|
-
d: "M175.372 92.894C175.372 91.825 175.796 90.7996 176.551 90.043C177.307 89.2863 178.331 88.8601 179.4 88.858H192.852C193.907 88.8815 194.91 89.3169 195.648 90.0711C196.385 90.8252 196.798 91.8382 196.798 92.893C196.798 93.9479 196.385 94.9608 195.648 95.715C194.91 96.4691 193.907 96.9045 192.852 96.928H179.4C178.331 96.9264 177.307 96.5007 176.551 95.7444C175.796 94.988 175.372 93.9629 175.372 92.894Z",
|
|
2847
|
-
stroke: "#334155",
|
|
2848
|
-
strokeWidth: 2,
|
|
2849
|
-
strokeLinecap: "round",
|
|
2850
|
-
strokeLinejoin: "round"
|
|
2851
|
-
})));
|
|
2852
|
-
};
|
|
2853
|
-
var ForwardRef$1 = /*#__PURE__*/React.forwardRef(SvgWallConstruction);
|
|
1971
|
+
/**
|
|
1972
|
+
* The Graphic for the WallConstruction EmptyState
|
|
1973
|
+
*/
|
|
1974
|
+
const WallConstructionSVG = react.forwardRef((props, ref) => {
|
|
1975
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsx("path", { d: "M83.108 180C127.291 180 163.108 144.183 163.108 100C163.108 55.8172 127.291 20 83.108 20C38.9253 20 3.10803 55.8172 3.10803 100C3.10803 144.183 38.9253 180 83.108 180Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M9.44397 131.248C15.5826 145.707 25.8408 158.04 38.9399 166.709C52.039 175.379 67.3998 180.001 83.108 180.001C98.8161 180.001 114.177 175.379 127.276 166.709C140.375 158.04 150.633 145.707 156.772 131.248H9.44397Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M156.772 131.248H9.44397", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M44.798 116.95H21.698V131.248H44.798V116.95Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M44.798 116.95H21.698V131.248H44.798V116.95Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M44.798 89.114H21.698V103.032H44.798V89.114Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M44.798 89.114H21.698V103.032H44.798V89.114Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M57.3981 103.032H34.2981V116.95H57.3981V103.032Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M57.3981 103.032H34.2981V116.95H57.3981V103.032Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M34.298 103.032H11.198V116.95H34.298V103.032Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M57.3981 75.196H34.2981V89.114H57.3981V75.196Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M57.3981 75.196H34.2981V89.114H57.3981V75.196Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M34.298 75.196H11.198V89.114H34.298V75.196Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M34.298 75.196H11.198V89.114H34.298V75.196Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M44.798 61.28H21.698V75.198H44.798V61.28Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M44.798 61.28H21.698V75.198H44.798V61.28Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M57.3981 47.362H34.2981V61.28H57.3981V47.362Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M57.3981 47.362H34.2981V61.28H57.3981V47.362Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M9.44407 131.248H21.6981V116.95H4.92407C5.98482 121.846 7.49798 126.632 9.44407 131.248Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M9.44407 131.248H21.6981V116.95H4.92407", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M4.92408 116.95H11.2001V103.032H3.18408C3.3558 107.713 3.93804 112.37 4.92408 116.95Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M4.92408 116.95H11.1981V103.032H3.18408", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M3.18403 103.032H21.698V89.114H3.86403C3.36691 92.7215 3.11433 96.3584 3.10803 100C3.10803 101.018 3.14603 102.024 3.18403 103.032Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M3.18408 103.032H21.6981V89.114H3.86408", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M11.2 89.114V75.2H7.04801C5.57164 79.7345 4.50602 84.3926 3.86401 89.118L11.2 89.114Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M3.86401 89.114H11.198V75.196H7.04801", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M21.6981 75.2V61.28H13.0981C10.6418 65.7163 8.61592 70.3776 7.0481 75.2H21.6981Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M7.0481 75.196H21.6981V61.28H13.1021", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M13.1021 61.28H34.302V47.362H22.9021C19.1507 51.6404 15.8655 56.306 13.1021 61.28Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M13.1021 61.28H34.298V47.362H22.8921", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M70.4401 173.618C83.6949 173.618 94.4401 172.275 94.4401 170.618C94.4401 168.961 83.6949 167.618 70.4401 167.618C57.1852 167.618 46.4401 168.961 46.4401 170.618C46.4401 172.275 57.1852 173.618 70.4401 173.618Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M93.034 158.926H64.4821V169.308H93.034V158.926Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M93.034 158.926H64.4821V169.308H93.034V158.926Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M69.2588 145.594L44.8698 160.439L50.2679 169.308L74.6569 154.462L69.2588 145.594Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M69.2588 145.594L44.8698 160.439L50.2679 169.308L74.6569 154.462L69.2588 145.594Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M119.302 157.572C134.766 157.572 147.302 156.229 147.302 154.572C147.302 152.915 134.766 151.572 119.302 151.572C103.838 151.572 91.302 152.915 91.302 154.572C91.302 156.229 103.838 157.572 119.302 157.572Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M149.348 74.068C149.366 72.8404 149.14 71.6214 148.683 70.482C148.225 69.3426 147.546 68.3055 146.684 67.431C145.822 66.5565 144.795 65.862 143.663 65.388C142.53 64.914 141.315 64.6699 140.087 64.6699C138.859 64.6699 137.644 64.914 136.511 65.388C135.379 65.862 134.352 66.5565 133.49 67.431C132.628 68.3055 131.949 69.3426 131.492 70.482C131.034 71.6214 130.808 72.8404 130.826 74.068C129.61 74.0677 128.406 74.3071 127.282 74.7723C126.158 75.2375 125.137 75.9196 124.277 76.7795C123.417 77.6394 122.735 78.6603 122.269 79.7839C121.804 80.9075 121.564 82.1118 121.564 83.328C121.564 85.912 113.864 89.884 115.564 91.564C116.816 92.796 127.176 92.04 128.964 92.404L149.338 92.59C151.686 92.59 162.046 93.308 163.678 91.868C165.602 90.172 158.6 86.098 158.6 83.328C158.6 80.8735 157.626 78.5194 155.891 76.783C154.156 75.0467 151.803 74.0701 149.348 74.068Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M149.348 74.068C149.366 72.8404 149.14 71.6214 148.683 70.482C148.225 69.3426 147.546 68.3055 146.684 67.431C145.822 66.5565 144.795 65.862 143.663 65.388C142.53 64.914 141.315 64.6699 140.087 64.6699C138.859 64.6699 137.644 64.914 136.511 65.388C135.379 65.862 134.352 66.5565 133.49 67.431C132.628 68.3055 131.949 69.3426 131.492 70.482C131.034 71.6214 130.808 72.8404 130.826 74.068C129.61 74.0677 128.406 74.3071 127.282 74.7723C126.158 75.2375 125.137 75.9196 124.277 76.7795C123.417 77.6394 122.735 78.6603 122.269 79.7839C121.804 80.9075 121.564 82.1118 121.564 83.328C121.564 85.912 113.864 89.884 115.564 91.564C116.816 92.796 127.176 92.04 128.964 92.404L149.338 92.59C151.686 92.59 162.046 93.308 163.678 91.868C165.602 90.172 158.6 86.098 158.6 83.328C158.6 80.8735 157.626 78.5194 155.891 76.783C154.156 75.0467 151.803 74.0701 149.348 74.068Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M135.261 50.8623L117.309 63.5796L121.933 70.1075L139.885 57.3903L135.261 50.8623Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M135.261 50.8623L117.309 63.5796L121.933 70.1075L139.885 57.3903L135.261 50.8623Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M130.082 70.026C130.082 65.9947 128.481 62.1285 125.63 59.278C122.78 56.4274 118.913 54.826 114.882 54.826C110.851 54.826 106.985 56.4274 104.134 59.278C101.284 62.1285 99.6821 65.9947 99.6821 70.026C95.6508 70.026 91.7846 71.6274 88.9341 74.478C86.0835 77.3285 84.4821 81.1947 84.4821 85.226C84.4821 89.466 71.8461 95.982 74.6461 98.738C76.7021 100.762 93.7021 99.52 96.6461 100.116L130.078 100.422C133.93 100.422 150.928 101.6 153.606 99.24C156.766 96.454 145.274 89.77 145.274 85.226C145.274 81.1961 143.674 77.3311 140.825 74.4808C137.976 71.6305 134.112 70.0281 130.082 70.026Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M130.082 70.026C130.082 65.9947 128.481 62.1285 125.63 59.278C122.78 56.4274 118.913 54.826 114.882 54.826C110.851 54.826 106.985 56.4274 104.134 59.278C101.284 62.1285 99.6821 65.9947 99.6821 70.026C95.6508 70.026 91.7846 71.6274 88.9341 74.478C86.0835 77.3285 84.4821 81.1947 84.4821 85.226C84.4821 89.466 71.8461 95.982 74.6461 98.738C76.7021 100.762 93.7021 99.52 96.6461 100.116L130.078 100.422C133.93 100.422 150.928 101.6 153.606 99.24C156.766 96.454 145.274 89.77 145.274 85.226C145.274 81.1961 143.674 77.3311 140.825 74.4808C137.976 71.6305 134.112 70.0281 130.082 70.026Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M91.2611 63.8681L85.6315 69.552L101.262 85.0335L106.892 79.3496L91.2611 63.8681Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M91.2611 63.8681L85.6315 69.552L101.262 85.0335L106.892 79.3496L91.2611 63.8681Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M121.572 79.884C121.317 79.1745 120.924 78.5222 120.417 77.9645C119.909 77.4067 119.297 76.9545 118.614 76.6335C117.932 76.3126 117.193 76.1292 116.44 76.094C115.686 76.0587 114.933 76.1722 114.224 76.428C113.982 75.7014 113.597 75.0305 113.092 74.4549C112.587 73.8793 111.971 73.4106 111.282 73.0764C110.593 72.7422 109.844 72.5492 109.079 72.5088C108.314 72.4684 107.549 72.5814 106.829 72.8412C106.108 73.1009 105.447 73.5022 104.884 74.0214C104.321 74.5406 103.867 75.1671 103.55 75.8642C103.233 76.5613 103.058 77.3148 103.037 78.0804C103.015 78.8459 103.147 79.6081 103.424 80.322C102.715 80.5776 102.063 80.9704 101.505 81.478C100.948 81.9856 100.496 82.5981 100.175 83.2805C99.854 83.9628 99.6709 84.7017 99.6357 85.4549C99.6006 86.208 99.7142 86.9608 99.9701 87.67", fill: "white" }), jsxRuntime.jsx("path", { d: "M121.572 79.884C121.317 79.1745 120.924 78.5222 120.417 77.9645C119.909 77.4067 119.297 76.9545 118.614 76.6335C117.932 76.3126 117.193 76.1292 116.44 76.094C115.686 76.0587 114.933 76.1722 114.224 76.428C113.982 75.7014 113.597 75.0305 113.092 74.4549C112.587 73.8793 111.971 73.4106 111.282 73.0764C110.593 72.7422 109.844 72.5492 109.079 72.5088C108.314 72.4684 107.549 72.5814 106.829 72.8412C106.108 73.1009 105.447 73.5022 104.884 74.0214C104.321 74.5406 103.867 75.1671 103.55 75.8642C103.233 76.5613 103.058 77.3148 103.037 78.0804C103.015 78.8459 103.147 79.6081 103.424 80.322C102.715 80.5776 102.063 80.9704 101.505 81.478C100.948 81.9856 100.496 82.5981 100.175 83.2805C99.854 83.9628 99.6709 84.7017 99.6357 85.4549C99.6006 86.208 99.7142 86.9608 99.9701 87.67", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M151.16 123.83L94.6701 137.28L73.3881 99.618H161.744L151.16 123.83Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M151.16 123.83L94.6701 137.28L73.3881 99.618H161.744L151.16 123.83Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M167.302 95.584C167.302 96.6541 166.876 97.6801 166.119 98.4366C165.362 99.1931 164.336 99.618 163.266 99.618H71.8C71.2626 99.63 70.7282 99.5345 70.2281 99.3371C69.7281 99.1397 69.2726 98.8444 68.8883 98.4685C68.5039 98.0926 68.1985 97.6438 67.9901 97.1483C67.7816 96.6528 67.6742 96.1206 67.6742 95.583C67.6742 95.0454 67.7816 94.5133 67.9901 94.0178C68.1985 93.5223 68.5039 93.0734 68.8883 92.6975C69.2726 92.3217 69.7281 92.0264 70.2281 91.829C70.7282 91.6316 71.2626 91.536 71.8 91.548H163.266C164.336 91.5485 165.363 91.9739 166.119 92.7307C166.876 93.4875 167.302 94.5138 167.302 95.584Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M167.302 95.584C167.302 96.6541 166.876 97.6801 166.119 98.4366C165.362 99.1931 164.336 99.618 163.266 99.618H71.8C71.2626 99.63 70.7282 99.5345 70.2281 99.3371C69.7281 99.1397 69.2726 98.8444 68.8883 98.4685C68.5039 98.0926 68.1985 97.6438 67.9901 97.1483C67.7816 96.6528 67.6742 96.1206 67.6742 95.583C67.6742 95.0454 67.7816 94.5133 67.9901 94.0178C68.1985 93.5223 68.5039 93.0734 68.8883 92.6975C69.2726 92.3217 69.7281 92.0264 70.2281 91.829C70.7282 91.6316 71.2626 91.536 71.8 91.548H163.266C164.336 91.5485 165.363 91.9739 166.119 92.7307C166.876 93.4875 167.302 94.5138 167.302 95.584Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M94.67 154.398C104.124 154.398 111.788 146.734 111.788 137.28C111.788 127.826 104.124 120.162 94.67 120.162C85.216 120.162 77.552 127.826 77.552 137.28C77.552 146.734 85.216 154.398 94.67 154.398Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M94.67 148.04C100.613 148.04 105.43 143.223 105.43 137.28C105.43 131.337 100.613 126.52 94.67 126.52C88.7274 126.52 83.91 131.337 83.91 137.28C83.91 143.223 88.7274 148.04 94.67 148.04Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M94.67 148.04C100.613 148.04 105.43 143.223 105.43 137.28C105.43 131.337 100.613 126.52 94.67 126.52C88.7274 126.52 83.91 131.337 83.91 137.28C83.91 143.223 88.7274 148.04 94.67 148.04Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M94.67 154.398C104.124 154.398 111.788 146.734 111.788 137.28C111.788 127.826 104.124 120.162 94.67 120.162C85.216 120.162 77.552 127.826 77.552 137.28C77.552 146.734 85.216 154.398 94.67 154.398Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M175.62 91.738H175.372C174.908 91.7381 174.452 91.8674 174.057 92.1115C173.662 92.3555 173.342 92.7047 173.134 93.12L160.2 118.98L94.0801 134.848C93.4839 134.99 92.9607 135.346 92.6098 135.848C92.2588 136.351 92.1046 136.964 92.1764 137.573C92.2482 138.182 92.5411 138.743 92.9993 139.149C93.4576 139.556 94.0493 139.781 94.6621 139.78C94.8587 139.78 95.0547 139.757 95.2461 139.712L119.352 133.926L130.352 153.428C130.495 153.682 130.682 153.909 130.904 154.098C132.545 155.517 134.641 156.298 136.81 156.298C137.497 156.297 138.181 156.22 138.85 156.068C140.24 155.761 141.538 155.13 142.638 154.226C143.738 153.322 144.609 152.172 145.18 150.868C145.218 150.783 145.251 150.696 145.28 150.608L153.152 125.808L162.502 123.564C162.857 123.479 163.189 123.318 163.474 123.091C163.76 122.865 163.993 122.578 164.156 122.252L177.2 96.18C177.602 95.8546 177.892 95.4127 178.032 94.9152C178.172 94.4178 178.155 93.8891 177.982 93.4021C177.809 92.915 177.49 92.4935 177.067 92.1955C176.645 91.8975 176.141 91.7377 175.624 91.738H175.62ZM140.562 148.958C140.303 149.498 139.929 149.976 139.466 150.357C139.003 150.738 138.463 151.013 137.883 151.164C137.303 151.315 136.697 151.338 136.107 151.231C135.517 151.124 134.958 150.889 134.468 150.544L124.414 132.712L147.474 127.178L140.562 148.958Z", fill: "white", stroke: "#334155", strokeMiterlimit: "10", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M175.372 92.894C175.372 91.825 175.796 90.7996 176.551 90.043C177.307 89.2863 178.331 88.8601 179.4 88.858H192.852C193.907 88.8815 194.91 89.3169 195.648 90.0711C196.385 90.8252 196.798 91.8382 196.798 92.893C196.798 93.9479 196.385 94.9608 195.648 95.715C194.91 96.4691 193.907 96.9045 192.852 96.928H179.4C178.331 96.9264 177.307 96.5007 176.551 95.7444C175.796 94.988 175.372 93.9629 175.372 92.894Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M175.372 92.894C175.372 91.825 175.796 90.7996 176.551 90.043C177.307 89.2863 178.331 88.8601 179.4 88.858H192.852C193.907 88.8815 194.91 89.3169 195.648 90.0711C196.385 90.8252 196.798 91.8382 196.798 92.893C196.798 93.9479 196.385 94.9608 195.648 95.715C194.91 96.4691 193.907 96.9045 192.852 96.928H179.4C178.331 96.9264 177.307 96.5007 176.551 95.7444C175.796 94.988 175.372 93.9629 175.372 92.894Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" })] }));
|
|
1976
|
+
});
|
|
1977
|
+
WallConstructionSVG.displayName = "WallConstructionSVG";
|
|
2854
1978
|
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
title,
|
|
2863
|
-
titleId
|
|
2864
|
-
} = _ref,
|
|
2865
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
2866
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2867
|
-
width: 200,
|
|
2868
|
-
height: 200,
|
|
2869
|
-
viewBox: "0 0 200 200",
|
|
2870
|
-
fill: "none",
|
|
2871
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2872
|
-
ref: ref,
|
|
2873
|
-
"aria-labelledby": titleId
|
|
2874
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
2875
|
-
id: titleId
|
|
2876
|
-
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2877
|
-
d: "M181 100C181.002 88.0604 178.331 76.2717 173.183 65.4987C168.035 54.7257 160.541 45.2416 151.251 37.7418C141.961 30.242 131.11 24.9168 119.493 22.1567C107.877 19.3967 95.7903 19.2717 84.1195 21.7911C72.4486 24.3104 61.4897 29.4102 52.0464 36.7163C42.603 44.0225 34.9148 53.3497 29.5456 64.014C24.1763 74.6783 21.2622 86.4092 21.0169 98.3463C20.7716 110.283 23.2014 122.124 28.128 133H173.872C178.578 122.635 181.008 111.383 181 100Z",
|
|
2878
|
-
fill: "#F1F5F9"
|
|
2879
|
-
})), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2880
|
-
d: "M28.1279 133C34.4733 147.008 44.7216 158.89 57.6457 167.224C70.5697 175.558 85.6219 179.99 101 179.99C116.378 179.99 131.43 175.558 144.354 167.224C157.278 158.89 167.527 147.008 173.872 133H28.1279Z",
|
|
2881
|
-
fill: "white"
|
|
2882
|
-
})), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2883
|
-
d: "M22 133H178",
|
|
2884
|
-
stroke: "#334155",
|
|
2885
|
-
strokeWidth: 2,
|
|
2886
|
-
strokeLinecap: "round",
|
|
2887
|
-
strokeLinejoin: "round"
|
|
2888
|
-
})), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2889
|
-
d: "M13 133H18",
|
|
2890
|
-
stroke: "#334155",
|
|
2891
|
-
strokeWidth: 2,
|
|
2892
|
-
strokeLinecap: "round",
|
|
2893
|
-
strokeLinejoin: "round"
|
|
2894
|
-
})), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2895
|
-
d: "M182 133H187",
|
|
2896
|
-
stroke: "#334155",
|
|
2897
|
-
strokeWidth: 2,
|
|
2898
|
-
strokeLinecap: "round",
|
|
2899
|
-
strokeLinejoin: "round"
|
|
2900
|
-
})), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2901
|
-
d: "M162.968 110.136H156.952V133H162.968V110.136Z",
|
|
2902
|
-
fill: "white"
|
|
2903
|
-
})), _path7 || (_path7 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2904
|
-
d: "M166.986 100.51H110.818C109.713 100.51 108.818 101.406 108.818 102.51V108.138C108.818 109.243 109.713 110.138 110.818 110.138H166.986C168.091 110.138 168.986 109.243 168.986 108.138V102.51C168.986 101.406 168.091 100.51 166.986 100.51Z",
|
|
2905
|
-
fill: "white",
|
|
2906
|
-
stroke: "#334155",
|
|
2907
|
-
strokeWidth: 2,
|
|
2908
|
-
strokeLinecap: "round",
|
|
2909
|
-
strokeLinejoin: "round"
|
|
2910
|
-
})), _path8 || (_path8 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2911
|
-
d: "M120.852 110.136H114.836V133H120.852V110.136Z",
|
|
2912
|
-
fill: "white"
|
|
2913
|
-
})), _path9 || (_path9 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2914
|
-
d: "M120.852 110.136H114.836V133H120.852V110.136Z",
|
|
2915
|
-
stroke: "#334155",
|
|
2916
|
-
strokeWidth: 2,
|
|
2917
|
-
strokeLinecap: "round",
|
|
2918
|
-
strokeLinejoin: "round"
|
|
2919
|
-
})), _path10 || (_path10 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2920
|
-
d: "M162.968 110.136H156.952V133H162.968V110.136Z",
|
|
2921
|
-
stroke: "#334155",
|
|
2922
|
-
strokeWidth: 2,
|
|
2923
|
-
strokeLinecap: "round",
|
|
2924
|
-
strokeLinejoin: "round"
|
|
2925
|
-
})), _path11 || (_path11 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2926
|
-
d: "M156.952 119.764H120.85V125.78H156.952V119.764Z",
|
|
2927
|
-
fill: "white",
|
|
2928
|
-
stroke: "#334155",
|
|
2929
|
-
strokeWidth: 2,
|
|
2930
|
-
strokeLinecap: "round",
|
|
2931
|
-
strokeLinejoin: "round"
|
|
2932
|
-
})), _path12 || (_path12 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2933
|
-
d: "M122.054 94.9321H114.836V100.51H122.054V94.9321Z",
|
|
2934
|
-
fill: "#E2E8F0",
|
|
2935
|
-
stroke: "#334155",
|
|
2936
|
-
strokeWidth: 2,
|
|
2937
|
-
strokeLinecap: "round",
|
|
2938
|
-
strokeLinejoin: "round"
|
|
2939
|
-
})), _path13 || (_path13 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2940
|
-
d: "M118.444 110.136H112.426L117.242 100.51H123.258L118.444 110.136Z",
|
|
2941
|
-
fill: "#E2E8F0",
|
|
2942
|
-
stroke: "#334155",
|
|
2943
|
-
strokeWidth: 2,
|
|
2944
|
-
strokeLinecap: "round",
|
|
2945
|
-
strokeLinejoin: "round"
|
|
2946
|
-
})), _path14 || (_path14 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2947
|
-
d: "M132.884 110.136H126.868L131.68 100.51H137.698L132.884 110.136Z",
|
|
2948
|
-
fill: "#E2E8F0",
|
|
2949
|
-
stroke: "#334155",
|
|
2950
|
-
strokeWidth: 2,
|
|
2951
|
-
strokeLinecap: "round",
|
|
2952
|
-
strokeLinejoin: "round"
|
|
2953
|
-
})), _path15 || (_path15 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2954
|
-
d: "M147.326 110.136H141.308L146.122 100.51H152.138L147.326 110.136Z",
|
|
2955
|
-
fill: "#E2E8F0",
|
|
2956
|
-
stroke: "#334155",
|
|
2957
|
-
strokeWidth: 2,
|
|
2958
|
-
strokeLinecap: "round",
|
|
2959
|
-
strokeLinejoin: "round"
|
|
2960
|
-
})), _path16 || (_path16 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2961
|
-
d: "M161.764 110.136H155.75L160.562 100.51H166.58L161.764 110.136Z",
|
|
2962
|
-
fill: "#E2E8F0",
|
|
2963
|
-
stroke: "#334155",
|
|
2964
|
-
strokeWidth: 2,
|
|
2965
|
-
strokeLinecap: "round",
|
|
2966
|
-
strokeLinejoin: "round"
|
|
2967
|
-
})), _path17 || (_path17 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2968
|
-
d: "M128.072 125.78H123.258L126.868 119.764H131.68L128.072 125.78Z",
|
|
2969
|
-
fill: "#E2E8F0",
|
|
2970
|
-
stroke: "#334155",
|
|
2971
|
-
strokeWidth: 2,
|
|
2972
|
-
strokeLinecap: "round",
|
|
2973
|
-
strokeLinejoin: "round"
|
|
2974
|
-
})), _path18 || (_path18 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2975
|
-
d: "M138.902 125.78H134.088L137.698 119.764H142.51L138.902 125.78Z",
|
|
2976
|
-
fill: "#E2E8F0",
|
|
2977
|
-
stroke: "#334155",
|
|
2978
|
-
strokeWidth: 2,
|
|
2979
|
-
strokeLinecap: "round",
|
|
2980
|
-
strokeLinejoin: "round"
|
|
2981
|
-
})), _path19 || (_path19 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2982
|
-
d: "M149.732 125.78H144.92L148.528 119.764H153.34L149.732 125.78Z",
|
|
2983
|
-
fill: "#E2E8F0",
|
|
2984
|
-
stroke: "#334155",
|
|
2985
|
-
strokeWidth: 2,
|
|
2986
|
-
strokeLinecap: "round",
|
|
2987
|
-
strokeLinejoin: "round"
|
|
2988
|
-
})), _path20 || (_path20 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2989
|
-
d: "M124.462 90.4921C124.462 91.6824 124.11 92.8461 123.449 93.836C122.788 94.826 121.848 95.5976 120.748 96.0534C119.649 96.5092 118.439 96.6287 117.271 96.3967C116.104 96.1647 115.031 95.5917 114.189 94.7502C113.348 93.9086 112.774 92.8363 112.542 91.6689C112.309 90.5014 112.429 89.2913 112.884 88.1916C113.339 87.0918 114.111 86.1518 115.1 85.4904C116.09 84.8291 117.254 84.4761 118.444 84.4761C120.04 84.4766 121.57 85.1105 122.698 86.2386C123.827 87.3666 124.461 88.8965 124.462 90.4921Z",
|
|
2990
|
-
fill: "white"
|
|
2991
|
-
})), _path21 || (_path21 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2992
|
-
d: "M124.462 90.4921C124.462 91.6824 124.11 92.8461 123.449 93.836C122.788 94.826 121.848 95.5976 120.748 96.0534C119.649 96.5092 118.439 96.6287 117.271 96.3967C116.104 96.1647 115.031 95.5917 114.189 94.7502C113.348 93.9086 112.774 92.8363 112.542 91.6689C112.309 90.5014 112.429 89.2913 112.884 88.1916C113.339 87.0918 114.111 86.1518 115.1 85.4904C116.09 84.8291 117.254 84.4761 118.444 84.4761C120.04 84.4766 121.57 85.1105 122.698 86.2386C123.827 87.3666 124.461 88.8965 124.462 90.4921Z",
|
|
2993
|
-
stroke: "#334155",
|
|
2994
|
-
strokeWidth: 2,
|
|
2995
|
-
strokeLinecap: "round",
|
|
2996
|
-
strokeLinejoin: "round"
|
|
2997
|
-
})), _path22 || (_path22 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2998
|
-
d: "M162.966 94.9321H155.748V100.51H162.966V94.9321Z",
|
|
2999
|
-
fill: "#E2E8F0",
|
|
3000
|
-
stroke: "#334155",
|
|
3001
|
-
strokeWidth: 2,
|
|
3002
|
-
strokeLinecap: "round",
|
|
3003
|
-
strokeLinejoin: "round"
|
|
3004
|
-
})), _path23 || (_path23 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3005
|
-
d: "M165.376 90.4921C165.376 91.6824 165.024 92.8461 164.363 93.836C163.702 94.826 162.762 95.5976 161.662 96.0534C160.563 96.5092 159.353 96.6287 158.185 96.3967C157.018 96.1647 155.945 95.5917 155.103 94.7502C154.262 93.9086 153.688 92.8363 153.456 91.6689C153.224 90.5014 153.343 89.2913 153.798 88.1916C154.253 87.0918 155.025 86.1518 156.014 85.4904C157.004 84.8291 158.168 84.4761 159.358 84.4761C160.954 84.4766 162.484 85.1105 163.612 86.2386C164.741 87.3666 165.375 88.8965 165.376 90.4921Z",
|
|
3006
|
-
fill: "white"
|
|
3007
|
-
})), _path24 || (_path24 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3008
|
-
d: "M165.376 90.4921C165.376 91.6824 165.024 92.8461 164.363 93.836C163.702 94.826 162.762 95.5976 161.662 96.0534C160.563 96.5092 159.353 96.6287 158.185 96.3967C157.018 96.1647 155.945 95.5917 155.103 94.7502C154.262 93.9086 153.688 92.8363 153.456 91.6689C153.224 90.5014 153.343 89.2913 153.798 88.1916C154.253 87.0918 155.025 86.1518 156.014 85.4904C157.004 84.8291 158.168 84.4761 159.358 84.4761C160.954 84.4766 162.484 85.1105 163.612 86.2386C164.741 87.3666 165.375 88.8965 165.376 90.4921Z",
|
|
3009
|
-
stroke: "#334155",
|
|
3010
|
-
strokeWidth: 2,
|
|
3011
|
-
strokeLinecap: "round",
|
|
3012
|
-
strokeLinejoin: "round"
|
|
3013
|
-
})), _path25 || (_path25 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3014
|
-
d: "M125.026 159.518H105.652L113.6 129.028C113.706 128.65 113.933 128.317 114.246 128.08C114.559 127.843 114.941 127.715 115.333 127.715C115.726 127.715 116.107 127.843 116.42 128.08C116.733 128.317 116.96 128.65 117.066 129.028L125.026 159.518Z",
|
|
3015
|
-
fill: "#E2E8F0",
|
|
3016
|
-
stroke: "#334155",
|
|
3017
|
-
strokeWidth: 2,
|
|
3018
|
-
strokeLinecap: "round",
|
|
3019
|
-
strokeLinejoin: "round"
|
|
3020
|
-
})), _path26 || (_path26 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3021
|
-
d: "M101.5 159.518H129.178",
|
|
3022
|
-
stroke: "#334155",
|
|
3023
|
-
strokeWidth: 2,
|
|
3024
|
-
strokeLinecap: "round",
|
|
3025
|
-
strokeLinejoin: "round"
|
|
3026
|
-
})), _path27 || (_path27 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3027
|
-
d: "M109.984 142.912H120.694L119.25 137.376H111.428L109.984 142.912Z",
|
|
3028
|
-
fill: "white",
|
|
3029
|
-
stroke: "#334155",
|
|
3030
|
-
strokeWidth: 2,
|
|
3031
|
-
strokeLinecap: "round",
|
|
3032
|
-
strokeLinejoin: "round"
|
|
3033
|
-
})), _path28 || (_path28 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3034
|
-
d: "M107.096 153.982H123.582L122.138 148.448H108.54L107.096 153.982Z",
|
|
3035
|
-
fill: "white",
|
|
3036
|
-
stroke: "#334155",
|
|
3037
|
-
strokeWidth: 2,
|
|
3038
|
-
strokeLinecap: "round",
|
|
3039
|
-
strokeLinejoin: "round"
|
|
3040
|
-
})), _path29 || (_path29 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3041
|
-
d: "M90.446 160.23L97.536 142.2L123 160.76C123.32 160.993 123.554 161.326 123.665 161.707C123.776 162.087 123.757 162.493 123.612 162.862C123.467 163.231 123.204 163.541 122.864 163.744C122.523 163.947 122.125 164.031 121.732 163.984L90.446 160.23Z",
|
|
3042
|
-
fill: "#E2E8F0",
|
|
3043
|
-
stroke: "#334155",
|
|
3044
|
-
strokeWidth: 2,
|
|
3045
|
-
strokeLinecap: "round",
|
|
3046
|
-
strokeLinejoin: "round"
|
|
3047
|
-
})), _path30 || (_path30 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3048
|
-
d: "M99.054 138.336L88.926 164.092",
|
|
3049
|
-
stroke: "#334155",
|
|
3050
|
-
strokeWidth: 2,
|
|
3051
|
-
strokeLinecap: "round",
|
|
3052
|
-
strokeLinejoin: "round"
|
|
3053
|
-
})), _path31 || (_path31 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3054
|
-
d: "M111.404 152.308L107.486 162.276L113.166 162.956L116.028 155.678L111.404 152.308Z",
|
|
3055
|
-
fill: "white",
|
|
3056
|
-
stroke: "#334155",
|
|
3057
|
-
strokeWidth: 2,
|
|
3058
|
-
strokeLinecap: "round",
|
|
3059
|
-
strokeLinejoin: "round"
|
|
3060
|
-
})), _path32 || (_path32 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3061
|
-
d: "M102.16 145.568L96.126 160.912L101.806 161.594L106.782 148.938L102.16 145.568Z",
|
|
3062
|
-
fill: "white",
|
|
3063
|
-
stroke: "#334155",
|
|
3064
|
-
strokeWidth: 2,
|
|
3065
|
-
strokeLinecap: "round",
|
|
3066
|
-
strokeLinejoin: "round"
|
|
3067
|
-
})), _path33 || (_path33 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3068
|
-
d: "M98.614 116.8V101.82C98.544 103.848 97.8 110.704 90.99 110.704C90.1937 110.781 89.3901 110.684 88.6355 110.418C87.881 110.152 87.1937 109.724 86.622 109.164C85.2168 107.069 84.5938 104.546 84.862 102.038C84.985 100.833 84.6273 99.6273 83.8668 98.684C83.1062 97.7406 82.0041 97.1355 80.8 97.0001C80.642 96.9818 80.4831 96.9724 80.324 96.9721C79.1942 96.9689 78.103 97.383 77.2596 98.1348C76.4163 98.8866 75.8801 99.9233 75.754 101.046C75.714 101.398 74.858 109.754 79.782 115.246C81.1993 116.785 82.9367 117.994 84.8717 118.789C86.8067 119.583 88.8924 119.944 90.982 119.846C93.7209 119.9 96.4312 119.282 98.876 118.046C98.7023 117.654 98.6131 117.229 98.614 116.8Z",
|
|
3069
|
-
fill: "white",
|
|
3070
|
-
stroke: "#334155",
|
|
3071
|
-
strokeWidth: 2,
|
|
3072
|
-
strokeLinecap: "round",
|
|
3073
|
-
strokeLinejoin: "round"
|
|
3074
|
-
})), _path34 || (_path34 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3075
|
-
d: "M84.894 101.55C84.834 94.7106 82.0749 88.1717 77.2173 83.3566C72.3596 78.5414 65.7968 75.8398 58.957 75.8398C52.1173 75.8398 45.5544 78.5414 40.6968 83.3566C35.8392 88.1717 33.0801 94.7106 33.02 101.55V103.076H42.174V122.912H75.738V103.076H84.894V101.55Z",
|
|
3076
|
-
fill: "white"
|
|
3077
|
-
})), _path35 || (_path35 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3078
|
-
d: "M84.894 101.55C84.834 94.7106 82.0749 88.1717 77.2173 83.3566C72.3596 78.5414 65.7968 75.8398 58.957 75.8398C52.1173 75.8398 45.5544 78.5414 40.6968 83.3566C35.8392 88.1717 33.0801 94.7106 33.02 101.55V103.076H42.174V122.912H75.738V103.076H84.894V101.55Z",
|
|
3079
|
-
stroke: "#334155",
|
|
3080
|
-
strokeWidth: 2,
|
|
3081
|
-
strokeLinecap: "round",
|
|
3082
|
-
strokeLinejoin: "round"
|
|
3083
|
-
})), _path36 || (_path36 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3084
|
-
d: "M58.372 175.278C72.3769 175.278 83.73 173.575 83.73 171.474C83.73 169.373 72.3769 167.67 58.372 167.67C44.3672 167.67 33.014 169.373 33.014 171.474C33.014 173.575 44.3672 175.278 58.372 175.278Z",
|
|
3085
|
-
fill: "#E2E8F0"
|
|
3086
|
-
})), _path37 || (_path37 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3087
|
-
d: "M60.4821 119.858H42.1741V168.682H54.3741L55.7741 136.64C55.8097 135.819 56.1608 135.044 56.7542 134.476C57.3476 133.908 58.1375 133.59 58.9591 133.59C59.7806 133.59 60.5705 133.908 61.1639 134.476C61.7573 135.044 62.1084 135.819 62.1441 136.64L63.5341 168.682H75.7341V119.858H60.4821Z",
|
|
3088
|
-
fill: "#E2E8F0"
|
|
3089
|
-
})), _path38 || (_path38 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3090
|
-
d: "M60.4821 119.858H42.1741V168.682H54.3741L55.7741 136.64C55.8097 135.819 56.1608 135.044 56.7542 134.476C57.3476 133.908 58.1375 133.59 58.9591 133.59C59.7806 133.59 60.5705 133.908 61.1639 134.476C61.7573 135.044 62.1084 135.819 62.1441 136.64L63.5341 168.682H75.7341V119.858H60.4821Z",
|
|
3091
|
-
stroke: "#334155",
|
|
3092
|
-
strokeWidth: 2,
|
|
3093
|
-
strokeLinecap: "round",
|
|
3094
|
-
strokeLinejoin: "round"
|
|
3095
|
-
})), _path39 || (_path39 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3096
|
-
d: "M75.738 103.076V93.9221",
|
|
3097
|
-
stroke: "#334155",
|
|
3098
|
-
strokeWidth: 2,
|
|
3099
|
-
strokeLinecap: "round",
|
|
3100
|
-
strokeLinejoin: "round"
|
|
3101
|
-
})), _path40 || (_path40 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3102
|
-
d: "M42.1741 103.076V93.9221",
|
|
3103
|
-
stroke: "#334155",
|
|
3104
|
-
strokeWidth: 2,
|
|
3105
|
-
strokeLinecap: "round",
|
|
3106
|
-
strokeLinejoin: "round"
|
|
3107
|
-
})), _path41 || (_path41 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3108
|
-
d: "M40.2521 166.284C40.004 166.667 39.8636 167.109 39.8457 167.565C39.8278 168.02 39.9331 168.472 40.1505 168.873C40.3679 169.274 40.6894 169.609 41.0811 169.842C41.4727 170.076 41.9201 170.199 42.3761 170.2H52.8161C53.2514 170.2 53.6794 170.088 54.0588 169.875C54.4383 169.661 54.7564 169.354 54.9827 168.982C55.2089 168.61 55.3356 168.186 55.3506 167.751C55.3655 167.316 55.2682 166.885 55.0681 166.498C52.2961 161.156 43.4141 161.454 40.2521 166.284Z",
|
|
3109
|
-
fill: "white",
|
|
3110
|
-
stroke: "#334155",
|
|
3111
|
-
strokeWidth: 2,
|
|
3112
|
-
strokeLinecap: "round",
|
|
3113
|
-
strokeLinejoin: "round"
|
|
3114
|
-
})), _path42 || (_path42 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3115
|
-
d: "M77.6621 166.284C77.9102 166.667 78.0506 167.109 78.0685 167.565C78.0864 168.02 77.981 168.472 77.7636 168.873C77.5462 169.274 77.2248 169.609 76.8331 169.842C76.4414 170.076 75.9941 170.199 75.5381 170.2H65.0981C64.6628 170.2 64.2348 170.088 63.8554 169.875C63.4759 169.661 63.1578 169.354 62.9315 168.982C62.7053 168.61 62.5786 168.186 62.5636 167.751C62.5487 167.316 62.6459 166.885 62.8461 166.498C65.6181 161.156 74.4981 161.454 77.6621 166.284Z",
|
|
3116
|
-
fill: "white",
|
|
3117
|
-
stroke: "#334155",
|
|
3118
|
-
strokeWidth: 2,
|
|
3119
|
-
strokeLinecap: "round",
|
|
3120
|
-
strokeLinejoin: "round"
|
|
3121
|
-
})), _path43 || (_path43 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3122
|
-
d: "M42.17 130.538C42.17 131.752 41.6877 132.917 40.8292 133.775C39.9706 134.634 38.8062 135.116 37.592 135.116C36.3779 135.116 35.2134 134.634 34.3549 133.775C33.4964 132.917 33.014 131.752 33.014 130.538V103.076H42.17V130.538Z",
|
|
3123
|
-
fill: "white",
|
|
3124
|
-
stroke: "#334155",
|
|
3125
|
-
strokeWidth: 2,
|
|
3126
|
-
strokeLinecap: "round",
|
|
3127
|
-
strokeLinejoin: "round"
|
|
3128
|
-
})), _path44 || (_path44 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3129
|
-
d: "M104.718 116.8C104.718 117.61 104.396 118.386 103.824 118.958C103.252 119.531 102.475 119.852 101.666 119.852C100.857 119.852 100.08 119.531 99.5079 118.958C98.9356 118.386 98.614 117.61 98.614 116.8V81.7161H104.718V116.8Z",
|
|
3130
|
-
fill: "#E2E8F0",
|
|
3131
|
-
stroke: "#334155",
|
|
3132
|
-
strokeWidth: 2,
|
|
3133
|
-
strokeLinecap: "round",
|
|
3134
|
-
strokeLinejoin: "round"
|
|
3135
|
-
})), _path45 || (_path45 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3136
|
-
d: "M102 105.972C100.849 105.638 99.8752 104.867 99.2868 103.823C98.6984 102.78 98.5426 101.547 98.8528 100.39C99.1629 99.2326 99.9144 98.2431 100.946 97.6336C101.977 97.0242 103.207 96.8434 104.37 97.13L106.342 97.658C106.664 97.7438 106.966 97.8921 107.231 98.0946C107.496 98.2971 107.718 98.5497 107.885 98.8382C108.053 99.1266 108.161 99.4451 108.205 99.7756C108.249 100.106 108.228 100.442 108.142 100.764L107.084 104.708C106.999 105.03 106.85 105.333 106.648 105.598C106.445 105.863 106.193 106.085 105.904 106.252C105.616 106.419 105.297 106.528 104.967 106.572C104.636 106.616 104.3 106.594 103.978 106.508L102 105.972Z",
|
|
3137
|
-
fill: "white",
|
|
3138
|
-
stroke: "#334155",
|
|
3139
|
-
strokeWidth: 2,
|
|
3140
|
-
strokeLinecap: "round",
|
|
3141
|
-
strokeLinejoin: "round"
|
|
3142
|
-
})), _path46 || (_path46 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3143
|
-
d: "M103.458 43.8401L121.232 61.6141C121.707 62.0897 121.975 62.7346 121.975 63.4071C121.975 64.0796 121.707 64.7245 121.232 65.2001L103.458 82.9741C102.982 83.4495 102.338 83.7166 101.665 83.7166C100.993 83.7166 100.348 83.4495 99.872 82.9741L82.098 65.2001C81.6226 64.7245 81.3555 64.0796 81.3555 63.4071C81.3555 62.7346 81.6226 62.0897 82.098 61.6141L99.872 43.8401C100.348 43.3646 100.993 43.0975 101.665 43.0975C102.338 43.0975 102.982 43.3646 103.458 43.8401Z",
|
|
3144
|
-
fill: "white"
|
|
3145
|
-
})), _path47 || (_path47 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3146
|
-
d: "M103.458 43.8401L121.232 61.6141C121.707 62.0897 121.975 62.7346 121.975 63.4071C121.975 64.0796 121.707 64.7245 121.232 65.2001L103.458 82.9741C102.982 83.4495 102.338 83.7166 101.665 83.7166C100.993 83.7166 100.348 83.4495 99.872 82.9741L82.098 65.2001C81.6226 64.7245 81.3555 64.0796 81.3555 63.4071C81.3555 62.7346 81.6226 62.0897 82.098 61.6141L99.872 43.8401C100.348 43.3646 100.993 43.0975 101.665 43.0975C102.338 43.0975 102.982 43.3646 103.458 43.8401Z",
|
|
3147
|
-
stroke: "#334155",
|
|
3148
|
-
strokeWidth: 2,
|
|
3149
|
-
strokeLinecap: "round",
|
|
3150
|
-
strokeLinejoin: "round"
|
|
3151
|
-
})), _path48 || (_path48 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3152
|
-
d: "M101.664 67.9841L98.9501 57.2861C98.9086 56.905 98.9479 56.5193 99.0654 56.1544C99.1829 55.7894 99.376 55.4533 99.632 55.1679C99.888 54.8825 100.201 54.6543 100.551 54.498C100.902 54.3417 101.281 54.261 101.664 54.261C102.047 54.261 102.427 54.3417 102.777 54.498C103.127 54.6543 103.44 54.8825 103.696 55.1679C103.952 55.4533 104.145 55.7894 104.263 56.1544C104.38 56.5193 104.42 56.905 104.378 57.2861L101.664 67.9841Z",
|
|
3153
|
-
fill: "#E2E8F0",
|
|
3154
|
-
stroke: "#334155",
|
|
3155
|
-
strokeWidth: 2,
|
|
3156
|
-
strokeLinecap: "round",
|
|
3157
|
-
strokeLinejoin: "round"
|
|
3158
|
-
})), _path49 || (_path49 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3159
|
-
d: "M101.664 74.3261C101.466 74.3261 101.273 74.2675 101.108 74.1576C100.944 74.0477 100.816 73.8915 100.74 73.7088C100.664 73.5261 100.645 73.325 100.683 73.131C100.722 72.937 100.817 72.7589 100.957 72.619C101.097 72.4792 101.275 72.3839 101.469 72.3453C101.663 72.3067 101.864 72.3265 102.047 72.4022C102.229 72.4779 102.386 72.6061 102.496 72.7705C102.605 72.935 102.664 73.1283 102.664 73.3261C102.664 73.5913 102.559 73.8457 102.371 74.0332C102.184 74.2208 101.929 74.3261 101.664 74.3261Z",
|
|
3160
|
-
fill: "#E2E8F0"
|
|
3161
|
-
})), _path50 || (_path50 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3162
|
-
d: "M101.664 71.3241C101.269 71.3241 100.882 71.4414 100.553 71.6612C100.224 71.8809 99.9677 72.1933 99.8163 72.5587C99.6649 72.9242 99.6253 73.3263 99.7025 73.7143C99.7797 74.1022 99.9701 74.4586 100.25 74.7383C100.53 75.018 100.886 75.2085 101.274 75.2857C101.662 75.3628 102.064 75.3232 102.429 75.1719C102.795 75.0205 103.107 74.7641 103.327 74.4352C103.547 74.1063 103.664 73.7197 103.664 73.3241C103.664 72.7937 103.453 72.285 103.078 71.9099C102.703 71.5348 102.194 71.3241 101.664 71.3241Z",
|
|
3163
|
-
fill: "#334155"
|
|
3164
|
-
})), _path51 || (_path51 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3165
|
-
d: "M67.05 76.9081L58.952 98.5081L50.854 76.9081C47.6712 77.9564 44.722 79.6123 42.17 81.7841V122.912H75.728V81.7841C73.1776 79.6134 70.2306 77.9575 67.05 76.9081Z",
|
|
3166
|
-
fill: "#E2E8F0"
|
|
3167
|
-
})), _path52 || (_path52 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3168
|
-
d: "M67.05 76.9081L58.952 98.5081L50.854 76.9081C47.6712 77.9564 44.722 79.6123 42.17 81.7841V122.912H75.728V81.7841C73.1776 79.6134 70.2306 77.9575 67.05 76.9081Z",
|
|
3169
|
-
stroke: "#334155",
|
|
3170
|
-
strokeWidth: 2,
|
|
3171
|
-
strokeLinecap: "round",
|
|
3172
|
-
strokeLinejoin: "round"
|
|
3173
|
-
})), _path53 || (_path53 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3174
|
-
d: "M75.734 104.602H42.17V110.704H75.734V104.602Z",
|
|
3175
|
-
fill: "white",
|
|
3176
|
-
stroke: "#334155",
|
|
3177
|
-
strokeWidth: 2,
|
|
3178
|
-
strokeLinecap: "round",
|
|
3179
|
-
strokeLinejoin: "round"
|
|
3180
|
-
})), _path54 || (_path54 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3181
|
-
d: "M75.734 116.808H42.17V122.912H75.734V116.808Z",
|
|
3182
|
-
fill: "white",
|
|
3183
|
-
stroke: "#334155",
|
|
3184
|
-
strokeWidth: 2,
|
|
3185
|
-
strokeLinecap: "round",
|
|
3186
|
-
strokeLinejoin: "round"
|
|
3187
|
-
})), _path55 || (_path55 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3188
|
-
d: "M65.6001 76.4881C65.1694 76.3778 64.7878 76.1273 64.5154 75.7759C64.2431 75.4246 64.0955 74.9926 64.0961 74.5481V65.1481H53.6161V74.6001C53.6155 75.0416 53.4689 75.4706 53.199 75.8201C52.9291 76.1696 52.5511 76.4199 52.1241 76.5321C51.7001 76.6441 51.2781 76.7661 50.8621 76.9041C52.6141 81.5701 54.7521 84.7641 58.9641 84.7641C63.1761 84.7641 65.3161 81.5641 67.0681 76.9041C66.5821 76.7501 66.0981 76.6121 65.6001 76.4881Z",
|
|
3189
|
-
fill: "white",
|
|
3190
|
-
stroke: "#334155",
|
|
3191
|
-
strokeWidth: 2.018,
|
|
3192
|
-
strokeLinecap: "round",
|
|
3193
|
-
strokeLinejoin: "round"
|
|
3194
|
-
})), _path56 || (_path56 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3195
|
-
d: "M76.682 57.8421C76.676 57.1201 76.42 56.4225 75.9577 55.8679C75.4953 55.3133 74.8552 54.936 74.146 54.8001V52.7701C74.146 50.7722 73.7525 48.7938 72.9879 46.9479C72.2234 45.1021 71.1027 43.4249 69.69 42.0122C68.2772 40.5994 66.6 39.4788 64.7542 38.7142C62.9083 37.9496 60.93 37.5561 58.932 37.5561C56.9341 37.5561 54.9557 37.9496 53.1099 38.7142C51.2641 39.4788 49.5869 40.5994 48.1741 42.0122C46.7614 43.4249 45.6407 45.1021 44.8761 46.9479C44.1116 48.7938 43.718 50.7722 43.718 52.7701V54.8001C42.9791 54.9391 42.3157 55.3415 41.8509 55.9325C41.3861 56.5235 41.1515 57.2631 41.1906 58.014C41.2297 58.7648 41.5398 59.4761 42.0635 60.0156C42.5871 60.5552 43.2887 60.8865 44.038 60.9481C44.7476 64.3753 46.617 67.4532 49.3311 69.6629C52.0452 71.8726 55.4381 73.0792 58.938 73.0792C62.438 73.0792 65.8309 71.8726 68.545 69.6629C71.2591 67.4532 73.1285 64.3753 73.838 60.9481C74.6128 60.8752 75.3329 60.517 75.8585 59.943C76.384 59.3691 76.6775 58.6203 76.682 57.8421Z",
|
|
3196
|
-
fill: "white",
|
|
3197
|
-
stroke: "#334155",
|
|
3198
|
-
strokeWidth: 2,
|
|
3199
|
-
strokeLinecap: "round",
|
|
3200
|
-
strokeLinejoin: "round"
|
|
3201
|
-
})), _path57 || (_path57 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3202
|
-
d: "M53.226 56.5741C54.2764 56.5741 55.128 55.7225 55.128 54.6721C55.128 53.6216 54.2764 52.7701 53.226 52.7701C52.1755 52.7701 51.324 53.6216 51.324 54.6721C51.324 55.7225 52.1755 56.5741 53.226 56.5741Z",
|
|
3203
|
-
fill: "#334155"
|
|
3204
|
-
})), _path58 || (_path58 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3205
|
-
d: "M64.6381 56.5741C65.6885 56.5741 66.5401 55.7225 66.5401 54.6721C66.5401 53.6216 65.6885 52.7701 64.6381 52.7701C63.5876 52.7701 62.7361 53.6216 62.7361 54.6721C62.7361 55.7225 63.5876 56.5741 64.6381 56.5741Z",
|
|
3206
|
-
fill: "#334155"
|
|
3207
|
-
})), _path59 || (_path59 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3208
|
-
d: "M50.6901 61.6461C51.7405 61.6461 52.5921 60.7945 52.5921 59.7441C52.5921 58.6937 51.7405 57.8421 50.6901 57.8421C49.6396 57.8421 48.7881 58.6937 48.7881 59.7441C48.7881 60.7945 49.6396 61.6461 50.6901 61.6461Z",
|
|
3209
|
-
fill: "#E2E8F0"
|
|
3210
|
-
})), _path60 || (_path60 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3211
|
-
d: "M67.174 61.6461C68.2244 61.6461 69.076 60.7945 69.076 59.7441C69.076 58.6937 68.2244 57.8421 67.174 57.8421C66.1235 57.8421 65.272 58.6937 65.272 59.7441C65.272 60.7945 66.1235 61.6461 67.174 61.6461Z",
|
|
3212
|
-
fill: "#E2E8F0"
|
|
3213
|
-
})), _path61 || (_path61 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3214
|
-
d: "M55.1281 64.2981C56.254 65.0466 57.576 65.4459 58.9281 65.4459C60.2801 65.4459 61.6021 65.0466 62.7281 64.2981",
|
|
3215
|
-
stroke: "#334155",
|
|
3216
|
-
strokeWidth: 2,
|
|
3217
|
-
strokeLinecap: "round",
|
|
3218
|
-
strokeLinejoin: "round"
|
|
3219
|
-
})), _path62 || (_path62 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3220
|
-
d: "M39.9141 50.2341H77.9501",
|
|
3221
|
-
stroke: "#334155",
|
|
3222
|
-
strokeWidth: 2,
|
|
3223
|
-
strokeLinecap: "round",
|
|
3224
|
-
strokeLinejoin: "round"
|
|
3225
|
-
})), _path63 || (_path63 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3226
|
-
d: "M75.4141 47.6981C75.4141 45.5336 74.9878 43.3904 74.1595 41.3907C73.3312 39.391 72.1171 37.574 70.5866 36.0435C69.0561 34.513 67.2391 33.299 65.2395 32.4707C63.2398 31.6424 61.0965 31.2161 58.9321 31.2161C56.7676 31.2161 54.6244 31.6424 52.6247 32.4707C50.625 33.299 48.808 34.513 47.2775 36.0435C45.747 37.574 44.533 39.391 43.7047 41.3907C42.8764 43.3904 42.4501 45.5336 42.4501 47.6981V50.2341H75.4141V47.6981Z",
|
|
3227
|
-
fill: "#E2E8F0"
|
|
3228
|
-
})), _path64 || (_path64 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3229
|
-
d: "M75.4141 47.6981C75.4141 45.5336 74.9878 43.3904 74.1595 41.3907C73.3312 39.391 72.1171 37.574 70.5866 36.0435C69.0561 34.513 67.2391 33.299 65.2395 32.4707C63.2398 31.6424 61.0965 31.2161 58.9321 31.2161C56.7676 31.2161 54.6244 31.6424 52.6247 32.4707C50.625 33.299 48.808 34.513 47.2775 36.0435C45.747 37.574 44.533 39.391 43.7047 41.3907C42.8764 43.3904 42.4501 45.5336 42.4501 47.6981V50.2341H75.4141V47.6981Z",
|
|
3230
|
-
stroke: "#334155",
|
|
3231
|
-
strokeWidth: 2,
|
|
3232
|
-
strokeLinecap: "round",
|
|
3233
|
-
strokeLinejoin: "round"
|
|
3234
|
-
})), _path65 || (_path65 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3235
|
-
d: "M62.736 50.2341H55.136L52.87 33.2341C52.7811 32.633 52.9136 32.0201 53.2429 31.5094C53.5722 30.9988 54.0758 30.6252 54.66 30.4581C57.4721 29.7721 60.4079 29.7721 63.22 30.4581C63.8042 30.6252 64.3078 30.9988 64.6371 31.5094C64.9663 32.0201 65.0989 32.633 65.01 33.2341L62.736 50.2341Z",
|
|
3236
|
-
fill: "#E2E8F0"
|
|
3237
|
-
})), _path66 || (_path66 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3238
|
-
d: "M62.736 50.2341H55.136L52.87 33.2341C52.7811 32.633 52.9136 32.0201 53.2429 31.5094C53.5722 30.9988 54.0758 30.6252 54.66 30.4581C57.4721 29.7721 60.4079 29.7721 63.22 30.4581C63.8042 30.6252 64.3078 30.9988 64.6371 31.5094C64.9663 32.0201 65.0989 32.633 65.01 33.2341L62.736 50.2341Z",
|
|
3239
|
-
stroke: "#334155",
|
|
3240
|
-
strokeWidth: 2,
|
|
3241
|
-
strokeLinecap: "round",
|
|
3242
|
-
strokeLinejoin: "round"
|
|
3243
|
-
})), _path67 || (_path67 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3244
|
-
d: "M70.4041 35.8621L69.0741 45.1621",
|
|
3245
|
-
stroke: "#334155",
|
|
3246
|
-
strokeWidth: 2,
|
|
3247
|
-
strokeLinecap: "round",
|
|
3248
|
-
strokeLinejoin: "round"
|
|
3249
|
-
})), _path68 || (_path68 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3250
|
-
d: "M47.4601 35.8621L48.7881 45.1621",
|
|
3251
|
-
stroke: "#334155",
|
|
3252
|
-
strokeWidth: 2,
|
|
3253
|
-
strokeLinecap: "round",
|
|
3254
|
-
strokeLinejoin: "round"
|
|
3255
|
-
})));
|
|
3256
|
-
};
|
|
3257
|
-
var ForwardRef = /*#__PURE__*/React.forwardRef(SvgWorkerWithSign);
|
|
1979
|
+
/**
|
|
1980
|
+
* The Graphic for the WorkerWithSign EmptyState
|
|
1981
|
+
*/
|
|
1982
|
+
const WorkerWithSignSVG = react.forwardRef((props, ref) => {
|
|
1983
|
+
return (jsxRuntime.jsxs("svg", { fill: "none", height: "200", ref: ref, viewBox: "0 0 200 200", width: "200", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntime.jsx("path", { d: "M181 100C181.002 88.0604 178.331 76.2717 173.183 65.4987C168.035 54.7257 160.541 45.2416 151.251 37.7418C141.961 30.242 131.11 24.9168 119.493 22.1567C107.877 19.3967 95.7903 19.2717 84.1195 21.7911C72.4486 24.3104 61.4897 29.4102 52.0464 36.7163C42.603 44.0225 34.9148 53.3497 29.5456 64.014C24.1763 74.6783 21.2622 86.4092 21.0169 98.3463C20.7716 110.283 23.2014 122.124 28.128 133H173.872C178.578 122.635 181.008 111.383 181 100Z", fill: "#F1F5F9" }), jsxRuntime.jsx("path", { d: "M28.1279 133C34.4733 147.008 44.7216 158.89 57.6457 167.224C70.5697 175.558 85.6219 179.99 101 179.99C116.378 179.99 131.43 175.558 144.354 167.224C157.278 158.89 167.527 147.008 173.872 133H28.1279Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M22 133H178", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M13 133H18", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M182 133H187", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M162.968 110.136H156.952V133H162.968V110.136Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M166.986 100.51H110.818C109.713 100.51 108.818 101.406 108.818 102.51V108.138C108.818 109.243 109.713 110.138 110.818 110.138H166.986C168.091 110.138 168.986 109.243 168.986 108.138V102.51C168.986 101.406 168.091 100.51 166.986 100.51Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M120.852 110.136H114.836V133H120.852V110.136Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M120.852 110.136H114.836V133H120.852V110.136Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M162.968 110.136H156.952V133H162.968V110.136Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M156.952 119.764H120.85V125.78H156.952V119.764Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M122.054 94.9321H114.836V100.51H122.054V94.9321Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M118.444 110.136H112.426L117.242 100.51H123.258L118.444 110.136Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M132.884 110.136H126.868L131.68 100.51H137.698L132.884 110.136Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M147.326 110.136H141.308L146.122 100.51H152.138L147.326 110.136Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M161.764 110.136H155.75L160.562 100.51H166.58L161.764 110.136Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M128.072 125.78H123.258L126.868 119.764H131.68L128.072 125.78Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M138.902 125.78H134.088L137.698 119.764H142.51L138.902 125.78Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M149.732 125.78H144.92L148.528 119.764H153.34L149.732 125.78Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M124.462 90.4921C124.462 91.6824 124.11 92.8461 123.449 93.836C122.788 94.826 121.848 95.5976 120.748 96.0534C119.649 96.5092 118.439 96.6287 117.271 96.3967C116.104 96.1647 115.031 95.5917 114.189 94.7502C113.348 93.9086 112.774 92.8363 112.542 91.6689C112.309 90.5014 112.429 89.2913 112.884 88.1916C113.339 87.0918 114.111 86.1518 115.1 85.4904C116.09 84.8291 117.254 84.4761 118.444 84.4761C120.04 84.4766 121.57 85.1105 122.698 86.2386C123.827 87.3666 124.461 88.8965 124.462 90.4921Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M124.462 90.4921C124.462 91.6824 124.11 92.8461 123.449 93.836C122.788 94.826 121.848 95.5976 120.748 96.0534C119.649 96.5092 118.439 96.6287 117.271 96.3967C116.104 96.1647 115.031 95.5917 114.189 94.7502C113.348 93.9086 112.774 92.8363 112.542 91.6689C112.309 90.5014 112.429 89.2913 112.884 88.1916C113.339 87.0918 114.111 86.1518 115.1 85.4904C116.09 84.8291 117.254 84.4761 118.444 84.4761C120.04 84.4766 121.57 85.1105 122.698 86.2386C123.827 87.3666 124.461 88.8965 124.462 90.4921Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M162.966 94.9321H155.748V100.51H162.966V94.9321Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M165.376 90.4921C165.376 91.6824 165.024 92.8461 164.363 93.836C163.702 94.826 162.762 95.5976 161.662 96.0534C160.563 96.5092 159.353 96.6287 158.185 96.3967C157.018 96.1647 155.945 95.5917 155.103 94.7502C154.262 93.9086 153.688 92.8363 153.456 91.6689C153.224 90.5014 153.343 89.2913 153.798 88.1916C154.253 87.0918 155.025 86.1518 156.014 85.4904C157.004 84.8291 158.168 84.4761 159.358 84.4761C160.954 84.4766 162.484 85.1105 163.612 86.2386C164.741 87.3666 165.375 88.8965 165.376 90.4921Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M165.376 90.4921C165.376 91.6824 165.024 92.8461 164.363 93.836C163.702 94.826 162.762 95.5976 161.662 96.0534C160.563 96.5092 159.353 96.6287 158.185 96.3967C157.018 96.1647 155.945 95.5917 155.103 94.7502C154.262 93.9086 153.688 92.8363 153.456 91.6689C153.224 90.5014 153.343 89.2913 153.798 88.1916C154.253 87.0918 155.025 86.1518 156.014 85.4904C157.004 84.8291 158.168 84.4761 159.358 84.4761C160.954 84.4766 162.484 85.1105 163.612 86.2386C164.741 87.3666 165.375 88.8965 165.376 90.4921Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M125.026 159.518H105.652L113.6 129.028C113.706 128.65 113.933 128.317 114.246 128.08C114.559 127.843 114.941 127.715 115.333 127.715C115.726 127.715 116.107 127.843 116.42 128.08C116.733 128.317 116.96 128.65 117.066 129.028L125.026 159.518Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M101.5 159.518H129.178", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M109.984 142.912H120.694L119.25 137.376H111.428L109.984 142.912Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M107.096 153.982H123.582L122.138 148.448H108.54L107.096 153.982Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M90.446 160.23L97.536 142.2L123 160.76C123.32 160.993 123.554 161.326 123.665 161.707C123.776 162.087 123.757 162.493 123.612 162.862C123.467 163.231 123.204 163.541 122.864 163.744C122.523 163.947 122.125 164.031 121.732 163.984L90.446 160.23Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M99.054 138.336L88.926 164.092", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M111.404 152.308L107.486 162.276L113.166 162.956L116.028 155.678L111.404 152.308Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M102.16 145.568L96.126 160.912L101.806 161.594L106.782 148.938L102.16 145.568Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M98.614 116.8V101.82C98.544 103.848 97.8 110.704 90.99 110.704C90.1937 110.781 89.3901 110.684 88.6355 110.418C87.881 110.152 87.1937 109.724 86.622 109.164C85.2168 107.069 84.5938 104.546 84.862 102.038C84.985 100.833 84.6273 99.6273 83.8668 98.684C83.1062 97.7406 82.0041 97.1355 80.8 97.0001C80.642 96.9818 80.4831 96.9724 80.324 96.9721C79.1942 96.9689 78.103 97.383 77.2596 98.1348C76.4163 98.8866 75.8801 99.9233 75.754 101.046C75.714 101.398 74.858 109.754 79.782 115.246C81.1993 116.785 82.9367 117.994 84.8717 118.789C86.8067 119.583 88.8924 119.944 90.982 119.846C93.7209 119.9 96.4312 119.282 98.876 118.046C98.7023 117.654 98.6131 117.229 98.614 116.8Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M84.894 101.55C84.834 94.7106 82.0749 88.1717 77.2173 83.3566C72.3596 78.5414 65.7968 75.8398 58.957 75.8398C52.1173 75.8398 45.5544 78.5414 40.6968 83.3566C35.8392 88.1717 33.0801 94.7106 33.02 101.55V103.076H42.174V122.912H75.738V103.076H84.894V101.55Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M84.894 101.55C84.834 94.7106 82.0749 88.1717 77.2173 83.3566C72.3596 78.5414 65.7968 75.8398 58.957 75.8398C52.1173 75.8398 45.5544 78.5414 40.6968 83.3566C35.8392 88.1717 33.0801 94.7106 33.02 101.55V103.076H42.174V122.912H75.738V103.076H84.894V101.55Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M58.372 175.278C72.3769 175.278 83.73 173.575 83.73 171.474C83.73 169.373 72.3769 167.67 58.372 167.67C44.3672 167.67 33.014 169.373 33.014 171.474C33.014 173.575 44.3672 175.278 58.372 175.278Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M60.4821 119.858H42.1741V168.682H54.3741L55.7741 136.64C55.8097 135.819 56.1608 135.044 56.7542 134.476C57.3476 133.908 58.1375 133.59 58.9591 133.59C59.7806 133.59 60.5705 133.908 61.1639 134.476C61.7573 135.044 62.1084 135.819 62.1441 136.64L63.5341 168.682H75.7341V119.858H60.4821Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M60.4821 119.858H42.1741V168.682H54.3741L55.7741 136.64C55.8097 135.819 56.1608 135.044 56.7542 134.476C57.3476 133.908 58.1375 133.59 58.9591 133.59C59.7806 133.59 60.5705 133.908 61.1639 134.476C61.7573 135.044 62.1084 135.819 62.1441 136.64L63.5341 168.682H75.7341V119.858H60.4821Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M75.738 103.076V93.9221", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M42.1741 103.076V93.9221", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M40.2521 166.284C40.004 166.667 39.8636 167.109 39.8457 167.565C39.8278 168.02 39.9331 168.472 40.1505 168.873C40.3679 169.274 40.6894 169.609 41.0811 169.842C41.4727 170.076 41.9201 170.199 42.3761 170.2H52.8161C53.2514 170.2 53.6794 170.088 54.0588 169.875C54.4383 169.661 54.7564 169.354 54.9827 168.982C55.2089 168.61 55.3356 168.186 55.3506 167.751C55.3655 167.316 55.2682 166.885 55.0681 166.498C52.2961 161.156 43.4141 161.454 40.2521 166.284Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M77.6621 166.284C77.9102 166.667 78.0506 167.109 78.0685 167.565C78.0864 168.02 77.981 168.472 77.7636 168.873C77.5462 169.274 77.2248 169.609 76.8331 169.842C76.4414 170.076 75.9941 170.199 75.5381 170.2H65.0981C64.6628 170.2 64.2348 170.088 63.8554 169.875C63.4759 169.661 63.1578 169.354 62.9315 168.982C62.7053 168.61 62.5786 168.186 62.5636 167.751C62.5487 167.316 62.6459 166.885 62.8461 166.498C65.6181 161.156 74.4981 161.454 77.6621 166.284Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M42.17 130.538C42.17 131.752 41.6877 132.917 40.8292 133.775C39.9706 134.634 38.8062 135.116 37.592 135.116C36.3779 135.116 35.2134 134.634 34.3549 133.775C33.4964 132.917 33.014 131.752 33.014 130.538V103.076H42.17V130.538Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M104.718 116.8C104.718 117.61 104.396 118.386 103.824 118.958C103.252 119.531 102.475 119.852 101.666 119.852C100.857 119.852 100.08 119.531 99.5079 118.958C98.9356 118.386 98.614 117.61 98.614 116.8V81.7161H104.718V116.8Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M102 105.972C100.849 105.638 99.8752 104.867 99.2868 103.823C98.6984 102.78 98.5426 101.547 98.8528 100.39C99.1629 99.2326 99.9144 98.2431 100.946 97.6336C101.977 97.0242 103.207 96.8434 104.37 97.13L106.342 97.658C106.664 97.7438 106.966 97.8921 107.231 98.0946C107.496 98.2971 107.718 98.5497 107.885 98.8382C108.053 99.1266 108.161 99.4451 108.205 99.7756C108.249 100.106 108.228 100.442 108.142 100.764L107.084 104.708C106.999 105.03 106.85 105.333 106.648 105.598C106.445 105.863 106.193 106.085 105.904 106.252C105.616 106.419 105.297 106.528 104.967 106.572C104.636 106.616 104.3 106.594 103.978 106.508L102 105.972Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M103.458 43.8401L121.232 61.6141C121.707 62.0897 121.975 62.7346 121.975 63.4071C121.975 64.0796 121.707 64.7245 121.232 65.2001L103.458 82.9741C102.982 83.4495 102.338 83.7166 101.665 83.7166C100.993 83.7166 100.348 83.4495 99.872 82.9741L82.098 65.2001C81.6226 64.7245 81.3555 64.0796 81.3555 63.4071C81.3555 62.7346 81.6226 62.0897 82.098 61.6141L99.872 43.8401C100.348 43.3646 100.993 43.0975 101.665 43.0975C102.338 43.0975 102.982 43.3646 103.458 43.8401Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M103.458 43.8401L121.232 61.6141C121.707 62.0897 121.975 62.7346 121.975 63.4071C121.975 64.0796 121.707 64.7245 121.232 65.2001L103.458 82.9741C102.982 83.4495 102.338 83.7166 101.665 83.7166C100.993 83.7166 100.348 83.4495 99.872 82.9741L82.098 65.2001C81.6226 64.7245 81.3555 64.0796 81.3555 63.4071C81.3555 62.7346 81.6226 62.0897 82.098 61.6141L99.872 43.8401C100.348 43.3646 100.993 43.0975 101.665 43.0975C102.338 43.0975 102.982 43.3646 103.458 43.8401Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M101.664 67.9841L98.9501 57.2861C98.9086 56.905 98.9479 56.5193 99.0654 56.1544C99.1829 55.7894 99.376 55.4533 99.632 55.1679C99.888 54.8825 100.201 54.6543 100.551 54.498C100.902 54.3417 101.281 54.261 101.664 54.261C102.047 54.261 102.427 54.3417 102.777 54.498C103.127 54.6543 103.44 54.8825 103.696 55.1679C103.952 55.4533 104.145 55.7894 104.263 56.1544C104.38 56.5193 104.42 56.905 104.378 57.2861L101.664 67.9841Z", fill: "#E2E8F0", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M101.664 74.3261C101.466 74.3261 101.273 74.2675 101.108 74.1576C100.944 74.0477 100.816 73.8915 100.74 73.7088C100.664 73.5261 100.645 73.325 100.683 73.131C100.722 72.937 100.817 72.7589 100.957 72.619C101.097 72.4792 101.275 72.3839 101.469 72.3453C101.663 72.3067 101.864 72.3265 102.047 72.4022C102.229 72.4779 102.386 72.6061 102.496 72.7705C102.605 72.935 102.664 73.1283 102.664 73.3261C102.664 73.5913 102.559 73.8457 102.371 74.0332C102.184 74.2208 101.929 74.3261 101.664 74.3261Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M101.664 71.3241C101.269 71.3241 100.882 71.4414 100.553 71.6612C100.224 71.8809 99.9677 72.1933 99.8163 72.5587C99.6649 72.9242 99.6253 73.3263 99.7025 73.7143C99.7797 74.1022 99.9701 74.4586 100.25 74.7383C100.53 75.018 100.886 75.2085 101.274 75.2857C101.662 75.3628 102.064 75.3232 102.429 75.1719C102.795 75.0205 103.107 74.7641 103.327 74.4352C103.547 74.1063 103.664 73.7197 103.664 73.3241C103.664 72.7937 103.453 72.285 103.078 71.9099C102.703 71.5348 102.194 71.3241 101.664 71.3241Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M67.05 76.9081L58.952 98.5081L50.854 76.9081C47.6712 77.9564 44.722 79.6123 42.17 81.7841V122.912H75.728V81.7841C73.1776 79.6134 70.2306 77.9575 67.05 76.9081Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M67.05 76.9081L58.952 98.5081L50.854 76.9081C47.6712 77.9564 44.722 79.6123 42.17 81.7841V122.912H75.728V81.7841C73.1776 79.6134 70.2306 77.9575 67.05 76.9081Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M75.734 104.602H42.17V110.704H75.734V104.602Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M75.734 116.808H42.17V122.912H75.734V116.808Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M65.6001 76.4881C65.1694 76.3778 64.7878 76.1273 64.5154 75.7759C64.2431 75.4246 64.0955 74.9926 64.0961 74.5481V65.1481H53.6161V74.6001C53.6155 75.0416 53.4689 75.4706 53.199 75.8201C52.9291 76.1696 52.5511 76.4199 52.1241 76.5321C51.7001 76.6441 51.2781 76.7661 50.8621 76.9041C52.6141 81.5701 54.7521 84.7641 58.9641 84.7641C63.1761 84.7641 65.3161 81.5641 67.0681 76.9041C66.5821 76.7501 66.0981 76.6121 65.6001 76.4881Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.018" }), jsxRuntime.jsx("path", { d: "M76.682 57.8421C76.676 57.1201 76.42 56.4225 75.9577 55.8679C75.4953 55.3133 74.8552 54.936 74.146 54.8001V52.7701C74.146 50.7722 73.7525 48.7938 72.9879 46.9479C72.2234 45.1021 71.1027 43.4249 69.69 42.0122C68.2772 40.5994 66.6 39.4788 64.7542 38.7142C62.9083 37.9496 60.93 37.5561 58.932 37.5561C56.9341 37.5561 54.9557 37.9496 53.1099 38.7142C51.2641 39.4788 49.5869 40.5994 48.1741 42.0122C46.7614 43.4249 45.6407 45.1021 44.8761 46.9479C44.1116 48.7938 43.718 50.7722 43.718 52.7701V54.8001C42.9791 54.9391 42.3157 55.3415 41.8509 55.9325C41.3861 56.5235 41.1515 57.2631 41.1906 58.014C41.2297 58.7648 41.5398 59.4761 42.0635 60.0156C42.5871 60.5552 43.2887 60.8865 44.038 60.9481C44.7476 64.3753 46.617 67.4532 49.3311 69.6629C52.0452 71.8726 55.4381 73.0792 58.938 73.0792C62.438 73.0792 65.8309 71.8726 68.545 69.6629C71.2591 67.4532 73.1285 64.3753 73.838 60.9481C74.6128 60.8752 75.3329 60.517 75.8585 59.943C76.384 59.3691 76.6775 58.6203 76.682 57.8421Z", fill: "white", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M53.226 56.5741C54.2764 56.5741 55.128 55.7225 55.128 54.6721C55.128 53.6216 54.2764 52.7701 53.226 52.7701C52.1755 52.7701 51.324 53.6216 51.324 54.6721C51.324 55.7225 52.1755 56.5741 53.226 56.5741Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M64.6381 56.5741C65.6885 56.5741 66.5401 55.7225 66.5401 54.6721C66.5401 53.6216 65.6885 52.7701 64.6381 52.7701C63.5876 52.7701 62.7361 53.6216 62.7361 54.6721C62.7361 55.7225 63.5876 56.5741 64.6381 56.5741Z", fill: "#334155" }), jsxRuntime.jsx("path", { d: "M50.6901 61.6461C51.7405 61.6461 52.5921 60.7945 52.5921 59.7441C52.5921 58.6937 51.7405 57.8421 50.6901 57.8421C49.6396 57.8421 48.7881 58.6937 48.7881 59.7441C48.7881 60.7945 49.6396 61.6461 50.6901 61.6461Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M67.174 61.6461C68.2244 61.6461 69.076 60.7945 69.076 59.7441C69.076 58.6937 68.2244 57.8421 67.174 57.8421C66.1235 57.8421 65.272 58.6937 65.272 59.7441C65.272 60.7945 66.1235 61.6461 67.174 61.6461Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M55.1281 64.2981C56.254 65.0466 57.576 65.4459 58.9281 65.4459C60.2801 65.4459 61.6021 65.0466 62.7281 64.2981", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M39.9141 50.2341H77.9501", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M75.4141 47.6981C75.4141 45.5336 74.9878 43.3904 74.1595 41.3907C73.3312 39.391 72.1171 37.574 70.5866 36.0435C69.0561 34.513 67.2391 33.299 65.2395 32.4707C63.2398 31.6424 61.0965 31.2161 58.9321 31.2161C56.7676 31.2161 54.6244 31.6424 52.6247 32.4707C50.625 33.299 48.808 34.513 47.2775 36.0435C45.747 37.574 44.533 39.391 43.7047 41.3907C42.8764 43.3904 42.4501 45.5336 42.4501 47.6981V50.2341H75.4141V47.6981Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M75.4141 47.6981C75.4141 45.5336 74.9878 43.3904 74.1595 41.3907C73.3312 39.391 72.1171 37.574 70.5866 36.0435C69.0561 34.513 67.2391 33.299 65.2395 32.4707C63.2398 31.6424 61.0965 31.2161 58.9321 31.2161C56.7676 31.2161 54.6244 31.6424 52.6247 32.4707C50.625 33.299 48.808 34.513 47.2775 36.0435C45.747 37.574 44.533 39.391 43.7047 41.3907C42.8764 43.3904 42.4501 45.5336 42.4501 47.6981V50.2341H75.4141V47.6981Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M62.736 50.2341H55.136L52.87 33.2341C52.7811 32.633 52.9136 32.0201 53.2429 31.5094C53.5722 30.9988 54.0758 30.6252 54.66 30.4581C57.4721 29.7721 60.4079 29.7721 63.22 30.4581C63.8042 30.6252 64.3078 30.9988 64.6371 31.5094C64.9663 32.0201 65.0989 32.633 65.01 33.2341L62.736 50.2341Z", fill: "#E2E8F0" }), jsxRuntime.jsx("path", { d: "M62.736 50.2341H55.136L52.87 33.2341C52.7811 32.633 52.9136 32.0201 53.2429 31.5094C53.5722 30.9988 54.0758 30.6252 54.66 30.4581C57.4721 29.7721 60.4079 29.7721 63.22 30.4581C63.8042 30.6252 64.3078 30.9988 64.6371 31.5094C64.9663 32.0201 65.0989 32.633 65.01 33.2341L62.736 50.2341Z", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M70.4041 35.8621L69.0741 45.1621", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" }), jsxRuntime.jsx("path", { d: "M47.4601 35.8621L48.7881 45.1621", stroke: "#334155", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2" })] }));
|
|
1984
|
+
});
|
|
1985
|
+
WorkerWithSignSVG.displayName = "WorkerWithSignSVG";
|
|
3258
1986
|
|
|
3259
1987
|
/**
|
|
3260
1988
|
*
|
|
@@ -3267,21 +1995,21 @@ var ForwardRef = /*#__PURE__*/React.forwardRef(SvgWorkerWithSign);
|
|
|
3267
1995
|
* - In celebratory instances (e.g., no new notifications, services up to date).
|
|
3268
1996
|
*/
|
|
3269
1997
|
const EmptyState = ({ description, altText, image = "SEARCH_DOCUMENT", customImageSrc, loading, dataTestId, className, primaryAction, secondaryAction, additionalHelpAction, }) => {
|
|
3270
|
-
const ImageSource =
|
|
1998
|
+
const ImageSource = react.useMemo(() => {
|
|
3271
1999
|
switch (image) {
|
|
3272
2000
|
case "WORKER_WITH_SIGN":
|
|
3273
|
-
return
|
|
2001
|
+
return WorkerWithSignSVG;
|
|
3274
2002
|
case "ROAD_BLOCK":
|
|
3275
|
-
return
|
|
2003
|
+
return RoadBlockSVG;
|
|
3276
2004
|
case "BUILDING_ERROR":
|
|
3277
|
-
return
|
|
2005
|
+
return BuildingErrorSVG;
|
|
3278
2006
|
case "WALL_CONSTRUCTION":
|
|
3279
|
-
return
|
|
2007
|
+
return WallConstructionSVG;
|
|
3280
2008
|
case "PHONE_LOCK_SECURITY":
|
|
3281
|
-
return
|
|
2009
|
+
return PhoneLockSecuritySVG;
|
|
3282
2010
|
case "SEARCH_DOCUMENT":
|
|
3283
2011
|
default:
|
|
3284
|
-
return
|
|
2012
|
+
return SearchDocumentSVG;
|
|
3285
2013
|
}
|
|
3286
2014
|
}, [image]);
|
|
3287
2015
|
return (jsxRuntime.jsx("div", { className: cvaContainerStyles({ className }), "data-testid": dataTestId ?? "empty-state", children: loading ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(Spinner, { centering: "centered", dataTestId: "spinner" }), jsxRuntime.jsx(SkeletonLines, { dataTestId: "skeleton-lines", width: 50 })] })) : (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [customImageSrc ? (jsxRuntime.jsx("img", { alt: altText, className: cvaImgStyles(), height: 200, src: customImageSrc, width: 200 })) : (typeof ImageSource !== "undefined" && (jsxRuntime.jsx(ImageSource, { "data-testid": "empty-state-image", height: 200, width: 200 }, image))), description ? (jsxRuntime.jsx(Text, { align: "center", size: "large", children: description })) : null, jsxRuntime.jsxs("div", { className: "grid gap-3", children: [jsxRuntime.jsxs("div", { className: "flex gap-3", children: [secondaryAction ? (jsxRuntime.jsx(Button, { dataTestId: "empty-state-secondary-button", disabled: secondaryAction.disabled, onClick: secondaryAction.onClick, variant: "secondary", children: secondaryAction.to ? (jsxRuntime.jsx(reactRouter.Link, { params: secondaryAction.to.parameters, to: secondaryAction.to.pathname, children: secondaryAction.title })) : (secondaryAction.title) })) : null, primaryAction ? (jsxRuntime.jsx(Button, { dataTestId: "empty-state-primary-button", disabled: primaryAction.disabled, onClick: primaryAction.onClick, children: primaryAction.to ? (jsxRuntime.jsx(reactRouter.Link, { params: primaryAction.to.parameters, to: primaryAction.to.pathname, children: primaryAction.title })) : (primaryAction.title) })) : null] }), additionalHelpAction ? (jsxRuntime.jsx(Button, { asChild: true, dataTestId: "empty-state-additional-button", disabled: additionalHelpAction.disabled, onClick: additionalHelpAction.onClick, suffix: jsxRuntime.jsx(Icon, { name: "ArrowTopRightOnSquare", size: "small" }), variant: "ghost", children: jsxRuntime.jsx(reactRouter.Link, { params: additionalHelpAction.to?.parameters, target: additionalHelpAction.to?.target, to: additionalHelpAction.to?.pathname, children: additionalHelpAction.title }) })) : null] })] })) }));
|
|
@@ -3423,23 +2151,23 @@ const DEFAULT_SIZING = {
|
|
|
3423
2151
|
* @returns {UsePopoverType} The data for the popover
|
|
3424
2152
|
*/
|
|
3425
2153
|
const usePopover = ({ initialOpen = false, placement = "bottom", isModal, isOpen: controlledIsOpen, activation = DEFAULT_ACTIVATION, dismissal = DEFAULT_DISMISSAL, sizing = DEFAULT_SIZING, onOpenStateChange, ...restOptions }) => {
|
|
3426
|
-
const [uncontrolledIsOpen, setUncontrolledIsOpen] =
|
|
3427
|
-
const [labelId, setLabelId] =
|
|
3428
|
-
const [descriptionId, setDescriptionId] =
|
|
2154
|
+
const [uncontrolledIsOpen, setUncontrolledIsOpen] = react.useState(initialOpen);
|
|
2155
|
+
const [labelId, setLabelId] = react.useState();
|
|
2156
|
+
const [descriptionId, setDescriptionId] = react.useState();
|
|
3429
2157
|
const isOpen = controlledIsOpen ?? uncontrolledIsOpen;
|
|
3430
|
-
const popoverData = react.useFloating({
|
|
2158
|
+
const popoverData = react$1.useFloating({
|
|
3431
2159
|
placement,
|
|
3432
2160
|
open: isOpen,
|
|
3433
2161
|
onOpenChange: open => {
|
|
3434
2162
|
setUncontrolledIsOpen(open);
|
|
3435
2163
|
onOpenStateChange?.(open);
|
|
3436
2164
|
},
|
|
3437
|
-
whileElementsMounted: react.autoUpdate,
|
|
2165
|
+
whileElementsMounted: react$1.autoUpdate,
|
|
3438
2166
|
middleware: [
|
|
3439
|
-
react.offset(8),
|
|
3440
|
-
react.flip({ fallbackPlacements: ["top", "bottom", "right", "left"] }),
|
|
3441
|
-
react.shift({ padding: PADDING }),
|
|
3442
|
-
react.size({
|
|
2167
|
+
react$1.offset(8),
|
|
2168
|
+
react$1.flip({ fallbackPlacements: ["top", "bottom", "right", "left"] }),
|
|
2169
|
+
react$1.shift({ padding: PADDING }),
|
|
2170
|
+
react$1.size({
|
|
3443
2171
|
apply({ availableWidth, availableHeight, elements }) {
|
|
3444
2172
|
const { floating, reference } = elements;
|
|
3445
2173
|
const resolvedSizing = typeof sizing === "function" ? sizing(DEFAULT_SIZING) : sizing;
|
|
@@ -3469,21 +2197,21 @@ const usePopover = ({ initialOpen = false, placement = "bottom", isModal, isOpen
|
|
|
3469
2197
|
const popoverContext = popoverData.context;
|
|
3470
2198
|
const resolvedActivation = typeof activation === "function" ? activation(DEFAULT_ACTIVATION) : activation;
|
|
3471
2199
|
const resolvedDismissal = typeof dismissal === "function" ? dismissal(DEFAULT_DISMISSAL) : dismissal;
|
|
3472
|
-
const clickInteraction = react.useClick(popoverContext, {
|
|
2200
|
+
const clickInteraction = react$1.useClick(popoverContext, {
|
|
3473
2201
|
enabled: resolvedActivation.click,
|
|
3474
2202
|
});
|
|
3475
|
-
const dismissInteraction = react.useDismiss(popoverContext, resolvedDismissal);
|
|
3476
|
-
const hoverInteraction = react.useHover(popoverContext, {
|
|
2203
|
+
const dismissInteraction = react$1.useDismiss(popoverContext, resolvedDismissal);
|
|
2204
|
+
const hoverInteraction = react$1.useHover(popoverContext, {
|
|
3477
2205
|
enabled: resolvedActivation.hover,
|
|
3478
2206
|
});
|
|
3479
|
-
const roleInteraction = react.useRole(popoverContext);
|
|
3480
|
-
const combinedInteractions = react.useInteractions([
|
|
2207
|
+
const roleInteraction = react$1.useRole(popoverContext);
|
|
2208
|
+
const combinedInteractions = react$1.useInteractions([
|
|
3481
2209
|
clickInteraction,
|
|
3482
2210
|
hoverInteraction,
|
|
3483
2211
|
dismissInteraction,
|
|
3484
2212
|
roleInteraction,
|
|
3485
2213
|
]);
|
|
3486
|
-
return
|
|
2214
|
+
return react.useMemo(() => ({
|
|
3487
2215
|
isOpen,
|
|
3488
2216
|
setIsOpen: setUncontrolledIsOpen,
|
|
3489
2217
|
...omit(popoverData, "middlewareData", "floatingStyles", "elements"),
|
|
@@ -3504,7 +2232,7 @@ const usePopover = ({ initialOpen = false, placement = "bottom", isModal, isOpen
|
|
|
3504
2232
|
}), [isOpen, setUncontrolledIsOpen, combinedInteractions, popoverData, isModal, labelId, descriptionId, restOptions]);
|
|
3505
2233
|
};
|
|
3506
2234
|
|
|
3507
|
-
const PopoverContext =
|
|
2235
|
+
const PopoverContext = react.createContext(null);
|
|
3508
2236
|
/**
|
|
3509
2237
|
* A hook to get the popover context.
|
|
3510
2238
|
* It should only be used by the Popover components.
|
|
@@ -3512,7 +2240,7 @@ const PopoverContext = React.createContext(null);
|
|
|
3512
2240
|
* @returns {ContextType} The popover context
|
|
3513
2241
|
*/
|
|
3514
2242
|
const usePopoverContext = () => {
|
|
3515
|
-
const context =
|
|
2243
|
+
const context = react.useContext(PopoverContext);
|
|
3516
2244
|
if (context === null) {
|
|
3517
2245
|
throw new Error("Popover components must be wrapped in <Popover />");
|
|
3518
2246
|
}
|
|
@@ -3562,7 +2290,7 @@ const getDefaultPortalContainer = () => {
|
|
|
3562
2290
|
* alongside other portalled elements.
|
|
3563
2291
|
*/
|
|
3564
2292
|
const Portal = (props) => {
|
|
3565
|
-
return jsxRuntime.jsx(react.FloatingPortal, { ...props, root: props.root ?? getDefaultPortalContainer() });
|
|
2293
|
+
return jsxRuntime.jsx(react$1.FloatingPortal, { ...props, root: props.root ?? getDefaultPortalContainer() });
|
|
3566
2294
|
};
|
|
3567
2295
|
|
|
3568
2296
|
const cvaPopoverContainer = cssClassVarianceUtilities.cvaMerge(["component-popover-border", "z-popover", "animate-fade-in-fast"]);
|
|
@@ -3576,10 +2304,10 @@ const cvaPopoverTitleContainer = cssClassVarianceUtilities.cvaMerge(["flex", "it
|
|
|
3576
2304
|
});
|
|
3577
2305
|
const cvaPopoverTitleText = cssClassVarianceUtilities.cvaMerge(["flex-1", "text-neutral-500"]);
|
|
3578
2306
|
|
|
3579
|
-
const PopoverContent =
|
|
2307
|
+
const PopoverContent = react.forwardRef(function PopoverContent({ className, dataTestId, children, portalId, ...props }, propRef) {
|
|
3580
2308
|
const { context: floatingContext, customProps, ...context } = usePopoverContext();
|
|
3581
|
-
const ref = react.useMergeRefs([context.refs.setFloating, propRef]);
|
|
3582
|
-
return (jsxRuntime.jsx(Portal, { id: portalId, children: context.isOpen ? (jsxRuntime.jsx(react.FloatingFocusManager, { closeOnFocusOut: false, context: floatingContext, guards: true, modal: context.isModal, order: ["reference", "content"], returnFocus: true, children: jsxRuntime.jsx("div", { "aria-describedby": context.descriptionId, "aria-labelledby": context.labelId, className: cvaPopoverContainer({ className: className ?? customProps.className }), "data-testid": dataTestId ?? customProps.dataTestId ?? "popover-content", ref: ref, style: {
|
|
2309
|
+
const ref = react$1.useMergeRefs([context.refs.setFloating, propRef]);
|
|
2310
|
+
return (jsxRuntime.jsx(Portal, { id: portalId, children: context.isOpen ? (jsxRuntime.jsx(react$1.FloatingFocusManager, { closeOnFocusOut: false, context: floatingContext, guards: true, modal: context.isModal, order: ["reference", "content"], returnFocus: true, children: jsxRuntime.jsx("div", { "aria-describedby": context.descriptionId, "aria-labelledby": context.labelId, className: cvaPopoverContainer({ className: className ?? customProps.className }), "data-testid": dataTestId ?? customProps.dataTestId ?? "popover-content", ref: ref, style: {
|
|
3583
2311
|
position: context.strategy,
|
|
3584
2312
|
top: context.y,
|
|
3585
2313
|
left: context.x,
|
|
@@ -3598,13 +2326,13 @@ const PopoverTitle = ({ children, action, divider = false, className, dataTestId
|
|
|
3598
2326
|
return (jsxRuntime.jsxs("div", { className: cvaPopoverTitleContainer({ divider, className }), "data-testid": dataTestId, children: [jsxRuntime.jsx(Text, { className: cvaPopoverTitleText(), size: "small", subtle: true, type: "div", uppercase: true, weight: "bold", children: children }), action] }));
|
|
3599
2327
|
};
|
|
3600
2328
|
|
|
3601
|
-
const PopoverTrigger =
|
|
2329
|
+
const PopoverTrigger = react.forwardRef(function PopoverTrigger({ children, renderButton, ...props }, propRef) {
|
|
3602
2330
|
const context = usePopoverContext();
|
|
3603
2331
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, local-rules/no-typescript-assertion
|
|
3604
2332
|
const childrenRef = children.ref;
|
|
3605
|
-
const ref = react.useMergeRefs([context.refs.setReference, propRef, childrenRef]);
|
|
3606
|
-
if (!renderButton &&
|
|
3607
|
-
return
|
|
2333
|
+
const ref = react$1.useMergeRefs([context.refs.setReference, propRef, childrenRef]);
|
|
2334
|
+
if (!renderButton && react.isValidElement(children)) {
|
|
2335
|
+
return react.cloneElement(children, context.getReferenceProps({
|
|
3608
2336
|
ref,
|
|
3609
2337
|
...props,
|
|
3610
2338
|
...children.props,
|
|
@@ -3675,7 +2403,7 @@ const cvaTooltipPopoverContent = cssClassVarianceUtilities.cvaMerge(["max-w-sm",
|
|
|
3675
2403
|
*/
|
|
3676
2404
|
const FloatingArrowContainer = ({ arrowRef, mode = "dark", }) => {
|
|
3677
2405
|
const { context: floatingContext } = usePopoverContext();
|
|
3678
|
-
return (jsxRuntime.jsx(react.FloatingArrow, { className: cvaTooltipPopoverTail({ mode, placement: floatingContext.placement }), context: floatingContext, ref: arrowRef }));
|
|
2406
|
+
return (jsxRuntime.jsx(react$1.FloatingArrow, { className: cvaTooltipPopoverTail({ mode, placement: floatingContext.placement }), context: floatingContext, ref: arrowRef }));
|
|
3679
2407
|
};
|
|
3680
2408
|
/**
|
|
3681
2409
|
* Tooltips display additional information upon hover. The information included should be contextual, helpful, and nonessential while providing that extra ability to communicate and give clarity to a user.
|
|
@@ -3690,26 +2418,26 @@ const FloatingArrowContainer = ({ arrowRef, mode = "dark", }) => {
|
|
|
3690
2418
|
* @returns {JSX.Element} Tooltip component
|
|
3691
2419
|
*/
|
|
3692
2420
|
const Tooltip = ({ children, dataTestId = "tool-tip", disabled, className, label, placement = "auto", mode = "dark", iconProps, id, }) => {
|
|
3693
|
-
const [isOpen, setIsOpen] =
|
|
3694
|
-
const arrowRef =
|
|
3695
|
-
const { refs, floatingStyles, context } = react.useFloating({
|
|
2421
|
+
const [isOpen, setIsOpen] = react.useState(false);
|
|
2422
|
+
const arrowRef = react.useRef(null);
|
|
2423
|
+
const { refs, floatingStyles, context } = react$1.useFloating({
|
|
3696
2424
|
placement: placement === "auto" ? "bottom" : placement,
|
|
3697
2425
|
open: isOpen,
|
|
3698
2426
|
onOpenChange: setIsOpen,
|
|
3699
|
-
middleware: [react.offset(8), react.arrow({ element: arrowRef })],
|
|
3700
|
-
whileElementsMounted: react.autoUpdate,
|
|
2427
|
+
middleware: [react$1.offset(8), react$1.arrow({ element: arrowRef })],
|
|
2428
|
+
whileElementsMounted: react$1.autoUpdate,
|
|
3701
2429
|
});
|
|
3702
|
-
const { isMounted } = react.useTransitionStatus(context);
|
|
2430
|
+
const { isMounted } = react$1.useTransitionStatus(context);
|
|
3703
2431
|
// Please don't try to move this into the component body directly
|
|
3704
2432
|
// I tried and it caused infinite re-renders some places (for whatever reason)
|
|
3705
2433
|
const wrappedChildren = (jsxRuntime.jsx("div", { className: cvaTooltipContainer({ className }), "data-testid": dataTestId ? `${dataTestId}-parent` : undefined, children: children }));
|
|
3706
|
-
const openTooltip =
|
|
2434
|
+
const openTooltip = react.useCallback(() => {
|
|
3707
2435
|
if (disabled) {
|
|
3708
2436
|
return;
|
|
3709
2437
|
}
|
|
3710
2438
|
setIsOpen(true);
|
|
3711
2439
|
}, [disabled]);
|
|
3712
|
-
const closeTooltip =
|
|
2440
|
+
const closeTooltip = react.useCallback(() => {
|
|
3713
2441
|
if (disabled) {
|
|
3714
2442
|
return;
|
|
3715
2443
|
}
|
|
@@ -4128,10 +2856,10 @@ const MenuItem = ({ className, dataTestId, label, children, selected, prefix, su
|
|
|
4128
2856
|
* @returns {JSX.Element} MenuList component
|
|
4129
2857
|
*/
|
|
4130
2858
|
const MenuList = ({ dataTestId, className, children, withStickyHeader = false, isMulti = false, selectedItems: controlledSelectedItems, onSelectionChange, ...args }) => {
|
|
4131
|
-
const childrenArr =
|
|
4132
|
-
const [internalSelectedItems, setInternalSelectedItems] =
|
|
2859
|
+
const childrenArr = react.Children.toArray(children);
|
|
2860
|
+
const [internalSelectedItems, setInternalSelectedItems] = react.useState(controlledSelectedItems ?? []);
|
|
4133
2861
|
const selectedItems = controlledSelectedItems ?? internalSelectedItems;
|
|
4134
|
-
const handleItemClick =
|
|
2862
|
+
const handleItemClick = react.useCallback((id, disabled) => {
|
|
4135
2863
|
if (disabled) {
|
|
4136
2864
|
return;
|
|
4137
2865
|
}
|
|
@@ -4148,9 +2876,9 @@ const MenuList = ({ dataTestId, className, children, withStickyHeader = false, i
|
|
|
4148
2876
|
}
|
|
4149
2877
|
}, [isMulti, selectedItems, onSelectionChange]);
|
|
4150
2878
|
return (jsxRuntime.jsx("div", { className: cvaMenuList({ stickyHeader: withStickyHeader, className }), "data-testid": dataTestId ? `${dataTestId}-menu-list` : "menu-list", onClick: args.onClick, role: "list", tabIndex: 0, children: childrenArr.map((menuItem, index) => {
|
|
4151
|
-
if (
|
|
2879
|
+
if (react.isValidElement(menuItem)) {
|
|
4152
2880
|
const isSelected = selectedItems.includes(menuItem.props.id ?? `${index}`) || menuItem.props.selected;
|
|
4153
|
-
return
|
|
2881
|
+
return react.cloneElement(menuItem, {
|
|
4154
2882
|
...menuItem.props,
|
|
4155
2883
|
key: index,
|
|
4156
2884
|
onClick: (event) => {
|
|
@@ -4187,7 +2915,7 @@ const MoreMenu = ({ className, dataTestId, popoverProps, iconProps = {
|
|
|
4187
2915
|
square: true,
|
|
4188
2916
|
variant: "secondary",
|
|
4189
2917
|
}, customButton, customPortalId, children, }) => {
|
|
4190
|
-
const actionMenuRef =
|
|
2918
|
+
const actionMenuRef = react.useRef(null);
|
|
4191
2919
|
return (jsxRuntime.jsx("div", { className: cvaMoreMenu({ className }), "data-testid": dataTestId ? dataTestId : "more-menu", ref: actionMenuRef, children: jsxRuntime.jsxs(Popover, { placement: "bottom-end", ...popoverProps, children: [jsxRuntime.jsx(PopoverTrigger, { children: customButton ?? (jsxRuntime.jsx(IconButton, { dataTestId: "more-menu-icon", ...iconButtonProps, icon: jsxRuntime.jsx(Icon, { name: "EllipsisHorizontal", ...iconProps }) })) }), jsxRuntime.jsx(PopoverContent, { portalId: customPortalId, children: close => (typeof children === "function" ? children(close) : children) })] }) }));
|
|
4192
2920
|
};
|
|
4193
2921
|
|
|
@@ -4366,18 +3094,18 @@ const cvaPaginationText = cssClassVarianceUtilities.cvaMerge("whitespace-nowrap"
|
|
|
4366
3094
|
* @returns {JSX.Element} Pagination component
|
|
4367
3095
|
*/
|
|
4368
3096
|
const Pagination = ({ previousPage, nextPage, canPreviousPage, canNextPage, pageCount, pageIndex, loading, className, dataTestId, getTranslatedCount, onPageChange, cursorBase, }) => {
|
|
4369
|
-
const [page, setPage] =
|
|
4370
|
-
const [currentPage, setCurrentPage] =
|
|
3097
|
+
const [page, setPage] = react.useState(pageIndex);
|
|
3098
|
+
const [currentPage, setCurrentPage] = react.useState(String(pageIndex !== undefined ? pageIndex + 1 : 1));
|
|
4371
3099
|
if (!loading && pageCount === undefined) {
|
|
4372
3100
|
throw Error("Pagination should be provided with a pageCount");
|
|
4373
3101
|
}
|
|
4374
|
-
|
|
3102
|
+
react.useEffect(() => {
|
|
4375
3103
|
if (pageIndex !== undefined && (isNaN(pageIndex) || pageIndex < 0)) {
|
|
4376
3104
|
setPage(pageIndex);
|
|
4377
3105
|
setCurrentPage(String(pageIndex + 1));
|
|
4378
3106
|
}
|
|
4379
3107
|
}, [pageIndex, setPage, setCurrentPage, pageCount]);
|
|
4380
|
-
const handlePageChange =
|
|
3108
|
+
const handlePageChange = react.useCallback((action) => {
|
|
4381
3109
|
const from = page;
|
|
4382
3110
|
let to = from;
|
|
4383
3111
|
let description = "";
|
|
@@ -4448,7 +3176,7 @@ function useConfirmExit(confirmExit, when = true) {
|
|
|
4448
3176
|
* @returns {void} void
|
|
4449
3177
|
*/
|
|
4450
3178
|
const usePrompt = (message, when = true) => {
|
|
4451
|
-
|
|
3179
|
+
react.useEffect(() => {
|
|
4452
3180
|
const onBeforeUnload = (event) => {
|
|
4453
3181
|
// According to https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event
|
|
4454
3182
|
// preventDefault() should be called to indicate that the event was handled.
|
|
@@ -4462,7 +3190,7 @@ const usePrompt = (message, when = true) => {
|
|
|
4462
3190
|
window.removeEventListener("beforeunload", onBeforeUnload);
|
|
4463
3191
|
};
|
|
4464
3192
|
}, [message, when]);
|
|
4465
|
-
const confirmExit =
|
|
3193
|
+
const confirmExit = react.useCallback(() => {
|
|
4466
3194
|
return window.confirm(message);
|
|
4467
3195
|
}, [message]);
|
|
4468
3196
|
useConfirmExit(confirmExit, when);
|
|
@@ -4539,10 +3267,10 @@ const cvaSidebarChildContainer = cssClassVarianceUtilities.cvaMerge(["apply", "f
|
|
|
4539
3267
|
* @returns {object} The overflow items and the ref to the container.
|
|
4540
3268
|
*/
|
|
4541
3269
|
const useOverflowItems = ({ threshold = 1, childUniqueIdentifierAttribute = "id", children, }) => {
|
|
4542
|
-
const [itemOverflowMap, setItemOverflowMap] =
|
|
4543
|
-
const overflowContainerRef =
|
|
4544
|
-
const observerRef =
|
|
4545
|
-
const handleIntersection =
|
|
3270
|
+
const [itemOverflowMap, setItemOverflowMap] = react.useState({});
|
|
3271
|
+
const overflowContainerRef = react.useRef(null);
|
|
3272
|
+
const observerRef = react.useRef(null);
|
|
3273
|
+
const handleIntersection = react.useCallback(entries => {
|
|
4546
3274
|
const updatedEntries = {};
|
|
4547
3275
|
entries.forEach(entry => {
|
|
4548
3276
|
// @ts-ignore - suppressImplicitAnyIndexErrors
|
|
@@ -4553,7 +3281,7 @@ const useOverflowItems = ({ threshold = 1, childUniqueIdentifierAttribute = "id"
|
|
|
4553
3281
|
});
|
|
4554
3282
|
setItemOverflowMap(prev => ({ ...prev, ...updatedEntries }));
|
|
4555
3283
|
}, [childUniqueIdentifierAttribute]);
|
|
4556
|
-
const observe =
|
|
3284
|
+
const observe = react.useCallback(() => {
|
|
4557
3285
|
const node = overflowContainerRef.current;
|
|
4558
3286
|
if (node) {
|
|
4559
3287
|
const root = overflowContainerRef.current;
|
|
@@ -4566,16 +3294,16 @@ const useOverflowItems = ({ threshold = 1, childUniqueIdentifierAttribute = "id"
|
|
|
4566
3294
|
observerRef.current = observer;
|
|
4567
3295
|
}
|
|
4568
3296
|
}, [handleIntersection, threshold]);
|
|
4569
|
-
const unobserve =
|
|
3297
|
+
const unobserve = react.useCallback(() => {
|
|
4570
3298
|
const currentObserver = observerRef.current;
|
|
4571
3299
|
currentObserver?.disconnect();
|
|
4572
3300
|
observerRef.current = null;
|
|
4573
3301
|
}, []);
|
|
4574
|
-
const initializeObserver =
|
|
3302
|
+
const initializeObserver = react.useCallback(() => {
|
|
4575
3303
|
unobserve();
|
|
4576
3304
|
observe();
|
|
4577
3305
|
}, [observe, unobserve]);
|
|
4578
|
-
|
|
3306
|
+
react.useEffect(() => {
|
|
4579
3307
|
initializeObserver();
|
|
4580
3308
|
return () => {
|
|
4581
3309
|
unobserve();
|
|
@@ -4608,15 +3336,15 @@ const Sidebar = ({ childContainerClassName, children, breakpoint = "lg", classNa
|
|
|
4608
3336
|
}
|
|
4609
3337
|
return "visible";
|
|
4610
3338
|
};
|
|
4611
|
-
return (jsxRuntime.jsxs("div", { className: cvaSidebar({ className }), "data-testid": dataTestId, children: [jsxRuntime.jsx("div", { className: cvaSidebarChildContainer({ breakpoint, className: childContainerClassName }), "data-testid": dataTestId ? `${dataTestId}-child-container` : null, ref: overflowContainerRef, children:
|
|
4612
|
-
return
|
|
3339
|
+
return (jsxRuntime.jsxs("div", { className: cvaSidebar({ className }), "data-testid": dataTestId, children: [jsxRuntime.jsx("div", { className: cvaSidebarChildContainer({ breakpoint, className: childContainerClassName }), "data-testid": dataTestId ? `${dataTestId}-child-container` : null, ref: overflowContainerRef, children: react.Children.map(children, child => {
|
|
3340
|
+
return react.cloneElement(child, {
|
|
4613
3341
|
className: tailwindMerge.twMerge(child.props.className, itemVisibilityClassName(child.props.id)),
|
|
4614
3342
|
});
|
|
4615
3343
|
}) }), overflowItemCount > 0 ? (jsxRuntime.jsx(MoreMenu, { iconButtonProps: {
|
|
4616
3344
|
variant: "ghost-neutral",
|
|
4617
|
-
}, ...moreMenuProps, className: moreMenuProps?.className, dataTestId: dataTestId ? `${dataTestId}-more-menu` : undefined, children: close => (jsxRuntime.jsx(MenuList, { ...menuListProps, dataTestId: dataTestId, children:
|
|
3345
|
+
}, ...moreMenuProps, className: moreMenuProps?.className, dataTestId: dataTestId ? `${dataTestId}-more-menu` : undefined, children: close => (jsxRuntime.jsx(MenuList, { ...menuListProps, dataTestId: dataTestId, children: react.Children.map(children, child => {
|
|
4618
3346
|
return itemOverflowMap[child.props.id]
|
|
4619
|
-
?
|
|
3347
|
+
? react.cloneElement(child, {
|
|
4620
3348
|
onClick: () => {
|
|
4621
3349
|
child.props.onClick?.();
|
|
4622
3350
|
close();
|
|
@@ -4679,12 +3407,12 @@ const cvaTab = cssClassVarianceUtilities.cvaMerge([
|
|
|
4679
3407
|
* We add a custom implementation of the asChild prop to make it easy to make the child element look like other tabs.
|
|
4680
3408
|
*/
|
|
4681
3409
|
const Tab = ({ value, isFullWidth = false, iconName, dataTestId, className, children, suffix, asChild, appendTabStylesToChildIfAsChild = true, ...rest }) => {
|
|
4682
|
-
const renderContent = () => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [iconName ? jsxRuntime.jsx(Icon, { name: iconName, size: "small" }) : null,
|
|
3410
|
+
const renderContent = () => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [iconName ? jsxRuntime.jsx(Icon, { name: iconName, size: "small" }) : null, react.isValidElement(children) ? children.props.children : children, suffix] }));
|
|
4683
3411
|
const commonProps = {
|
|
4684
3412
|
className: appendTabStylesToChildIfAsChild ? cvaTab({ className, isFullWidth }) : className,
|
|
4685
3413
|
...rest,
|
|
4686
3414
|
};
|
|
4687
|
-
return (jsxRuntime.jsx(reactTabs.Trigger, { asChild: true, value: value, children: asChild && typeof children !== "string" ? (
|
|
3415
|
+
return (jsxRuntime.jsx(reactTabs.Trigger, { asChild: true, value: value, children: asChild && typeof children !== "string" ? (react.cloneElement(children, {
|
|
4688
3416
|
...commonProps,
|
|
4689
3417
|
children: renderContent(),
|
|
4690
3418
|
})) : (jsxRuntime.jsx("button", { ...commonProps, "data-testid": dataTestId, children: renderContent() })) }));
|
|
@@ -4896,8 +3624,8 @@ const cvaVirtualizedListItem = cssClassVarianceUtilities.cvaMerge(["absolute", "
|
|
|
4896
3624
|
* @property {skeletonLinesHeight} [skeletonLinesHeight="2rem"] - The height of the skeleton lines.
|
|
4897
3625
|
*/
|
|
4898
3626
|
const VirtualizedList = ({ count, rowHeight = 40, pagination, children, className, dataTestId, separator = "none", loadingIndicator = "spinner", skeletonLinesHeight = rowHeight + "px", onRowClick, }) => {
|
|
4899
|
-
const containerRef =
|
|
4900
|
-
const listRef =
|
|
3627
|
+
const containerRef = react.useRef(null);
|
|
3628
|
+
const listRef = react.useRef(null);
|
|
4901
3629
|
const { fetchMoreOnBottomReached, getVirtualItems, getTotalSize, measureElement } = reactTablePagination.useInfiniteScroll({
|
|
4902
3630
|
pagination: pagination || reactTablePagination.noPagination,
|
|
4903
3631
|
containerRef,
|