@zohodesk/svg 1.0.0-temp.57 → 1.0.0-temp.59
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/README.md +71 -1
- package/assets/Appearance/dark/mode/SVG_DarkMode.module.css +25 -23
- package/assets/Appearance/dark/themes/blue/blue_SVGTheme_DarkTheme.module.css +10 -8
- package/assets/Appearance/dark/themes/green/green_SVGTheme_DarkTheme.module.css +9 -7
- package/assets/Appearance/dark/themes/orange/orange_SVGTheme_DarkTheme.module.css +9 -7
- package/assets/Appearance/dark/themes/red/red_SVGTheme_DarkTheme.module.css +9 -7
- package/assets/Appearance/dark/themes/yellow/yellow_SVGTheme_DarkTheme.module.css +9 -7
- package/assets/Appearance/light/mode/SVG_LightMode.module.css +25 -23
- package/assets/Appearance/light/themes/blue/blue_SVGTheme_LightTheme.module.css +9 -7
- package/assets/Appearance/light/themes/green/green_SVGTheme_LightTheme.module.css +9 -7
- package/assets/Appearance/light/themes/orange/orange_SVGTheme_LightTheme.module.css +9 -7
- package/assets/Appearance/light/themes/red/red_SVGTheme_LightTheme.module.css +9 -7
- package/assets/Appearance/light/themes/yellow/yellow_SVGTheme_LightTheme.module.css +9 -7
- package/assets/Appearance/pureDark/mode/SVG_PureDarkMode.module.css +25 -23
- package/assets/Appearance/pureDark/themes/blue/blue_SVGTheme_PureDarkTheme.module.css +10 -8
- package/assets/Appearance/pureDark/themes/green/green_SVGTheme_PureDarkTheme.module.css +9 -7
- package/assets/Appearance/pureDark/themes/orange/orange_SVGTheme_PureDarkTheme.module.css +9 -7
- package/assets/Appearance/pureDark/themes/red/red_SVGTheme_PureDarkTheme.module.css +9 -7
- package/assets/Appearance/pureDark/themes/yellow/yellow_SVGTheme_PureDarkTheme.module.css +9 -7
- package/es/Loader/Loader.js +6 -17
- package/es/Loader/LoaderSvg.module.css +30 -0
- package/es/Loader/__tests__/__snapshots__/Loader.spec.js.snap +3 -9
- package/es/SVG/SVG.module.css +2 -0
- package/es/css/EmptyStateVariables.module.css +3 -1
- package/es/svg_layer.module.css +1 -0
- package/es/v1/Loader/Loader.js +6 -17
- package/es/v1/Loader/V1_LoaderSvg.module.css +30 -0
- package/es/v1/emptystate/version3/AgentRoom.js +90 -0
- package/es/v1/emptystate/version3/BuildExtension.js +241 -0
- package/es/v1/emptystate/version3/BulkActionLog.js +75 -0
- package/es/v1/emptystate/version3/EmptyAPIDashboard.js +95 -0
- package/es/v1/emptystate/version3/EmptyDepartment.js +55 -29
- package/es/v1/emptystate/version3/{EmptyDolphin.js → EmptyPenguin.js} +5 -5
- package/es/v1/emptystate/version3/EmptyRecycleBin.js +4 -6
- package/es/v1/emptystate/version3/EmptyScheduledReplies.js +84 -0
- package/es/v1/emptystate/version3/EmptyStarredDashboards.js +85 -0
- package/es/v1/emptystate/version3/EmptyStarredReports.js +82 -0
- package/es/v1/emptystate/version3/EmptySync.js +68 -0
- package/es/v1/emptystate/version3/Export.js +70 -35
- package/es/v1/emptystate/version3/FieldList.js +103 -0
- package/es/v1/emptystate/version3/FieldPermission.js +104 -0
- package/es/v1/emptystate/version3/Import.js +55 -27
- package/es/v1/emptystate/version3/MobileSdk.js +72 -0
- package/es/v1/emptystate/version3/MultiLayout.js +96 -0
- package/es/v1/emptystate/version3/PortalName.js +74 -0
- package/es/v1/emptystate/version3/Preference.js +71 -0
- package/es/v1/emptystate/version3/RebrandingLogo.js +62 -0
- package/es/v1/emptystate/version3/SuccessDomain.js +137 -0
- package/es/v1/emptystate/version3/Webhook.js +96 -0
- package/es/v1/emptystate/version3/ZiaAgent.js +66 -0
- package/lib/Loader/Loader.js +8 -21
- package/lib/Loader/LoaderSvg.module.css +30 -0
- package/lib/Loader/__tests__/__snapshots__/Loader.spec.js.snap +3 -9
- package/lib/SVG/SVG.module.css +2 -0
- package/lib/css/EmptyStateVariables.module.css +3 -1
- package/lib/svg_layer.module.css +1 -0
- package/lib/v1/Loader/Loader.js +7 -17
- package/lib/v1/Loader/V1_LoaderSvg.module.css +30 -0
- package/lib/v1/emptystate/version3/AgentRoom.js +111 -0
- package/lib/v1/emptystate/version3/BuildExtension.js +262 -0
- package/lib/v1/emptystate/version3/BulkActionLog.js +96 -0
- package/lib/v1/emptystate/version3/EmptyAPIDashboard.js +116 -0
- package/lib/v1/emptystate/version3/EmptyDepartment.js +55 -29
- package/lib/v1/emptystate/version3/{EmptyDolphin.js → EmptyPenguin.js} +6 -6
- package/lib/v1/emptystate/version3/EmptyRecycleBin.js +4 -6
- package/lib/v1/emptystate/version3/EmptyScheduledReplies.js +105 -0
- package/lib/v1/emptystate/version3/EmptyStarredDashboards.js +106 -0
- package/lib/v1/emptystate/version3/EmptyStarredReports.js +103 -0
- package/lib/v1/emptystate/version3/EmptySync.js +89 -0
- package/lib/v1/emptystate/version3/Export.js +65 -28
- package/lib/v1/emptystate/version3/FieldList.js +124 -0
- package/lib/v1/emptystate/version3/FieldPermission.js +125 -0
- package/lib/v1/emptystate/version3/Import.js +57 -27
- package/lib/v1/emptystate/version3/MobileSdk.js +93 -0
- package/lib/v1/emptystate/version3/MultiLayout.js +117 -0
- package/lib/v1/emptystate/version3/PortalName.js +95 -0
- package/lib/v1/emptystate/version3/Preference.js +92 -0
- package/lib/v1/emptystate/version3/RebrandingLogo.js +83 -0
- package/lib/v1/emptystate/version3/SuccessDomain.js +158 -0
- package/lib/v1/emptystate/version3/Webhook.js +117 -0
- package/lib/v1/emptystate/version3/ZiaAgent.js +87 -0
- package/package.json +26 -11
- package/css_error.log +0 -0
- package/deprecated/june_2022/ErrorUnauthorizedLogin.js +0 -127
- package/es/SVG/SvgLoader.js +0 -28
- package/es/v1/emptystate/version3/EmptyAPIs.js +0 -61
- package/install.md +0 -11
- package/lib/SVG/SvgLoader.js +0 -66
- package/lib/v1/emptystate/version3/EmptyAPIs.js +0 -82
- package/postPublish.js +0 -8
- package/prePublish.js +0 -70
- package/react-cli.config.js +0 -20
- package/result.json +0 -1
- package/unittest/index.html +0 -37
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function MobileSdk(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "emptyMobileSdk",
|
|
9
|
+
styleName: {
|
|
10
|
+
fill: 'none'
|
|
11
|
+
},
|
|
12
|
+
...props
|
|
13
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_8054_29324)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
opacity: "0.1",
|
|
17
|
+
d: "M200.502 140.5C200.502 140.5 317.252 62.5004 376.252 86.0004C435.252 109.5 475.502 306.75 311.502 395.25C147.502 483.75 73.0016 291.25 72.2516 257.25C71.7516 224 72.2516 145.5 200.502 140.5Z",
|
|
18
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M35 293.249C34.75 293.249 35 293.249 35 293.249C34.25 293.249 33.75 292.499 33.75 291.999L34.75 273.249C34.75 272.499 35.25 271.999 36 271.999C36.75 271.999 37.25 272.499 37.25 273.249L36.25 291.999C36 292.749 35.5 293.249 35 293.249Z",
|
|
21
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M44.501 284.498L26.001 283.498C25.251 283.498 24.751 282.748 24.751 282.248C24.751 281.498 25.501 280.998 26.001 280.998L44.251 281.998C45.001 281.998 45.501 282.748 45.501 283.248C45.751 283.998 45.251 284.498 44.501 284.498Z",
|
|
24
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M428 51.999C421.5 51.999 416.25 57.249 416.25 63.749C416.25 70.249 421.5 75.499 428 75.499C434.5 75.499 439.75 70.249 439.75 63.749C439.75 57.249 434.25 51.999 428 51.999ZM428 73.249C423 73.249 418.75 68.999 418.75 63.749C418.75 58.499 423 54.249 428 54.249C433 54.249 437.25 58.499 437.25 63.749C437.25 68.999 433 73.249 428 73.249Z",
|
|
27
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M311 432.748C306.25 432.748 302.5 436.498 302.5 441.248C302.5 445.998 306.25 449.748 311 449.748C315.75 449.748 319.5 445.998 319.5 441.248C319.5 436.748 315.75 432.748 311 432.748ZM311 447.498C307.75 447.498 305 444.748 305 441.248C305 437.748 307.75 434.998 311 434.998C314.25 434.998 317 437.748 317 441.248C317 444.748 314.25 447.498 311 447.498Z",
|
|
30
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M202.251 50C198.001 50 194.751 53.5 194.751 57.5C194.751 61.5 198.001 65 202.251 65C206.501 65 209.751 61.5 209.751 57.5C209.751 53.5 206.501 50 202.251 50ZM202.251 62.75C199.501 62.75 197.251 60.5 197.251 57.75C197.251 55 199.501 52.75 202.251 52.75C205.001 52.75 207.251 55 207.251 57.75C207.251 60.5 205.001 62.75 202.251 62.75Z",
|
|
33
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M474.5 324.5C474 324 473.25 324 472.75 324.5L466.75 330L461.5 324C461 323.5 460.25 323.5 459.75 324C459.25 324.5 459.25 325.25 459.75 325.75L465 331.75L459 337.25C458.5 337.75 458.5 338.5 459 339C459.25 339.25 459.5 339.5 460 339.5C460.25 339.5 460.5 339.5 460.75 339.25L466.75 333.75L472 339.75C472.25 340 472.5 340.25 473 340.25C473.25 340.25 473.5 340.25 473.75 340C474.25 339.5 474.25 338.75 473.75 338.25L468.5 332.25L474.5 326.75C475 326 475 325 474.5 324.5Z",
|
|
36
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
opacity: "0.1",
|
|
39
|
+
d: "M289.502 162.499C289.502 162.499 196.252 100.249 149.002 118.999C101.752 137.749 69.5017 295.499 200.752 366.249C332.002 436.999 391.502 282.999 392.002 255.749C392.502 229.249 392.002 166.249 289.502 162.499Z",
|
|
40
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
42
|
+
"clip-path": "url(#clip1_8054_29324)"
|
|
43
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M224.892 97.726C224.892 97.726 160.804 136.868 179.254 155.461C197.703 174.054 226.834 182.861 226.834 209.282C226.834 235.703 161.775 297.352 169.543 316.923C177.312 336.494 159.833 391.293 173.427 394.229C187.022 397.165 278.298 398.143 279.269 389.336C280.24 380.529 282.182 101.64 272.472 97.726C262.762 93.8118 224.892 97.726 224.892 97.726Z",
|
|
45
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
46
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M332.029 351.501C332.352 337.148 333.971 325.732 337.531 324.427C342.063 322.796 347.565 319.534 352.744 324.101L367.309 335.844C367.309 335.844 383.493 319.534 383.169 317.251C382.846 314.968 364.072 300.942 368.928 292.461C373.783 283.98 396.764 285.611 396.764 285.611C396.764 285.611 399.677 261.473 396.44 261.147C393.203 260.821 370.546 258.864 369.251 253.318C367.633 247.773 381.227 229.833 381.227 229.833C381.227 229.833 370.546 213.524 366.986 213.524C363.425 213.524 348.536 230.485 339.797 223.309C331.058 216.133 333 197.541 330.734 197.214C328.468 196.888 320.7 197.214 320.7 197.214L321.024 243.859C321.024 243.859 352.744 244.511 350.802 274.194C348.86 300.615 319.405 308.77 304.84 293.439C287.685 275.499 299.985 249.078 318.111 247.447L320.376 350.522C320.376 350.522 311.637 353.784 310.99 344.977C310.666 338.453 312.285 318.23 299.985 320.839C287.685 323.449 283.477 337.474 273.444 331.603C263.733 325.732 262.762 321.818 264.057 318.556C265.352 315.294 278.299 298.006 275.709 293.766C273.12 289.851 251.11 288.22 249.815 286.263C248.521 284.306 247.873 270.933 249.492 265.387C251.434 260.168 267.294 262.778 272.149 259.19C277.004 255.602 270.531 238.966 263.41 229.833C263.41 229.833 269.236 216.459 275.386 214.502C281.535 212.545 298.043 232.116 304.84 223.962C309.371 218.743 304.84 134.587 305.164 91.8564C305.164 80.4399 296.101 71.3066 285.096 71.3066H159.186C148.182 71.3066 139.119 80.4399 139.119 91.5302V404.343C137.824 428.154 169.544 425.219 169.544 425.219H273.444C291.893 423.914 303.545 426.849 302.898 412.823L304.516 379.879C304.516 379.879 212.593 377.595 207.738 382.488C198.998 391.621 203.854 412.497 224.245 408.257C244.313 404.016 240.105 376.291 219.066 377.269C198.027 378.9 150.447 378.574 150.447 378.574L149.476 92.5087C149.476 92.5087 151.418 82.0708 159.186 82.0708C166.955 82.0708 286.714 82.0708 286.714 82.0708",
|
|
48
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
49
|
+
"stroke-width": "2.5",
|
|
50
|
+
"stroke-miterlimit": "10",
|
|
51
|
+
"stroke-linecap": "round",
|
|
52
|
+
"stroke-linejoin": "round"
|
|
53
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
54
|
+
id: "clip0_8054_29324"
|
|
55
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
56
|
+
width: "450",
|
|
57
|
+
height: "400",
|
|
58
|
+
fill: "white",
|
|
59
|
+
transform: "translate(25 50)"
|
|
60
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
61
|
+
id: "clip1_8054_29324"
|
|
62
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
63
|
+
width: "262.5",
|
|
64
|
+
height: "357.5",
|
|
65
|
+
fill: "white",
|
|
66
|
+
transform: "translate(138 70)"
|
|
67
|
+
}))));
|
|
68
|
+
}
|
|
69
|
+
MobileSdk.propTypes = EmptyStateProps;
|
|
70
|
+
MobileSdk.defaultProps = { ...EmptyStateDefaultProps,
|
|
71
|
+
dataId: 'emptyMobileSdk'
|
|
72
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function MultiLayout(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "emptyMultiLayout",
|
|
9
|
+
styleName: {
|
|
10
|
+
fill: 'none'
|
|
11
|
+
},
|
|
12
|
+
...props
|
|
13
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_8054_29284)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
opacity: "0.1",
|
|
17
|
+
d: "M200.502 140.5C200.502 140.5 317.252 62.5004 376.252 86.0004C435.252 109.5 475.502 306.75 311.502 395.25C147.502 483.75 73.0016 291.25 72.2516 257.25C71.7516 224 72.2516 145.5 200.502 140.5Z",
|
|
18
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M35 293.25C34.75 293.25 35 293.25 35 293.25C34.25 293.25 33.75 292.5 33.75 292L34.75 273.25C34.75 272.5 35.25 272 36 272C36.75 272 37.25 272.5 37.25 273.25L36.25 292C36 292.75 35.5 293.25 35 293.25Z",
|
|
21
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M44.501 284.5L26.001 283.5C25.251 283.5 24.751 282.75 24.751 282.25C24.751 281.5 25.501 281 26.001 281L44.251 282C45.001 282 45.501 282.75 45.501 283.25C45.751 284 45.251 284.5 44.501 284.5Z",
|
|
24
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M428 51.9995C421.5 51.9995 416.25 57.2495 416.25 63.7495C416.25 70.2495 421.5 75.4995 428 75.4995C434.5 75.4995 439.75 70.2495 439.75 63.7495C439.75 57.2495 434.25 51.9995 428 51.9995ZM428 73.2495C423 73.2495 418.75 68.9995 418.75 63.7495C418.75 58.4995 423 54.2495 428 54.2495C433 54.2495 437.25 58.4995 437.25 63.7495C437.25 68.9995 433 73.2495 428 73.2495Z",
|
|
27
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M311 432.749C306.25 432.749 302.5 436.499 302.5 441.249C302.5 445.999 306.25 449.749 311 449.749C315.75 449.749 319.5 445.999 319.5 441.249C319.5 436.749 315.75 432.749 311 432.749ZM311 447.499C307.75 447.499 305 444.749 305 441.249C305 437.749 307.75 434.999 311 434.999C314.25 434.999 317 437.749 317 441.249C317 444.749 314.25 447.499 311 447.499Z",
|
|
30
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M202.251 50C198.001 50 194.751 53.5 194.751 57.5C194.751 61.5 198.001 65 202.251 65C206.501 65 209.751 61.5 209.751 57.5C209.751 53.5 206.501 50 202.251 50ZM202.251 62.75C199.501 62.75 197.251 60.5 197.251 57.75C197.251 55 199.501 52.75 202.251 52.75C205.001 52.75 207.251 55 207.251 57.75C207.251 60.5 205.001 62.75 202.251 62.75Z",
|
|
33
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M474.5 324.5C474 324 473.25 324 472.75 324.5L466.75 330L461.5 324C461 323.5 460.25 323.5 459.75 324C459.25 324.5 459.25 325.25 459.75 325.75L465 331.75L459 337.25C458.5 337.75 458.5 338.5 459 339C459.25 339.25 459.5 339.5 460 339.5C460.25 339.5 460.5 339.5 460.75 339.25L466.75 333.75L472 339.75C472.25 340 472.5 340.25 473 340.25C473.25 340.25 473.5 340.25 473.75 340C474.25 339.5 474.25 338.75 473.75 338.25L468.5 332.25L474.5 326.75C475 326 475 325 474.5 324.5Z",
|
|
36
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
opacity: "0.1",
|
|
39
|
+
d: "M289.502 162.5C289.502 162.5 196.252 100.25 149.002 119C101.752 137.75 69.5017 295.5 200.752 366.25C332.002 437 391.502 283 392.002 255.75C392.502 229.25 392.002 166.25 289.502 162.5Z",
|
|
40
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
42
|
+
"clip-path": "url(#clip1_8054_29284)"
|
|
43
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M317.375 309.542C317.375 309.542 100.221 302.587 137.999 328.74C187.53 362.961 113.094 372.699 129.884 379.654C146.674 386.61 337.523 394.957 329.967 372.421C322.692 349.884 335.844 306.76 317.375 309.542Z",
|
|
45
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
46
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M212.157 245.551C212.157 245.551 282.116 247.499 301.985 250.003C323.252 252.507 314.577 260.019 305.902 261.688C297.228 263.357 201.803 265.305 205.721 260.019C209.639 254.732 202.922 244.716 212.157 245.551Z",
|
|
48
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M212.157 207.713C212.157 207.713 282.116 209.66 301.984 212.164C323.252 214.668 314.577 222.18 305.902 223.85C297.507 225.519 201.803 227.466 205.721 222.18C209.638 217.172 202.922 207.156 212.157 207.713Z",
|
|
51
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M95.746 169.04C101.31 169.04 105.82 164.556 105.82 159.024C105.82 153.492 101.31 149.008 95.746 149.008C90.1822 149.008 85.6719 153.492 85.6719 159.024C85.6719 164.556 90.1822 169.04 95.746 169.04Z",
|
|
54
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
55
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
56
|
+
d: "M130.445 169.04C136.009 169.04 140.519 164.556 140.519 159.024C140.519 153.492 136.009 149.008 130.445 149.008C124.881 149.008 120.371 153.492 120.371 159.024C120.371 164.556 124.881 169.04 130.445 169.04Z",
|
|
57
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
d: "M152.553 113.395C158.116 113.395 162.627 108.911 162.627 103.379C162.627 97.8476 158.116 93.3633 152.553 93.3633C146.989 93.3633 142.479 97.8476 142.479 103.379C142.479 108.911 146.989 113.395 152.553 113.395Z",
|
|
60
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
61
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
62
|
+
d: "M187.252 113.395C192.816 113.395 197.326 108.911 197.326 103.379C197.326 97.8476 192.816 93.3633 187.252 93.3633C181.688 93.3633 177.178 97.8476 177.178 103.379C177.178 108.911 181.688 113.395 187.252 113.395Z",
|
|
63
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
d: "M99.1023 229.135C103.02 202.148 143.037 195.47 158.428 211.329C173.819 227.188 172.14 264.469 149.473 271.981C126.806 279.215 118.971 272.26 118.971 272.26C118.971 272.26 110.296 268.643 104.139 258.905C104.139 258.905 80.0734 226.353 77.8347 155.128C77.8347 155.128 77.8347 149.842 78.954 138.156C80.0734 128.14 390.692 135.931 391.812 147.059C392.931 158.188 398.528 412.206 389.573 415.544C380.618 418.883 72.2379 428.899 72.2379 412.206C72.2379 395.512 71.3984 182.95 71.3984 182.95C71.3984 182.95 361.869 178.499 362.988 187.402C364.108 196.305 364.108 394.399 356.272 395.512C348.437 396.625 105.818 402.19 105.818 396.625C105.818 391.061 103.58 292.292 106.938 292.292C110.296 292.292 319.894 291.457 319.894 297.021C319.894 297.021 339.482 319.836 329.968 372.142C329.968 372.142 433.787 384.105 433.787 374.924C433.787 365.742 459.532 82.7901 435.746 81.1207C411.96 79.4514 127.646 72.2176 124.008 79.4514C120.37 86.9634 120.37 112.56 120.37 112.56",
|
|
66
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
67
|
+
"stroke-width": "2.5",
|
|
68
|
+
"stroke-miterlimit": "10",
|
|
69
|
+
"stroke-linecap": "round",
|
|
70
|
+
"stroke-linejoin": "round"
|
|
71
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
72
|
+
d: "M105.82 265.026C105.82 265.026 104.421 244.437 124.289 245.55C144.158 246.663 164.026 263.357 164.026 263.357C164.026 263.357 136.322 286.727 105.82 265.026Z",
|
|
73
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
74
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
75
|
+
d: "M127.366 245.829C134.321 245.829 139.959 240.223 139.959 233.309C139.959 226.394 134.321 220.789 127.366 220.789C120.411 220.789 114.773 226.394 114.773 233.309C114.773 240.223 120.411 245.829 127.366 245.829Z",
|
|
76
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
77
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
78
|
+
id: "clip0_8054_29284"
|
|
79
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
80
|
+
width: "450",
|
|
81
|
+
height: "400",
|
|
82
|
+
fill: "white",
|
|
83
|
+
transform: "translate(25 50)"
|
|
84
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
85
|
+
id: "clip1_8054_29284"
|
|
86
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
87
|
+
width: "377.5",
|
|
88
|
+
height: "347.5",
|
|
89
|
+
fill: "white",
|
|
90
|
+
transform: "translate(70 75)"
|
|
91
|
+
}))));
|
|
92
|
+
}
|
|
93
|
+
MultiLayout.propTypes = EmptyStateProps;
|
|
94
|
+
MultiLayout.defaultProps = { ...EmptyStateDefaultProps,
|
|
95
|
+
dataId: 'emptyMultiLayout'
|
|
96
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function PortalName(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "emptyPortalName",
|
|
9
|
+
styleName: {
|
|
10
|
+
fill: 'none'
|
|
11
|
+
},
|
|
12
|
+
...props
|
|
13
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_8054_29268)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
opacity: "0.1",
|
|
17
|
+
d: "M175.502 90.4999C175.502 90.4999 292.252 12.4999 351.252 35.9999C410.252 59.4999 450.502 256.75 286.502 345.25C122.502 433.75 48.002 241.25 47.252 207.25C46.752 174 47.252 95.4999 175.502 90.4999Z",
|
|
18
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M10 243.25C9.75 243.25 10 243.25 10 243.25C9.25 243.25 8.75 242.5 8.75 242L9.75 223.25C9.75 222.5 10.25 222 11 222C11.75 222 12.25 222.5 12.25 223.25L11.25 242C11 242.75 10.5 243.25 10 243.25Z",
|
|
21
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M19.501 234.5L1.00098 233.5C0.250977 233.5 -0.249023 232.75 -0.249023 232.25C-0.249023 231.5 0.500977 231 1.00098 231L19.251 232C20.001 232 20.501 232.75 20.501 233.25C20.751 234 20.251 234.5 19.501 234.5Z",
|
|
24
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M403 2C396.5 2 391.25 7.25 391.25 13.75C391.25 20.25 396.5 25.5 403 25.5C409.5 25.5 414.75 20.25 414.75 13.75C414.75 7.25 409.25 2 403 2ZM403 23.25C398 23.25 393.75 19 393.75 13.75C393.75 8.5 398 4.25 403 4.25C408 4.25 412.25 8.5 412.25 13.75C412.25 19 408 23.25 403 23.25Z",
|
|
27
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M311 432.75C306.25 432.75 302.5 436.5 302.5 441.25C302.5 446 306.25 449.75 311 449.75C315.75 449.75 319.5 446 319.5 441.25C319.5 436.75 315.75 432.75 311 432.75ZM311 447.5C307.75 447.5 305 444.75 305 441.25C305 437.75 307.75 435 311 435C314.25 435 317 437.75 317 441.25C317 444.75 314.25 447.5 311 447.5Z",
|
|
30
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M177.251 0C173.001 0 169.751 3.5 169.751 7.5C169.751 11.5 173.001 15 177.251 15C181.501 15 184.751 11.5 184.751 7.5C184.751 3.5 181.501 0 177.251 0ZM177.251 12.75C174.501 12.75 172.251 10.5 172.251 7.75C172.251 5 174.501 2.75 177.251 2.75C180.001 2.75 182.251 5 182.251 7.75C182.251 10.5 180.001 12.75 177.251 12.75Z",
|
|
33
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M449.5 274.5C449 274 448.25 274 447.75 274.5L441.75 280L436.5 274C436 273.5 435.25 273.5 434.75 274C434.25 274.5 434.25 275.25 434.75 275.75L440 281.75L434 287.25C433.5 287.75 433.5 288.5 434 289C434.25 289.25 434.5 289.5 435 289.5C435.25 289.5 435.5 289.5 435.75 289.25L441.75 283.75L447 289.75C447.25 290 447.5 290.25 448 290.25C448.25 290.25 448.5 290.25 448.75 290C449.25 289.5 449.25 288.75 448.75 288.25L443.5 282.25L449.5 276.75C450 276 450 275 449.5 274.5Z",
|
|
36
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
opacity: "0.1",
|
|
39
|
+
d: "M264.502 112.5C264.502 112.5 171.252 50.2499 124.002 68.9999C76.7522 87.7499 44.5022 245.5 175.752 316.25C307.002 387 366.502 233 367.002 205.75C367.502 179.25 367.002 116.25 264.502 112.5Z",
|
|
40
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
42
|
+
"clip-path": "url(#clip1_8054_29268)"
|
|
43
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M331 420.5C330.75 420.5 330.75 420.5 331 420.5C330.25 420.25 329.75 420 329.75 419.25L326 365C313.25 374 237.75 421 153.5 351.5C115.5 320.25 94.2497 275.75 94.9997 229.25C95.4997 191 110.5 159.5 139 135.75C139.25 135.5 139.5 135.5 140 135.5C140.25 135.5 146.5 136.25 150.75 142.5C156 150.25 156.25 162.5 151.5 178.75C139.75 219.25 152.5 233 170 246.5C189 261.25 194.5 271 202.75 304.75C210.75 336.75 218.25 363.5 227.75 363.5C229 363.5 229.25 363.25 229.25 363.25C229.5 363 229 361.25 228.5 360.25C226.5 354.25 222.5 341.5 241.5 323C251.5 313.25 255.25 302.75 252 292.25C247.5 277.5 230 265.25 208.75 261.25C186.75 257.5 175.5 246.25 176 237.5C176.5 230 185.25 225 199.5 224.5C200 221.75 202.75 214.5 216 211C227.5 208 250.75 193.5 252 181.75C252.5 177.75 250 174.25 245 171.5C234 165.75 223.25 170.5 214.5 174.5C208.5 177.25 204 179.25 200.75 177.25C198.5 175.75 197.25 172.25 197.25 166.25C197.25 158.25 200.25 152.5 206.25 149.5C218.75 143.25 239.5 150.25 247.25 156C248.75 157 250 157.5 251 157C253.5 156.25 255.5 151.5 257 147.25C258.75 143 260 139.25 262.75 138.5C263.75 138.25 265 138.5 266 139.25C270.25 142.25 270.75 154 271.25 165.5C271.5 171.75 272 182.5 273.5 183C277.25 182.5 302.25 153.25 304.5 133C305.5 125 302.75 120 296.25 117.25C280.75 111 272.5 111 264.5 111C258 111 252 111 243 107.75C232 103.75 223.25 111 215.5 117.5C209.75 122.25 204.5 126.5 199.25 125.5C195.25 124.75 189.75 125.25 183.5 126C171.75 127 159.75 128.25 157.5 120.5C156.25 116.75 162.25 109.25 172.5 101.75C185 92.4998 252.25 48.7498 343.5 108.75C345 110 381.75 137.75 379.5 153.75C379.5 154 379.25 154.25 379 154.5C378.75 154.75 363.5 168.5 344.25 159C340.5 157 339.75 157.75 339.75 157.75C339 158.5 340.25 163.5 341.25 167C344 177 348.25 191.75 337.25 199.75C320.5 211.75 310.25 224.75 311.25 227.5C311.5 227.75 312.25 228.25 314.25 227.75C318.25 227 322 224.75 325.5 222.5C332.75 218 340.5 213.25 348.75 224C350.75 226.5 352.5 227.75 354.25 227.75C357 227.75 359.5 225 362 222.25C365.5 218.25 370 213.5 375.75 217.5C380 220.5 383.25 227.25 380.5 234.5C378.25 240.75 368 255 323.75 251.25C304 249.5 292.25 252.25 291.5 258.25C290.5 266.75 311.5 282 333.5 285.25C339.25 286 343.25 288.25 345 291.75C348.75 299.25 342.25 311.25 335.75 322.5C330.75 331.5 325.5 340.75 327.5 345C328 346.25 329.5 347.25 331.5 347.75C337 349 343.5 346.75 350.75 341C369 326.5 384.25 296.5 384.25 285.25C384.25 279 383.25 272.5 382.25 267.5C381 260.75 380.5 257.5 382.5 256.5C384 255.75 385.75 257 387.25 258.25C388.25 259 389 259.75 390 260.75C393 263.5 396 266.25 397.5 265.75C398.5 265.25 400 263.25 400.75 255C402.75 237.25 408 189.75 383.25 161.75C382.75 161.25 382.75 160.5 383.25 160C383.75 159.5 384.5 159.5 385 160C410.5 188.75 405 237 403 255C402 263 400.75 266.75 398 267.75C395 268.75 391.75 266 387.75 262.25C387 261.5 386 260.75 385.25 260C384.25 259 383.75 258.75 383.25 258.75C383 260 383.75 263.75 384.25 267C385.25 272.25 386.25 278.75 386.25 285.25C386.25 298.25 369.25 329 351.75 343C344 349.25 336.75 351.75 330.25 350.25C327.5 349.5 325.5 348.25 324.5 346.25C322 340.75 327 331.75 332.75 321.5C338.5 311.25 345 299.25 342 293C340.75 290.25 337.5 288.5 332.5 287.75C310.25 284.5 287.25 268.75 288.5 258C289.25 252.5 295.75 246.5 323.5 248.75C366.25 252.5 375.75 239.5 377.75 233.75C380 227.75 377.5 222.25 373.75 219.75C370 217.25 367.5 219.75 363.25 224.25C360.25 227.5 357.25 230.75 353.5 230.5C351 230.5 348.5 228.75 346.25 225.75C339.25 217 333.5 220.5 326.25 225C322.5 227.25 318.5 229.75 314 230.5C311 231 309 230.5 308.25 228.75C305.75 223 322.25 207.25 335 198C344.5 191.25 340.75 177.75 338 168C336.25 162 335.25 158 337.25 156.25C338.75 155 340.75 155.5 344.5 157.25C361 165.5 374 155.5 376.25 153.5C377.5 138.5 341.5 111.5 341.25 111.25C251.5 52.2498 185.5 94.9998 173.25 104.25C162.25 112.25 158.75 118.75 159.25 120.25C161 126 172.5 125 182.75 124C189 123.5 194.75 122.75 199 123.5C203.25 124.25 207.75 120.5 213.25 116C221 109.5 230.75 101.25 243.25 105.75C251.75 109 257.75 109 264 108.75C271.75 108.75 280.75 108.5 296.75 115C304.25 118 307.5 124.25 306.5 133.25C304.75 153.25 279.75 184 274 185C273.25 185.25 272.5 185 272 184.5C269.75 182.5 269.25 176 269 165.25C268.75 155.5 268.25 143.25 265 141C264.25 140.5 264 140.5 264 140.75C262.5 141.25 261.25 145 260 148C258 153 256 158.25 252.25 159.25C250.5 159.75 248.5 159.25 246.25 157.75C237.5 151.5 218 146 207.5 151.5C202.5 154 199.75 159 199.75 166C199.75 170.75 200.5 173.75 202 174.75C204 176.25 208.5 174.25 213.5 172C222.25 168 234 162.75 246.25 169C252.5 172.25 255.25 176.5 254.75 181.75C253 194.75 229 210 216.5 213.25C202 217 201.75 225.25 201.75 225.75C201.75 226.5 201.25 227 200.5 227C187.25 227.5 179 231.5 178.5 237.75C178 245.5 189.25 255.5 209 259C231.25 263 249.5 276 254.25 291.5C256.75 299.5 256.75 311.75 243.25 324.75C225.5 342 229 353.25 231 359.25C231.75 361.5 232.25 363.25 231.25 364.5C230.5 365.5 229 365.75 227.75 365.75C216.5 365.75 209.25 340.75 200.5 305.25C192.25 272 187 262.75 168.5 248.5C150.75 234.75 137.25 220 149.25 178.25C153.75 162.75 153.5 151 149 144C146 139.5 141.75 138.25 140.5 138C112.5 161.25 97.9997 192 97.4997 229.25C96.7497 275 117.75 318.75 155 349.5C202.25 388.5 246.25 389.75 275 383.75C306 377.5 326.25 361.75 326.25 361.5C326.5 361.25 326.75 361.25 326.75 361.25L315.5 353C315 352.5 314.75 351.75 315.25 351.25C315.75 350.75 316.5 350.5 317 351L375.75 393.5C376.25 393.75 376.5 394.5 376.25 395C376 395.5 375.5 395.75 375 395.75L344 395L332 419.75C331.75 420.25 331.25 420.5 331 420.5ZM328.25 362.5L331.75 414.5L342 393.25C342.25 392.75 342.75 392.5 343.25 392.5L371.25 393.25L328.25 362.5Z",
|
|
45
|
+
fill: "var(--zd_emptysvg_primary_stroke)"
|
|
46
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M249.749 117.5C237.749 117.5 209.999 133.5 187.499 133.5C180.499 133.5 174.749 133.5 169.749 133.25C160.999 133 154.249 140.75 155.749 149.25C157.749 160 159.749 173.75 159.749 184.5C159.749 205 159.749 227.5 168.999 230.25C178.249 233 196.249 197 215.499 193.75C234.749 190.5 196.249 192.5 191.749 182.5C187.249 172.5 190.999 141.5 204.249 140.75C217.499 140 245.249 148.75 248.749 144C251.749 139.25 261.749 117.5 249.749 117.5Z",
|
|
48
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M352.749 318.25C345.499 333.25 392.999 282 370.499 253.25C370.499 253.25 334.999 266.25 315.499 261.75C295.749 257.25 315.499 273.5 333.249 274.75C350.749 276.25 359.999 303 352.749 318.25Z",
|
|
51
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M333.998 401.5L341.498 385.25L360.498 389.75L331.748 368.25L333.998 401.5Z",
|
|
54
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
55
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
56
|
+
id: "clip0_8054_29357"
|
|
57
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
58
|
+
width: "450",
|
|
59
|
+
height: "400",
|
|
60
|
+
fill: "white",
|
|
61
|
+
transform: "translate(25 50)"
|
|
62
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
63
|
+
id: "clip1_8054_29357"
|
|
64
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
65
|
+
width: "310.5",
|
|
66
|
+
height: "343",
|
|
67
|
+
fill: "white",
|
|
68
|
+
transform: "translate(95 77.5)"
|
|
69
|
+
}))));
|
|
70
|
+
}
|
|
71
|
+
PortalName.propTypes = EmptyStateProps;
|
|
72
|
+
PortalName.defaultProps = { ...EmptyStateDefaultProps,
|
|
73
|
+
dataId: 'emptyPortalName'
|
|
74
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function Preference(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "Preference",
|
|
9
|
+
...props
|
|
10
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
11
|
+
clipPath: "url(#a)"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
14
|
+
d: "M200.502 140.5s116.75-78 175.75-54.5 99.25 220.75-64.75 309.25-238.5-104-239.25-138c-.5-33.25 0-111.75 128.25-116.75Z",
|
|
15
|
+
opacity: 0.1
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
fill: "var(--zd_emptysvg_plus)",
|
|
18
|
+
d: "M35 293.25c-.25 0 0 0 0 0-.75 0-1.25-.75-1.25-1.25l1-18.75c0-.75.5-1.25 1.25-1.25s1.25.5 1.25 1.25l-1 18.75c-.25.75-.75 1.25-1.25 1.25Z"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "var(--zd_emptysvg_plus)",
|
|
21
|
+
d: "m44.501 284.5-18.5-1c-.75 0-1.25-.75-1.25-1.25 0-.75.75-1.25 1.25-1.25l18.25 1c.75 0 1.25.75 1.25 1.25.25.75-.25 1.25-1 1.25Z"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
fill: "var(--zd_emptysvg_medium_circle)",
|
|
24
|
+
d: "M428 52c-6.5 0-11.75 5.25-11.75 11.75S421.5 75.5 428 75.5s11.75-5.25 11.75-11.75S434.25 52 428 52Zm0 21.25c-5 0-9.25-4.25-9.25-9.5s4.25-9.5 9.25-9.5 9.25 4.25 9.25 9.5-4.25 9.5-9.25 9.5ZM311 432.75c-4.75 0-8.5 3.75-8.5 8.5s3.75 8.5 8.5 8.5 8.5-3.75 8.5-8.5c0-4.5-3.75-8.5-8.5-8.5Zm0 14.75c-3.25 0-6-2.75-6-6.25s2.75-6.25 6-6.25 6 2.75 6 6.25-2.75 6.25-6 6.25Z"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fill: "var(--zd_emptysvg_tiny_circle)",
|
|
27
|
+
d: "M202.251 50c-4.25 0-7.5 3.5-7.5 7.5s3.25 7.5 7.5 7.5 7.5-3.5 7.5-7.5-3.25-7.5-7.5-7.5Zm0 12.75c-2.75 0-5-2.25-5-5s2.25-5 5-5 5 2.25 5 5-2.25 5-5 5ZM474.5 324.5c-.5-.5-1.25-.5-1.75 0l-6 5.5-5.25-6c-.5-.5-1.25-.5-1.75 0s-.5 1.25 0 1.75l5.25 6-6 5.5c-.5.5-.5 1.25 0 1.75.25.25.5.5 1 .5.25 0 .5 0 .75-.25l6-5.5 5.25 6c.25.25.5.5 1 .5.25 0 .5 0 .75-.25.5-.5.5-1.25 0-1.75l-5.25-6 6-5.5c.5-.75.5-1.75 0-2.25Z"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
fill: "var(--zd_emptysvg_primary_fill)",
|
|
30
|
+
d: "M289.502 162.5s-93.25-62.25-140.5-43.5-79.5 176.5 51.75 247.25 190.75-83.25 191.25-110.5c.5-26.5 0-89.5-102.5-93.25Z",
|
|
31
|
+
opacity: 0.1
|
|
32
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
33
|
+
clipPath: "url(#b)"
|
|
34
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fill: "transparent",
|
|
36
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
37
|
+
strokeLinecap: "round",
|
|
38
|
+
strokeLinejoin: "round",
|
|
39
|
+
strokeMiterlimit: 10,
|
|
40
|
+
strokeWidth: 2.5,
|
|
41
|
+
d: "M457.985 382.468s-105.202-94.743-115.682-133.207c-10.479-38.464-28.215-126.324-40.307-129.158-12.092-2.834-27.409-1.62-30.23 4.453-2.822 6.074 20.153 50.206 28.215 43.728 8.061-6.478-58.445-68.021-75.777-70.45-17.333-2.43-66.91 1.215-72.956 10.527-6.046 9.312 0 21.864 20.959 19.435 0 0 4.434-16.601 0-18.625-4.03-1.62 1.613 17.005 4.837 19.029 3.225 2.025 30.634-10.527 42.726-.809 12.092 9.717 45.95 72.474 33.052 70.45-13.302-2.43-.403-42.108-18.945-36.035-18.541 6.073-18.944 20.244-16.123 27.532 2.822 7.288 17.332 40.893 23.379 39.679 6.046-1.215 16.525-23.484 13.704-21.459-2.822 2.024-23.378 39.274-33.052 36.439-8.061-2.429-30.633-31.176-51.593-42.108-6.449-3.239-14.107-4.048-20.96-1.214-3.627 1.619-6.852 4.049-6.449 8.907.806 10.122 19.751 24.698 19.751 24.698s12.898-15.385 11.286-15.79c-1.613-.405-14.108 8.907-7.659 18.624 6.449 9.718 36.277 32.796 39.904 39.274 3.628 6.478 43.129 29.152 66.91 27.937 24.184-1.215 20.154-10.932 20.154-10.932s-12.092-1.214-11.286 19.84c.806 21.054 46.353 48.586 55.624 94.742"
|
|
42
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
43
|
+
fill: "var(--zd_emptysvg_secondary_fill)",
|
|
44
|
+
d: "M135.528 167.474c3.628-8.907-6.449-7.287-7.658-11.336-2.015-6.074-2.015-14.171 9.271-17.41 19.75-5.669 46.756 3.644 41.113 31.986-5.643 28.341-47.965 25.507-51.19 10.122-1.612-5.669 7.255-10.932 8.464-13.362Z"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
fill: "transparent",
|
|
47
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
48
|
+
strokeLinecap: "round",
|
|
49
|
+
strokeLinejoin: "round",
|
|
50
|
+
strokeMiterlimit: 10,
|
|
51
|
+
strokeWidth: 2.5,
|
|
52
|
+
d: "M131.095 200.675s-55.22 4.858-70.134-2.025c-5.24-2.429-34.261-25.912-8.465-57.898a38.405 38.405 0 0 1 29.828-14.171h68.925c14.51 0 27.812 7.693 34.261 20.649 2.418 4.454 3.627 9.717 3.627 15.791 0 20.244-16.929 36.034-37.082 36.844-15.72.405-34.261-4.454-38.695-29.152-8.061-44.942 40.71-39.678 47.562-37.654 6.853 2.025 22.572 13.361 21.766 32.391-.806 16.195-14.51 28.342-30.633 29.152-10.883.405-24.587-3.239-33.455-20.245"
|
|
53
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
54
|
+
fill: "var(--zd_emptysvg_secondary_fill)",
|
|
55
|
+
d: "M263.751 256.25c-15 20 6.25 25 18.75 25 7.083 0 24.5 9 37.5 45 16.25 45.001 71.25 53.75 86.25 43.75s-68.75-88.75-86.25-101.25c-17.5-12.499-17.5-46.25-27.5-56.25s-10 18.75-28.75 43.75Z"
|
|
56
|
+
}))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
57
|
+
id: "a"
|
|
58
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
fill: "#fff",
|
|
60
|
+
d: "M25 50h450v400H25z"
|
|
61
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
62
|
+
id: "b"
|
|
63
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
64
|
+
fill: "#fff",
|
|
65
|
+
d: "M40 95h420v315H40z"
|
|
66
|
+
}))));
|
|
67
|
+
}
|
|
68
|
+
Preference.propTypes = EmptyStateProps;
|
|
69
|
+
Preference.defaultProps = { ...EmptyStateDefaultProps,
|
|
70
|
+
dataId: 'Preference'
|
|
71
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function RebrandingLogo(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "emptyRebrandingLogo",
|
|
9
|
+
styleName: {
|
|
10
|
+
fill: 'none'
|
|
11
|
+
},
|
|
12
|
+
...props
|
|
13
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_27560_1516)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
opacity: "0.1",
|
|
17
|
+
d: "M200.502 140.5C200.502 140.5 317.252 62.4999 376.252 85.9999C435.252 109.5 475.502 306.75 311.502 395.25C147.502 483.75 73.0016 291.25 72.2516 257.25C71.7516 224 72.2516 145.5 200.502 140.5Z",
|
|
18
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M35 293.25C34.75 293.25 35 293.25 35 293.25C34.25 293.25 33.75 292.5 33.75 292L34.75 273.25C34.75 272.5 35.25 272 36 272C36.75 272 37.25 272.5 37.25 273.25L36.25 292C36 292.75 35.5 293.25 35 293.25Z",
|
|
21
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M44.501 284.5L26.001 283.5C25.251 283.5 24.751 282.75 24.751 282.25C24.751 281.5 25.501 281 26.001 281L44.251 282C45.001 282 45.501 282.75 45.501 283.25C45.751 284 45.251 284.5 44.501 284.5Z",
|
|
24
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M428 52.0002C421.5 52.0002 416.25 57.2502 416.25 63.7502C416.25 70.2502 421.5 75.5002 428 75.5002C434.5 75.5002 439.75 70.2502 439.75 63.7502C439.75 57.2502 434.25 52.0002 428 52.0002ZM428 73.2502C423 73.2502 418.75 69.0002 418.75 63.7502C418.75 58.5002 423 54.2502 428 54.2502C433 54.2502 437.25 58.5002 437.25 63.7502C437.25 69.0002 433 73.2502 428 73.2502Z",
|
|
27
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M311 432.75C306.25 432.75 302.5 436.5 302.5 441.25C302.5 446 306.25 449.75 311 449.75C315.75 449.75 319.5 446 319.5 441.25C319.5 436.75 315.75 432.75 311 432.75ZM311 447.5C307.75 447.5 305 444.75 305 441.25C305 437.75 307.75 435 311 435C314.25 435 317 437.75 317 441.25C317 444.75 314.25 447.5 311 447.5Z",
|
|
30
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M202.251 50C198.001 50 194.751 53.5 194.751 57.5C194.751 61.5 198.001 65 202.251 65C206.501 65 209.751 61.5 209.751 57.5C209.751 53.5 206.501 50 202.251 50ZM202.251 62.75C199.501 62.75 197.251 60.5 197.251 57.75C197.251 55 199.501 52.75 202.251 52.75C205.001 52.75 207.251 55 207.251 57.75C207.251 60.5 205.001 62.75 202.251 62.75Z",
|
|
33
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M474.5 324.5C474 324 473.25 324 472.75 324.5L466.75 330L461.5 324C461 323.5 460.25 323.5 459.75 324C459.25 324.5 459.25 325.25 459.75 325.75L465 331.75L459 337.25C458.5 337.75 458.5 338.5 459 339C459.25 339.25 459.5 339.5 460 339.5C460.25 339.5 460.5 339.5 460.75 339.25L466.75 333.75L472 339.75C472.25 340 472.5 340.25 473 340.25C473.25 340.25 473.5 340.25 473.75 340C474.25 339.5 474.25 338.75 473.75 338.25L468.5 332.25L474.5 326.75C475 326 475 325 474.5 324.5Z",
|
|
36
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
opacity: "0.1",
|
|
39
|
+
d: "M289.502 162.5C289.502 162.5 196.252 100.25 149.002 119C101.752 137.75 69.5017 295.5 200.752 366.25C332.002 437 391.502 283 392.002 255.75C392.502 229.25 392.002 166.25 289.502 162.5Z",
|
|
40
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
41
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
d: "M273.668 250.158C318.477 264.94 391.279 247.714 395.818 169.443C397.505 140.113 387.729 118.464 374.868 102.927C351.997 75.1678 314.869 63.6453 279.429 70.6286C191.905 87.9706 194.64 174.447 214.019 206.338C236.249 242.826 258.13 244.513 258.13 244.513C183.234 196.212 226.065 117.475 224.843 112.994C223.621 108.513 108.861 112.994 103.915 112.994C98.9683 112.994 103.507 299.798 103.915 308.411C104.322 317.024 237.064 307.48 237.064 307.48C237.064 307.48 195.92 373.065 195.92 384.936C195.92 396.808 399.542 389.301 408.213 387.264C416.884 385.227 307.013 216.173 296.364 211.517C285.714 206.92 189.868 378.593 189.868 378.593C189.868 378.593 182.07 390.348 192.196 392.676C202.321 395.004 307.246 299.1 316.15 308.062C325.053 317.024 311.261 361.251 325.112 355.723C339.02 350.194 361.89 342.571 372.307 364.045C382.724 385.46 425.671 388.894 425.671 388.894",
|
|
43
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
44
|
+
"stroke-width": "2.5",
|
|
45
|
+
"stroke-linecap": "round",
|
|
46
|
+
"stroke-linejoin": "round"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M225.365 386.099C225.365 386.099 311.958 307.595 314.577 323.366C317.196 339.136 307.943 364.974 327.613 360.203C347.282 355.372 352.52 360.203 360.376 369.048C368.232 377.894 375.39 386.739 389.706 388.078C389.822 388.078 242.474 396.632 225.423 386.099H225.365Z",
|
|
49
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
50
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
51
|
+
id: "clip0_27560_1516"
|
|
52
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
53
|
+
width: "450",
|
|
54
|
+
height: "400",
|
|
55
|
+
fill: "white",
|
|
56
|
+
transform: "translate(25 50)"
|
|
57
|
+
}))));
|
|
58
|
+
}
|
|
59
|
+
RebrandingLogo.propTypes = EmptyStateProps;
|
|
60
|
+
RebrandingLogo.defaultProps = { ...EmptyStateDefaultProps,
|
|
61
|
+
dataId: 'emptyRebrandingLogo'
|
|
62
|
+
};
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { EmptyStateProps } from "../props/propTypes";
|
|
3
|
+
import { EmptyStateDefaultProps } from "../props/defaultProps";
|
|
4
|
+
import SVG from "../../SVG/SVG";
|
|
5
|
+
export default function SuccessDomain(props) {
|
|
6
|
+
return /*#__PURE__*/React.createElement(SVG, {
|
|
7
|
+
viewBox: "0 0 500 500",
|
|
8
|
+
name: "emptySuccessDomain",
|
|
9
|
+
styleName: {
|
|
10
|
+
fill: "none"
|
|
11
|
+
},
|
|
12
|
+
...props
|
|
13
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
"clip-path": "url(#clip0_27328_1480)"
|
|
16
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M415.653 261.415C415.653 261.415 425.335 245.706 431.362 258.273C437.389 270.84 440.787 281.826 458.334 267.955C475.881 254.084 483.212 251.99 489.752 260.624C496.292 269.259 502.447 342.823 438.436 327.627C438.436 327.627 387.783 308.52 415.653 261.393V261.415Z",
|
|
18
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M457.438 352.847C456.219 365.35 453.591 374.348 448.867 374.775C447.35 374.903 114.557 382.149 73.8638 381.999C68.5206 381.999 64.0324 377.96 63.4553 372.638C60.57 346.499 53.5812 274.431 64.5453 273.298C72.4746 272.486 206.374 268.767 314.84 268.169C314.84 268.169 370.067 268.874 370.067 265.07C370.067 261.265 369.703 258.658 369.703 258.658C369.703 244.359 363.441 230.061 370.601 236.302C377.761 242.564 382.228 248.826 384.001 232.733C385.797 216.639 390.264 176.416 368.806 152.286",
|
|
21
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
22
|
+
"stroke-width": "2.5",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-linejoin": "round"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M130.821 257.931C125.115 243.077 122.122 227.155 122.358 210.826C122.764 184.559 131.355 155.193 159.653 131.726C159.653 131.726 178.418 133.521 168.587 167.482C158.755 201.443 168.587 213.968 184.68 226.471C197.418 236.388 202.89 243.483 208.147 260.239C208.147 260.239 208.083 266.801 227.062 269.152C246.041 271.503 263.524 268.211 253.393 257.739C245.122 249.19 233.837 239.871 218.641 237.178C188.249 231.814 180.213 208.582 211.481 207.684C211.481 207.684 211.481 199.648 224.882 196.057C238.283 192.488 270.47 171.03 249.909 160.301C229.349 149.572 209.686 179.964 209.686 156.732C209.686 133.5 240.975 141.536 250.807 148.696C260.638 155.856 260.638 129.931 266.9 134.398C273.163 138.864 268.696 172.825 274.06 171.949C279.425 171.052 317.853 123.69 293.723 113.858C269.593 104.027 265.126 112.063 248.135 105.822C231.144 99.5602 220.436 122.814 210.584 121.018C200.752 119.223 178.397 126.383 175.725 117.449C173.053 108.515 241.873 48.6293 333.049 108.515C333.049 108.515 365.236 132.645 363.44 146.067C363.44 146.067 350.916 157.694 334.844 149.636C318.75 141.6 343.778 172.868 327.684 184.495C311.591 196.122 298.19 212.194 308.919 210.42C319.648 208.646 327.684 194.326 337.515 206.851C347.347 219.375 351.814 195.224 360.747 201.486C369.681 207.748 369.681 232.776 316.955 228.309C264.229 223.842 294.599 255.131 324.991 259.598C328.795 260.154 331.296 261.351 332.835 262.996C332.835 262.996 337.922 268.126 343.286 268.126C367.074 268.126 373.827 268.34 391.545 268.81",
|
|
27
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
28
|
+
"stroke-width": "2.5",
|
|
29
|
+
"stroke-linecap": "round",
|
|
30
|
+
"stroke-linejoin": "round"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M185.108 128.605C177.692 128.349 171.921 134.953 173.225 142.241C174.849 151.431 176.559 163.272 176.559 172.462C176.559 190.03 176.559 209.287 184.488 211.552C192.417 213.818 207.72 183.234 224.134 180.391C240.57 177.549 207.699 179.258 203.745 170.752C199.769 162.246 203.168 135.637 214.517 135.06C225.844 134.483 249.632 141.856 252.474 137.903C255.317 133.927 263.802 115.248 253.607 115.248C243.412 115.248 219.625 128.841 200.368 128.841C194.469 128.841 189.361 128.734 185.129 128.584L185.108 128.605Z",
|
|
33
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M356.793 231.344C356.793 231.344 326.508 242.564 309.688 238.632C292.868 234.699 309.688 248.72 324.82 249.852C339.952 250.964 342.11 248.634 344.055 258.679C346.769 272.721 376.029 255.879 356.772 231.365L356.793 231.344Z",
|
|
36
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M193.186 353.808C179.807 353.958 169.228 340.258 170.361 324.25C171.215 312.26 173.331 301.168 178.311 300.997C189.19 300.59 382.89 292.618 389.686 302.407C396.483 312.196 392.486 335.257 388.746 343.806C385.711 350.773 255.231 353.146 193.186 353.787V353.808Z",
|
|
39
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
d: "M210.69 315.829C210.69 315.829 215.008 336.518 217.038 335.748C219.068 334.979 226.528 317.005 224.518 315.829C222.509 314.654 228.451 335.791 230.994 335.77C233.538 335.748 237.983 315.786 237.983 315.786",
|
|
42
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
43
|
+
"stroke-width": "4.27452",
|
|
44
|
+
"stroke-linecap": "round",
|
|
45
|
+
"stroke-linejoin": "round"
|
|
46
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
d: "M245.355 315.829C245.355 315.829 249.673 336.518 251.703 335.748C253.734 334.979 261.193 317.005 259.184 315.829C257.175 314.654 263.116 335.791 265.659 335.77C268.203 335.748 272.648 315.786 272.648 315.786",
|
|
48
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
49
|
+
"stroke-width": "4.27452",
|
|
50
|
+
"stroke-linecap": "round",
|
|
51
|
+
"stroke-linejoin": "round"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
d: "M280.044 315.829C280.044 315.829 284.361 336.518 286.392 335.748C288.422 334.979 295.881 317.005 293.872 315.829C291.863 314.654 297.805 335.791 300.348 335.77C302.891 335.748 307.337 315.786 307.337 315.786",
|
|
54
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
55
|
+
"stroke-width": "4.27452",
|
|
56
|
+
"stroke-linecap": "round",
|
|
57
|
+
"stroke-linejoin": "round"
|
|
58
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
59
|
+
d: "M97.8632 316.429C97.8632 316.429 95.5122 337.801 104.36 336.455C113.209 335.108 111.627 316.429 111.627 316.429",
|
|
60
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
61
|
+
"stroke-width": "4.27452",
|
|
62
|
+
"stroke-linecap": "round",
|
|
63
|
+
"stroke-linejoin": "round"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
d: "M120.24 336.903V317.091C120.24 317.091 126.545 315.531 130.499 317.86C134.496 320.211 133.47 326.068 129.025 327.371C126.909 327.991 123.831 328.269 119.343 327.841L132.551 336.519",
|
|
66
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
67
|
+
"stroke-width": "4.27452",
|
|
68
|
+
"stroke-linecap": "round",
|
|
69
|
+
"stroke-linejoin": "round"
|
|
70
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
71
|
+
d: "M140.373 315.659V335.899L151.465 335.129",
|
|
72
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
73
|
+
"stroke-width": "4.27452",
|
|
74
|
+
"stroke-linecap": "round",
|
|
75
|
+
"stroke-linejoin": "round"
|
|
76
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
77
|
+
d: "M158.967 322.305C160.372 322.305 161.511 321.167 161.511 319.762C161.511 318.357 160.372 317.219 158.967 317.219C157.563 317.219 156.424 318.357 156.424 319.762C156.424 321.167 157.563 322.305 158.967 322.305Z",
|
|
78
|
+
fill: "var(--zd_emptysvg_primary_stroke)"
|
|
79
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
80
|
+
d: "M160.742 333.547C162.146 333.547 163.285 332.409 163.285 331.004C163.285 329.599 162.146 328.461 160.742 328.461C159.337 328.461 158.198 329.599 158.198 331.004C158.198 332.409 159.337 333.547 160.742 333.547Z",
|
|
81
|
+
fill: "var(--zd_emptysvg_primary_stroke)"
|
|
82
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
83
|
+
d: "M493.215 269.878C493.215 269.878 506.701 298.838 486.974 321.643C476.822 333.376 461.135 338.506 445.747 336.475C428.713 334.21 406.143 325.618 403.322 290.866C402.446 280.052 406.934 267.805 413.73 259.342C417.065 255.195 421.574 251.626 427.281 249.083C437.091 244.723 446.046 243.291 453.975 243.59C468.53 244.146 481.93 251.006 491.377 261.799C491.377 261.799 457.523 294.329 452.265 294.329C447.008 294.329 437.54 280.671 437.54 280.671L424.566 291.892C424.566 291.892 448.033 313.265 451.539 312.559C455.044 311.854 493.194 269.9 493.194 269.9L493.215 269.878Z",
|
|
84
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
85
|
+
"stroke-width": "2.5",
|
|
86
|
+
"stroke-linecap": "round",
|
|
87
|
+
"stroke-linejoin": "round"
|
|
88
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
89
|
+
"clip-path": "url(#clip1_27328_1480)"
|
|
90
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
91
|
+
opacity: "0.1",
|
|
92
|
+
d: "M201.326 140.5C201.326 140.5 318.076 62.4999 377.076 85.9999C436.076 109.5 476.326 306.75 312.326 395.25C148.326 483.75 73.8258 291.25 73.0758 257.25C72.5758 224 73.0758 145.5 201.326 140.5Z",
|
|
93
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
94
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
95
|
+
d: "M35.8232 393.25C35.5732 393.25 35.8232 393.25 35.8232 393.25C35.0732 393.25 34.5732 392.5 34.5732 392L35.5732 373.25C35.5732 372.5 36.0732 372 36.8232 372C37.5732 372 38.0732 372.5 38.0732 373.25L37.0732 392C36.8232 392.75 36.3232 393.25 35.8232 393.25Z",
|
|
96
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
97
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
98
|
+
d: "M45.3242 384.5L26.8242 383.5C26.0742 383.5 25.5742 382.75 25.5742 382.25C25.5742 381.5 26.3242 381 26.8242 381L45.0742 382C45.8242 382 46.3242 382.75 46.3242 383.25C46.5742 384 46.0742 384.5 45.3242 384.5Z",
|
|
99
|
+
fill: "var(--zd_emptysvg_plus)"
|
|
100
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
101
|
+
d: "M428.823 52.0002C422.323 52.0002 417.073 57.2502 417.073 63.7502C417.073 70.2502 422.323 75.5002 428.823 75.5002C435.323 75.5002 440.573 70.2502 440.573 63.7502C440.573 57.2502 435.073 52.0002 428.823 52.0002ZM428.823 73.2502C423.823 73.2502 419.573 69.0002 419.573 63.7502C419.573 58.5002 423.823 54.2502 428.823 54.2502C433.823 54.2502 438.073 58.5002 438.073 63.7502C438.073 69.0002 433.823 73.2502 428.823 73.2502Z",
|
|
102
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
103
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
104
|
+
d: "M311.823 432.75C307.073 432.75 303.323 436.5 303.323 441.25C303.323 446 307.073 449.75 311.823 449.75C316.573 449.75 320.323 446 320.323 441.25C320.323 436.75 316.573 432.75 311.823 432.75ZM311.823 447.5C308.573 447.5 305.823 444.75 305.823 441.25C305.823 437.75 308.573 435 311.823 435C315.073 435 317.823 437.75 317.823 441.25C317.823 444.75 315.073 447.5 311.823 447.5Z",
|
|
105
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
106
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
107
|
+
d: "M203.074 50C198.824 50 195.574 53.5 195.574 57.5C195.574 61.5 198.824 65 203.074 65C207.324 65 210.574 61.5 210.574 57.5C210.574 53.5 207.324 50 203.074 50ZM203.074 62.75C200.324 62.75 198.074 60.5 198.074 57.75C198.074 55 200.324 52.75 203.074 52.75C205.824 52.75 208.074 55 208.074 57.75C208.074 60.5 205.824 62.75 203.074 62.75Z",
|
|
108
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
109
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
110
|
+
d: "M475.324 224.5C474.824 224 474.074 224 473.574 224.5L467.574 230L462.324 224C461.824 223.5 461.074 223.5 460.574 224C460.074 224.5 460.074 225.25 460.574 225.75L465.824 231.75L459.824 237.25C459.324 237.75 459.324 238.5 459.824 239C460.074 239.25 460.324 239.5 460.824 239.5C461.074 239.5 461.324 239.5 461.574 239.25L467.574 233.75L472.824 239.75C473.074 240 473.324 240.25 473.824 240.25C474.074 240.25 474.324 240.25 474.574 240C475.074 239.5 475.074 238.75 474.574 238.25L469.324 232.25L475.324 226.75C475.824 226 475.824 225 475.324 224.5Z",
|
|
111
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
112
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
113
|
+
opacity: "0.1",
|
|
114
|
+
d: "M290.326 162.5C290.326 162.5 197.076 100.25 149.826 119C102.576 137.75 70.3259 295.5 201.576 366.25C332.826 437 392.326 283 392.826 255.75C393.326 229.25 392.826 166.25 290.326 162.5Z",
|
|
115
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
116
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
117
|
+
id: "clip0_27328_1480"
|
|
118
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
120
|
+
width: "442.327",
|
|
121
|
+
height: "302.999",
|
|
122
|
+
fill: "white",
|
|
123
|
+
transform: "translate(57 80.6028)"
|
|
124
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
125
|
+
id: "clip1_27328_1480"
|
|
126
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
127
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
128
|
+
width: "450",
|
|
129
|
+
height: "400",
|
|
130
|
+
fill: "white",
|
|
131
|
+
transform: "translate(25.8232 50)"
|
|
132
|
+
}))));
|
|
133
|
+
}
|
|
134
|
+
SuccessDomain.propTypes = EmptyStateProps;
|
|
135
|
+
SuccessDomain.defaultProps = { ...EmptyStateDefaultProps,
|
|
136
|
+
dataId: "emptySuccessDomain"
|
|
137
|
+
};
|