@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.
Files changed (94) hide show
  1. package/README.md +71 -1
  2. package/assets/Appearance/dark/mode/SVG_DarkMode.module.css +25 -23
  3. package/assets/Appearance/dark/themes/blue/blue_SVGTheme_DarkTheme.module.css +10 -8
  4. package/assets/Appearance/dark/themes/green/green_SVGTheme_DarkTheme.module.css +9 -7
  5. package/assets/Appearance/dark/themes/orange/orange_SVGTheme_DarkTheme.module.css +9 -7
  6. package/assets/Appearance/dark/themes/red/red_SVGTheme_DarkTheme.module.css +9 -7
  7. package/assets/Appearance/dark/themes/yellow/yellow_SVGTheme_DarkTheme.module.css +9 -7
  8. package/assets/Appearance/light/mode/SVG_LightMode.module.css +25 -23
  9. package/assets/Appearance/light/themes/blue/blue_SVGTheme_LightTheme.module.css +9 -7
  10. package/assets/Appearance/light/themes/green/green_SVGTheme_LightTheme.module.css +9 -7
  11. package/assets/Appearance/light/themes/orange/orange_SVGTheme_LightTheme.module.css +9 -7
  12. package/assets/Appearance/light/themes/red/red_SVGTheme_LightTheme.module.css +9 -7
  13. package/assets/Appearance/light/themes/yellow/yellow_SVGTheme_LightTheme.module.css +9 -7
  14. package/assets/Appearance/pureDark/mode/SVG_PureDarkMode.module.css +25 -23
  15. package/assets/Appearance/pureDark/themes/blue/blue_SVGTheme_PureDarkTheme.module.css +10 -8
  16. package/assets/Appearance/pureDark/themes/green/green_SVGTheme_PureDarkTheme.module.css +9 -7
  17. package/assets/Appearance/pureDark/themes/orange/orange_SVGTheme_PureDarkTheme.module.css +9 -7
  18. package/assets/Appearance/pureDark/themes/red/red_SVGTheme_PureDarkTheme.module.css +9 -7
  19. package/assets/Appearance/pureDark/themes/yellow/yellow_SVGTheme_PureDarkTheme.module.css +9 -7
  20. package/es/Loader/Loader.js +6 -17
  21. package/es/Loader/LoaderSvg.module.css +30 -0
  22. package/es/Loader/__tests__/__snapshots__/Loader.spec.js.snap +3 -9
  23. package/es/SVG/SVG.module.css +2 -0
  24. package/es/css/EmptyStateVariables.module.css +3 -1
  25. package/es/svg_layer.module.css +1 -0
  26. package/es/v1/Loader/Loader.js +6 -17
  27. package/es/v1/Loader/V1_LoaderSvg.module.css +30 -0
  28. package/es/v1/emptystate/version3/AgentRoom.js +90 -0
  29. package/es/v1/emptystate/version3/BuildExtension.js +241 -0
  30. package/es/v1/emptystate/version3/BulkActionLog.js +75 -0
  31. package/es/v1/emptystate/version3/EmptyAPIDashboard.js +95 -0
  32. package/es/v1/emptystate/version3/EmptyDepartment.js +55 -29
  33. package/es/v1/emptystate/version3/{EmptyDolphin.js → EmptyPenguin.js} +5 -5
  34. package/es/v1/emptystate/version3/EmptyRecycleBin.js +4 -6
  35. package/es/v1/emptystate/version3/EmptyScheduledReplies.js +84 -0
  36. package/es/v1/emptystate/version3/EmptyStarredDashboards.js +85 -0
  37. package/es/v1/emptystate/version3/EmptyStarredReports.js +82 -0
  38. package/es/v1/emptystate/version3/EmptySync.js +68 -0
  39. package/es/v1/emptystate/version3/Export.js +70 -35
  40. package/es/v1/emptystate/version3/FieldList.js +103 -0
  41. package/es/v1/emptystate/version3/FieldPermission.js +104 -0
  42. package/es/v1/emptystate/version3/Import.js +55 -27
  43. package/es/v1/emptystate/version3/MobileSdk.js +72 -0
  44. package/es/v1/emptystate/version3/MultiLayout.js +96 -0
  45. package/es/v1/emptystate/version3/PortalName.js +74 -0
  46. package/es/v1/emptystate/version3/Preference.js +71 -0
  47. package/es/v1/emptystate/version3/RebrandingLogo.js +62 -0
  48. package/es/v1/emptystate/version3/SuccessDomain.js +137 -0
  49. package/es/v1/emptystate/version3/Webhook.js +96 -0
  50. package/es/v1/emptystate/version3/ZiaAgent.js +66 -0
  51. package/lib/Loader/Loader.js +8 -21
  52. package/lib/Loader/LoaderSvg.module.css +30 -0
  53. package/lib/Loader/__tests__/__snapshots__/Loader.spec.js.snap +3 -9
  54. package/lib/SVG/SVG.module.css +2 -0
  55. package/lib/css/EmptyStateVariables.module.css +3 -1
  56. package/lib/svg_layer.module.css +1 -0
  57. package/lib/v1/Loader/Loader.js +7 -17
  58. package/lib/v1/Loader/V1_LoaderSvg.module.css +30 -0
  59. package/lib/v1/emptystate/version3/AgentRoom.js +111 -0
  60. package/lib/v1/emptystate/version3/BuildExtension.js +262 -0
  61. package/lib/v1/emptystate/version3/BulkActionLog.js +96 -0
  62. package/lib/v1/emptystate/version3/EmptyAPIDashboard.js +116 -0
  63. package/lib/v1/emptystate/version3/EmptyDepartment.js +55 -29
  64. package/lib/v1/emptystate/version3/{EmptyDolphin.js → EmptyPenguin.js} +6 -6
  65. package/lib/v1/emptystate/version3/EmptyRecycleBin.js +4 -6
  66. package/lib/v1/emptystate/version3/EmptyScheduledReplies.js +105 -0
  67. package/lib/v1/emptystate/version3/EmptyStarredDashboards.js +106 -0
  68. package/lib/v1/emptystate/version3/EmptyStarredReports.js +103 -0
  69. package/lib/v1/emptystate/version3/EmptySync.js +89 -0
  70. package/lib/v1/emptystate/version3/Export.js +65 -28
  71. package/lib/v1/emptystate/version3/FieldList.js +124 -0
  72. package/lib/v1/emptystate/version3/FieldPermission.js +125 -0
  73. package/lib/v1/emptystate/version3/Import.js +57 -27
  74. package/lib/v1/emptystate/version3/MobileSdk.js +93 -0
  75. package/lib/v1/emptystate/version3/MultiLayout.js +117 -0
  76. package/lib/v1/emptystate/version3/PortalName.js +95 -0
  77. package/lib/v1/emptystate/version3/Preference.js +92 -0
  78. package/lib/v1/emptystate/version3/RebrandingLogo.js +83 -0
  79. package/lib/v1/emptystate/version3/SuccessDomain.js +158 -0
  80. package/lib/v1/emptystate/version3/Webhook.js +117 -0
  81. package/lib/v1/emptystate/version3/ZiaAgent.js +87 -0
  82. package/package.json +26 -11
  83. package/css_error.log +0 -0
  84. package/deprecated/june_2022/ErrorUnauthorizedLogin.js +0 -127
  85. package/es/SVG/SvgLoader.js +0 -28
  86. package/es/v1/emptystate/version3/EmptyAPIs.js +0 -61
  87. package/install.md +0 -11
  88. package/lib/SVG/SvgLoader.js +0 -66
  89. package/lib/v1/emptystate/version3/EmptyAPIs.js +0 -82
  90. package/postPublish.js +0 -8
  91. package/prePublish.js +0 -70
  92. package/react-cli.config.js +0 -20
  93. package/result.json +0 -1
  94. package/unittest/index.html +0 -37
@@ -0,0 +1,75 @@
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 BulkActionLog(props) {
6
+ return /*#__PURE__*/React.createElement(SVG, {
7
+ viewBox: "0 0 500 500",
8
+ name: "emptyBulkActionLog",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
12
+ ...props
13
+ }, /*#__PURE__*/React.createElement("g", {
14
+ "clip-path": "url(#clip0_8054_29263)"
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_29263)"
43
+ }, /*#__PURE__*/React.createElement("path", {
44
+ d: "M439.749 282.664C439.749 282.664 439.749 282.871 439.697 283.207V282.664H439.749Z",
45
+ fill: "var(--zd_emptysvg_primary_stroke)"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M349.468 362.248C349.468 362.248 128.995 374.732 128.091 359.069C127.186 343.406 115.943 152.994 122.017 142.319C123.335 139.993 133.932 137.873 149.854 136.064C149.854 136.064 123.8 143.87 124.136 147.669C124.472 151.469 127.703 184.242 124.136 189.36C120.569 194.478 84.3582 192.229 85.3145 195.744C86.2708 199.259 83.4019 385.071 92.319 389.853C101.236 394.634 320.778 398.253 323.802 397.038C325.766 396.263 325.637 386.079 325.301 379.075C325.12 375.379 327.756 372.174 331.401 371.631C342.98 369.951 366.035 365.867 366.63 359.845C367.405 351.806 397.956 364.549 394.156 334.618C394.156 334.618 163.346 347.102 162.441 331.439C161.536 315.776 150.293 125.364 156.367 114.689C162.441 104.014 366.061 97.2425 378.648 109.235C391.236 121.228 289.271 222.806 280.612 229.552C271.953 236.298 246.236 183.725 237.655 182.33C229.074 180.934 197.954 212.881 207.673 216.938C217.391 220.996 267.637 298.175 283.843 283.468C300.049 268.761 397.646 98.7933 408.269 103.73C418.892 108.667 416.023 322.264 408.269 328.751",
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("path", {
54
+ d: "M250.241 181.916C250.241 181.916 273.322 215.207 279.37 214.716C285.418 214.225 370.686 118.334 365.129 114.301C359.572 110.269 169.418 112.285 169.418 122.366C169.418 132.446 174.458 322.626 185.055 325.65C195.652 328.674 376.734 331.698 392.888 317.069C409.043 302.439 399.945 136.995 399.945 136.995C399.945 136.995 307.646 291.868 285.961 297.399C264.275 302.931 190.612 217.688 192.111 209.624C193.61 201.56 229.563 155.398 250.241 181.891V181.916Z",
55
+ fill: "var(--zd_emptysvg_secondary_fill)"
56
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
57
+ id: "clip0_8054_29263"
58
+ }, /*#__PURE__*/React.createElement("rect", {
59
+ width: "450",
60
+ height: "400",
61
+ fill: "white",
62
+ transform: "translate(25 50)"
63
+ })), /*#__PURE__*/React.createElement("clipPath", {
64
+ id: "clip1_8054_29263"
65
+ }, /*#__PURE__*/React.createElement("rect", {
66
+ width: "355.754",
67
+ height: "296.978",
68
+ fill: "white",
69
+ transform: "translate(83.9961 101.583)"
70
+ }))));
71
+ }
72
+ BulkActionLog.propTypes = EmptyStateProps;
73
+ BulkActionLog.defaultProps = { ...EmptyStateDefaultProps,
74
+ dataId: 'emptyBulkActionLog'
75
+ };
@@ -0,0 +1,95 @@
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 EmptyAPIDashboard(props) {
6
+ return /*#__PURE__*/React.createElement(SVG, {
7
+ viewBox: "0 0 500 500",
8
+ name: "emptyApiDashboard",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
12
+ ...props
13
+ }, /*#__PURE__*/React.createElement("g", {
14
+ clipPath: "url(#APIDashboard_svg__a)"
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.002 291.25 72.252 257.25C71.752 224 72.252 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.5022 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(#APIDashboard_svg__b)"
43
+ }, /*#__PURE__*/React.createElement("path", {
44
+ d: "M215.361 200.536C204.92 196.074 200.665 183.508 206.197 173.534C210.223 166.316 217.031 159.394 228.29 159.755C251.496 160.542 245.703 184.985 239.909 184.591C234.116 184.197 253.067 129.899 285.176 131.047C317.284 132.196 336.661 158.967 331.62 167.891C326.58 176.815 330.475 138.79 381.175 153.521C431.874 168.252 367.755 220.746 280.561 213.266C246.095 210.313 226.523 205.227 215.394 200.503L215.361 200.536Z",
45
+ fill: "var(--zd_emptysvg_secondary_fill)"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M309.298 173.009C311.622 171.205 308.644 170.089 308.873 168.777C309.2 166.808 310.379 164.643 313.979 165.431C320.23 166.808 326.22 173.337 320.492 180.26C314.764 187.183 303.669 180.063 304.978 175.372C305.469 173.6 308.611 173.501 309.266 173.009H309.298Z",
48
+ fill: "var(--zd_emptysvg_secondary_fill)"
49
+ }), /*#__PURE__*/React.createElement("path", {
50
+ d: "M313.488 184.099C318.947 184.099 323.372 179.663 323.372 174.19C323.372 168.718 318.947 164.282 313.488 164.282C308.029 164.282 303.603 168.718 303.603 174.19C303.603 179.663 308.029 184.099 313.488 184.099Z",
51
+ stroke: "var(--zd_emptysvg_primary_stroke)",
52
+ strokeWidth: "2.5",
53
+ strokeLinecap: "round",
54
+ strokeLinejoin: "round"
55
+ }), /*#__PURE__*/React.createElement("path", {
56
+ d: "M339.869 241.612C338.756 308.148 336.039 377.473 336.039 377.473C336.039 377.473 93.5713 385.97 93.6367 377.309L94.7496 348.109V172.944L95.9279 122.648C98.5136 119.728 175.594 117.268 241.775 117.136H252.609C243.903 117.038 238.077 131.08 238.077 131.08C162.567 129.604 167.51 171.074 167.51 171.074C169.441 215.661 255.424 225.241 255.424 225.241C285.503 228.522 325.958 224.388 357.707 216.776L371.552 212.544L378.589 210.838C383.695 209.099 388.343 207.262 392.336 205.359C437.668 183.771 405.952 124.289 361.209 136.526C347.986 139.84 330.639 154.571 336.89 158.902C337.741 159.492 346.644 159.099 347.79 159.656C348.935 160.214 349.099 170.68 349.099 170.68C349.099 170.68 343.142 170.877 338.461 170.483C333.781 170.09 335.843 178.653 335.843 178.653C338.298 183.574 344.713 184 343.306 188.823C341.898 193.646 340.262 194.532 338.789 194.335C337.316 194.138 328.479 190.529 327.038 192.071C325.598 193.613 327.366 203.292 326.678 204.046C325.991 204.801 320.361 206.605 317.874 206.441C315.386 206.277 314.895 199.092 312.702 197.386C310.51 195.68 304.323 200.241 301.149 204.374C301.149 204.374 294.864 203.357 293.359 200.897C291.853 198.436 298.105 189.873 294.112 187.216C290.118 184.558 284.129 188.922 282.001 187.117C282.001 187.117 279.088 178.226 279.841 178.849C281.347 180.031 289.627 174.42 289.987 172.091C290.937 166.251 283.245 163.101 282.819 161.526C282.394 159.952 288.155 153.587 288.155 153.587C288.155 153.587 297.319 157.425 299.479 156.179C301.64 154.932 299.97 145.057 299.741 143.613C299.512 142.169 310.117 140.791 310.117 140.791C310.117 140.791 311.982 150.798 316.139 151.979C320.296 153.16 324.191 143.646 325.075 143.219C325.075 143.219 332.177 146.763 333.257 148.37C333.912 149.354 332.406 153.948 332.603 157.885C332.766 161.231 336.694 162.937 339.247 160.739C346.382 149.945 328.675 115.168 299.807 110.804C282.296 108.147 269.531 109.919 256.079 127.143C245.31 140.955 247.274 175.601 256.079 174.256C264.883 172.911 256.079 137.248 220.075 142.333C176.347 148.534 176.183 184.164 188.032 195.844",
57
+ stroke: "var(--zd_emptysvg_primary_stroke)",
58
+ strokeWidth: "2.5",
59
+ strokeLinecap: "round",
60
+ strokeLinejoin: "round"
61
+ }), /*#__PURE__*/React.createElement("path", {
62
+ d: "M104.438 174.19H134.517L133.339 352.702C133.339 352.702 179.817 352.702 177.591 352.702C175.365 352.702 185.741 260.444 186.494 254.801C187.246 249.158 225.083 256.737 225.836 254.801C226.589 252.865 225.836 352.702 225.836 352.702C225.836 352.702 274.113 351.947 269.662 352.702C265.211 353.456 274.113 293.942 274.113 293.942H299.349V352.702H335.909",
63
+ stroke: "var(--zd_emptysvg_primary_stroke)",
64
+ strokeWidth: "2.5",
65
+ strokeLinecap: "round",
66
+ strokeLinejoin: "round"
67
+ }), /*#__PURE__*/React.createElement("path", {
68
+ d: "M126.596 179.407C126.596 179.407 135.695 357.459 131.048 359.723C126.4 361.987 95.3712 362.741 95.0439 355.95C94.7166 349.126 94.062 183.803 97.3678 180.752C100.674 177.701 126.596 179.407 126.596 179.407Z",
69
+ fill: "var(--zd_emptysvg_secondary_fill)"
70
+ }), /*#__PURE__*/React.createElement("path", {
71
+ d: "M216.376 260.28C216.376 260.28 225.476 359.198 220.828 360.445C216.213 361.691 185.151 362.118 184.824 358.345C184.497 354.572 183.842 262.708 187.148 261.035C190.454 259.361 216.376 260.28 216.376 260.28Z",
72
+ fill: "var(--zd_emptysvg_secondary_fill)"
73
+ }), /*#__PURE__*/React.createElement("path", {
74
+ d: "M297.646 292.4C297.646 292.4 306.746 359.887 302.098 360.74C297.45 361.593 266.422 361.889 266.094 359.297C265.767 356.705 265.112 294.04 268.418 292.892C271.724 291.744 297.646 292.367 297.646 292.367V292.4Z",
75
+ fill: "var(--zd_emptysvg_secondary_fill)"
76
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
77
+ id: "APIDashboard_svg__a"
78
+ }, /*#__PURE__*/React.createElement("rect", {
79
+ width: "450",
80
+ height: "400",
81
+ fill: "#fff",
82
+ transform: "translate(25 50)"
83
+ })), /*#__PURE__*/React.createElement("clipPath", {
84
+ id: "APIDashboard_svg__b"
85
+ }, /*#__PURE__*/React.createElement("rect", {
86
+ width: "324",
87
+ height: "274.641",
88
+ fill: "#fff",
89
+ transform: "translate(92 108.18)"
90
+ }))));
91
+ }
92
+ EmptyAPIDashboard.propTypes = EmptyStateProps;
93
+ EmptyAPIDashboard.defaultProps = { ...EmptyStateDefaultProps,
94
+ dataId: 'emptyApiDashboard'
95
+ };
@@ -4,46 +4,72 @@ import { EmptyStateDefaultProps } from "../props/defaultProps";
4
4
  import SVG from "../../SVG/SVG";
5
5
  export default function EmptyDepartment(props) {
6
6
  return /*#__PURE__*/React.createElement(SVG, {
7
- viewBox: "0 0 200 200",
8
- name: "department",
7
+ viewBox: "0 0 500 500",
8
+ name: "emptyDepartment",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
9
12
  ...props
10
- }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, '.EmptyDepartment_svg__cls-4{fill:var(--zd_emptysvg_primary_fill)}.EmptyDepartment_svg__cls-6{fill:var(--zd_emptysvg_secondary_fill)}.EmptyDepartment_svg__cls-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptyDepartment_svg__cls-5{fill:var(--zd_emptysvg_medium_circle)}')), /*#__PURE__*/React.createElement("path", {
11
- d: "M85.65 63.06s46.91-30.84 70.66-21.55 40 87.37-26.07 122.41-95.89-41.18-96.14-54.69c-.24-13.07 0-44.23 51.55-46.17z",
12
- opacity: 0.05,
13
- className: "EmptyDepartment_svg__cls-4"
13
+ }, /*#__PURE__*/React.createElement("g", {
14
+ "clip-path": "url(#clip0_8054_29298)"
15
+ }, /*#__PURE__*/React.createElement("path", {
16
+ opacity: "0.1",
17
+ d: "M200.701 140.5C200.701 140.5 317.451 62.4999 376.451 85.9999C435.451 109.5 475.701 306.75 311.701 395.25C147.701 483.75 73.2008 291.25 72.4508 257.25C71.9508 224 72.4508 145.5 200.701 140.5Z",
18
+ fill: "var(--zd_emptysvg_primary_fill)"
14
19
  }), /*#__PURE__*/React.createElement("path", {
15
- d: "M155.17 36.25a4 4 0 114-4 4 4 0 01-4 4zm0-7a3 3 0 103 3 3 3 0 00-3-3.02z",
16
- className: "EmptyDepartment_svg__cls-5"
20
+ d: "M35.1992 293.25C34.9492 293.25 35.1992 293.25 35.1992 293.25C34.4492 293.25 33.9492 292.5 33.9492 292L34.9492 273.25C34.9492 272.5 35.4492 272 36.1992 272C36.9492 272 37.4492 272.5 37.4492 273.25L36.4492 292C36.1992 292.75 35.6992 293.25 35.1992 293.25Z",
21
+ fill: "var(--zd_emptysvg_plus)"
17
22
  }), /*#__PURE__*/React.createElement("path", {
18
- className: "EmptyDepartment_svg__cls-3",
19
- d: "M78.75 32.74a2.6 2.6 0 112.62-2.59 2.6 2.6 0 01-2.62 2.59zm0-4.19a1.6 1.6 0 101.62 1.6 1.6 1.6 0 00-1.62-1.6z"
23
+ d: "M44.7002 284.5L26.2002 283.5C25.4502 283.5 24.9502 282.75 24.9502 282.25C24.9502 281.5 25.7002 281 26.2002 281L44.4502 282C45.2002 282 45.7002 282.75 45.7002 283.25C45.9502 284 45.4502 284.5 44.7002 284.5Z",
24
+ fill: "var(--zd_emptysvg_plus)"
20
25
  }), /*#__PURE__*/React.createElement("path", {
21
- fill: "var(--zd_emptysvg_plus)",
22
- d: "M22.07 108.07a.5.5 0 01-.47-.53l.35-6.16a.49.49 0 01.53-.47.5.5 0 01.47.52l-.35 6.17a.51.51 0 01-.53.47z"
26
+ d: "M428.199 52.0002C421.699 52.0002 416.449 57.2502 416.449 63.7502C416.449 70.2502 421.699 75.5002 428.199 75.5002C434.699 75.5002 439.949 70.2502 439.949 63.7502C439.949 57.2502 434.449 52.0002 428.199 52.0002ZM428.199 73.2502C423.199 73.2502 418.949 69.0002 418.949 63.7502C418.949 58.5002 423.199 54.2502 428.199 54.2502C433.199 54.2502 437.449 58.5002 437.449 63.7502C437.449 69.0002 433.199 73.2502 428.199 73.2502Z",
27
+ fill: "var(--zd_emptysvg_medium_circle)"
23
28
  }), /*#__PURE__*/React.createElement("path", {
24
- fill: "var(--zd_emptysvg_plus)",
25
- d: "M25.35 105.16l-6.22-.35a.5.5 0 01.06-1l6.22.35a.5.5 0 010 1z"
29
+ d: "M311.199 432.75C306.449 432.75 302.699 436.5 302.699 441.25C302.699 446 306.449 449.75 311.199 449.75C315.949 449.75 319.699 446 319.699 441.25C319.699 436.75 315.949 432.75 311.199 432.75ZM311.199 447.5C307.949 447.5 305.199 444.75 305.199 441.25C305.199 437.75 307.949 435 311.199 435C314.449 435 317.199 437.75 317.199 441.25C317.199 444.75 314.449 447.5 311.199 447.5Z",
30
+ fill: "var(--zd_emptysvg_medium_circle)"
26
31
  }), /*#__PURE__*/React.createElement("path", {
27
- className: "EmptyDepartment_svg__cls-5",
28
- d: "M165 157.57a2.93 2.93 0 112.95-2.93 2.95 2.95 0 01-2.95 2.93zm0-4.86a1.93 1.93 0 101.95 1.93 1.94 1.94 0 00-1.95-1.93z"
32
+ d: "M202.45 50C198.2 50 194.95 53.5 194.95 57.5C194.95 61.5 198.2 65 202.45 65C206.7 65 209.95 61.5 209.95 57.5C209.95 53.5 206.7 50 202.45 50ZM202.45 62.75C199.7 62.75 197.45 60.5 197.45 57.75C197.45 55 199.7 52.75 202.45 52.75C205.2 52.75 207.45 55 207.45 57.75C207.45 60.5 205.2 62.75 202.45 62.75Z",
33
+ fill: "var(--zd_emptysvg_tiny_circle)"
29
34
  }), /*#__PURE__*/React.createElement("path", {
30
- className: "EmptyDepartment_svg__cls-3",
31
- transform: "rotate(-42.02 176.822 120.063)",
32
- d: "M176.31 116.96h1v6.2h-1z"
35
+ d: "M474.699 324.5C474.199 324 473.449 324 472.949 324.5L466.949 330L461.699 324C461.199 323.5 460.449 323.5 459.949 324C459.449 324.5 459.449 325.25 459.949 325.75L465.199 331.75L459.199 337.25C458.699 337.75 458.699 338.5 459.199 339C459.449 339.25 459.699 339.5 460.199 339.5C460.449 339.5 460.699 339.5 460.949 339.25L466.949 333.75L472.199 339.75C472.449 340 472.699 340.25 473.199 340.25C473.449 340.25 473.699 340.25 473.949 340C474.449 339.5 474.449 338.75 473.949 338.25L468.699 332.25L474.699 326.75C475.199 326 475.199 325 474.699 324.5Z",
36
+ fill: "var(--zd_emptysvg_tiny_circle)"
33
37
  }), /*#__PURE__*/React.createElement("path", {
34
- className: "EmptyDepartment_svg__cls-3",
35
- transform: "rotate(-41.56 176.809 120.062)",
36
- d: "M173.71 119.56h6.2v1h-6.2z"
38
+ opacity: "0.1",
39
+ d: "M289.701 162.5C289.701 162.5 196.451 100.25 149.201 119C101.951 137.75 69.7009 295.5 200.951 366.25C332.201 437 391.701 283 392.201 255.75C392.701 229.25 392.201 166.25 289.701 162.5Z",
40
+ fill: "var(--zd_emptysvg_primary_fill)"
41
+ }), /*#__PURE__*/React.createElement("g", {
42
+ "clip-path": "url(#clip1_8054_29298)"
43
+ }, /*#__PURE__*/React.createElement("path", {
44
+ d: "M157.649 280.533C157.649 280.533 155.251 298.498 148.091 299.681C144.958 300.192 144.575 298.498 145.118 296.452C146.077 292.872 149.465 290.474 153.205 290.346C165.033 289.995 193.355 289.164 194.41 289.164C195.721 289.164 196.392 384.967 195.081 386.629C193.771 388.291 102.922 386.949 100.94 386.629C98.9586 386.309 99.9495 293.159 100.621 291.849C101.292 290.538 143.392 290.506 143.392 290.506C143.392 290.506 141.282 245.945 143.392 243.963C145.502 241.981 262.083 243.963 262.083 243.963C262.083 243.963 258.79 190.739 262.083 190.739C265.376 190.739 214.517 193.041 213.142 190.739C211.768 188.438 208.571 93.5613 213.142 92.6343C217.714 91.7072 307.571 87.5836 310.32 92.6343C313.069 97.6849 313.645 191.059 310.896 191.059C308.147 191.059 266.686 191.283 266.686 191.283C266.686 191.283 265.312 243.452 266.846 244.219C268.38 244.986 374.892 243.26 377.162 244.986C379.432 246.712 377.162 289.547 377.162 289.547C377.162 289.547 424.28 287.821 425.559 289.1C426.838 290.378 426.518 387.684 425.559 387.396C424.6 387.109 327.518 388.963 327.518 387.396C327.518 385.83 327.199 289.1 328.797 288.748C330.395 288.396 371.056 288.748 371.056 288.748",
45
+ stroke: "var(--zd_emptysvg_primary_stroke)",
46
+ "stroke-width": "2.5",
47
+ "stroke-linecap": "round",
48
+ "stroke-linejoin": "round"
37
49
  }), /*#__PURE__*/React.createElement("path", {
38
- fill: "var(--zd_emptysvg_primary_stroke)",
39
- d: "M124.9 96.51a.51.51 0 00.13-.37c-.85-11.83-1.23-24.68-.42-26 1.46-.43 6.63-.52 8.53-.52a.51.51 0 00.5-.5 24 24 0 011.73-7.88c2.2-5.3 6-8.38 11.35-9.14a21.68 21.68 0 0118.55 6.25 15.15 15.15 0 014.3 13.53 19.59 19.59 0 01-11.46 13.74 17.84 17.84 0 01-16.72-.94 15.28 15.28 0 01-7.2-12.56.5.5 0 10-1 .06 16.31 16.31 0 007.67 13.35 18.81 18.81 0 0017.64 1 20.56 20.56 0 0012-14.46 16.31 16.31 0 00-4.5-14.38 22.7 22.7 0 00-19.41-6.55c-12.23 1.75-13.74 14.8-13.92 17.51-1.63 0-6.91.09-8.44.59-1.69.57-1.07 14.57-.23 26.44l-7.92.16a.49.49 0 00-.48.44 45.47 45.47 0 01-3.22 12.64c6.14-17.46-.88-29.52-8-38.27-6.93-8.48-21.61-12.48-34.89-9.51C56.92 64 48 72.34 45.1 84.16 41 100.41 45 113.85 56.62 123c.16.14.3.24.4.32a.64.64 0 00.12.21.59.59 0 00.9-.18.51.51 0 00-.18-.6c-.44-2.1-.29-17.64-.19-28 .08-7.78.15-14.49 0-15.94A.85.85 0 0158 78c1.67-1.65 8.84-1.44 12.18-1.17a6.64 6.64 0 00.24 4.47c1 2.27 3.27 4 6.79 5.12 3.76 1.21 6.9.93 9.32-.84a9 9 0 003.61-6.44c.61-.9 8.28.13 10.8.47 1.31.18 2.3.31 2.84.34 1 2.28 1 25.08.74 39.3-.83 1.29-9.37 13.61-30.24 11.81-26-2.25-30.8-27.48-30.84-27.73a.5.5 0 10-1 .17c0 .27 4.95 26.24 31.74 28.56 1.44.12 2.83.18 4.16.18 19.43 0 27-12.45 27.09-12.58a.45.45 0 00.07-.25c.16-9 .54-38.63-1.06-40.25A.65.65 0 00104 79c-.4 0-1.56-.16-2.91-.34-5.62-.76-10.37-1.3-11.58-.25a1 1 0 00-.35.75 8.11 8.11 0 01-3.21 5.65c-2.15 1.57-5 1.8-8.43.7-3.22-1-5.3-2.57-6.16-4.55a5.66 5.66 0 010-4.32.53.53 0 000-.46.5.5 0 00-.39-.25c-1.14-.11-11.19-1-13.62 1.4a1.88 1.88 0 00-.58 1.53c.13 1.4.06 8.09 0 15.84-.16 16.74-.15 24.18.1 27.15C43 110.64 43.34 95.33 46.07 84.4 48.92 73 57.52 64.84 69.68 62.12c12.94-2.9 27.19 1 33.89 9.16 7.79 9.53 15.42 23.09 5.22 43.48a.48.48 0 00.15.62.5.5 0 00.64 0c.21-.21 5.24-5.08 7-18.52l8-.16a.52.52 0 00.32-.19z"
50
+ d: "M231.235 178.784C228.358 178.784 226.025 176.546 225.929 173.669C225.417 156.983 224.458 105.261 231.587 104.814C240.09 104.27 295.999 100.147 299.26 107.819C302.52 115.491 304.47 174.692 300.634 176.61C297.438 178.209 247.538 178.656 231.203 178.784H231.235Z",
51
+ fill: "var(--zd_emptysvg_secondary_fill)"
40
52
  }), /*#__PURE__*/React.createElement("path", {
41
- fill: "var(--zd_emptysvg_primary_stroke)",
42
- d: "M169.59 117.92a19.31 19.31 0 00-22.27-10.69c-12.22 2.89-13.58 15.15-13.73 18.44a11.94 11.94 0 00-1.51.31.52.52 0 00-.36.57 16.87 16.87 0 00.41 1.78 43.94 43.94 0 01-7.79-2.21l.19-27.76a.5.5 0 00-.5-.5.5.5 0 00-.5.5l-.19 28.1a.5.5 0 00.32.47 42.33 42.33 0 008.83 2.46c2.35 6.22 8.83 12.1 15.72 13.85a17.51 17.51 0 004.31.55c5.29 0 10.15-2.58 14-7.53 4.7-6.11 5.74-12.26 3.07-18.34zm-36.8 8.91c.26-.06.55-.11.84-.15a.49.49 0 00.46.29.52.52 0 00.47-.37 1.84 1.84 0 011.3.29c.19.2.09.59 0 .89a.84.84 0 01-.49.47 4.82 4.82 0 01-2.13.21 13.5 13.5 0 01-.45-1.63zm32.91 8.82c-5.88 7.6-12.62 7.79-17.25 6.62a23.24 23.24 0 01-14.86-12.8 5 5 0 002.16-.31 1.8 1.8 0 001-1 1.75 1.75 0 00-.18-1.92 2.6 2.6 0 00-2-.62c.15-3.24 1.52-14.68 13-17.39a18.34 18.34 0 0121.13 10.12c2.49 5.65 1.49 11.5-3 17.3z"
53
+ d: "M353.764 377.327C346.955 377.327 341.425 371.893 341.329 365.084C341.009 343.858 340.881 302.302 344.845 301.695C350.151 300.864 390.621 299.233 393.881 301.695C397.142 304.156 376.3 330.72 383.652 329.058C391.004 327.396 410.216 310.262 413.061 317.614C415.906 324.966 416.322 372.245 413.061 374.962C410.664 376.944 373.519 377.263 353.732 377.295L353.764 377.327Z",
54
+ fill: "var(--zd_emptysvg_secondary_fill)"
43
55
  }), /*#__PURE__*/React.createElement("path", {
44
- className: "EmptyDepartment_svg__cls-6",
45
- d: "M150.11 76.26c-4.09-2.45-4.55 2-6.8 2.2-3.42.29-7.57-.45-7.92-5.67-.62-9 7.36-19.63 21.46-14.52s7.57 22.9-.82 22.9c-3.14 0-4.76-4.17-5.92-4.91zM152.85 131.68c-4.09-2.45-4.54 2-6.8 2.19-3.42.3-7.56-.44-7.92-5.67-.61-9 7.36-19.62 21.47-14.51s7.56 22.9-.82 22.9c-3.15 0-4.78-4.21-5.93-4.91zM59.89 125.62s-1.69-46.78-.22-46.36 7-1.05 8.22.63 4 12.43 13.28 10.54 10.53-9.27 10.53-9.27l9.91.63 1.26 37.5s-15.38 18.13-42.98 6.33z"
46
- }));
56
+ d: "M124.342 377.327C117.533 377.327 112.003 371.893 111.907 365.084C111.587 343.858 111.459 302.302 115.423 301.695C120.729 300.864 161.199 299.233 164.46 301.695C167.72 304.156 146.878 330.72 154.23 329.058C161.583 327.396 180.794 310.262 183.639 317.614C186.484 324.966 186.9 372.245 183.639 374.962C181.242 376.944 144.097 377.263 124.31 377.295L124.342 377.327Z",
57
+ fill: "var(--zd_emptysvg_secondary_fill)"
58
+ }))), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
59
+ id: "clip0_8054_29298"
60
+ }, /*#__PURE__*/React.createElement("rect", {
61
+ width: "450",
62
+ height: "400",
63
+ fill: "white",
64
+ transform: "translate(25 50)"
65
+ })), /*#__PURE__*/React.createElement("clipPath", {
66
+ id: "clip1_8054_29298"
67
+ }, /*#__PURE__*/React.createElement("rect", {
68
+ width: "329.829",
69
+ height: "301.059",
70
+ fill: "white",
71
+ transform: "translate(98 88)"
72
+ }))));
47
73
  }
48
74
  EmptyDepartment.propTypes = EmptyStateProps;
49
75
  EmptyDepartment.defaultProps = { ...EmptyStateDefaultProps,
@@ -2,10 +2,10 @@ import React from 'react';
2
2
  import { EmptyStateProps } from "../props/propTypes";
3
3
  import { EmptyStateDefaultProps } from "../props/defaultProps";
4
4
  import SVG from "../../SVG/SVG";
5
- export default function EmptyDolphin(props) {
5
+ export default function EmptyPenguin(props) {
6
6
  return /*#__PURE__*/React.createElement(SVG, {
7
7
  viewBox: "0 0 500 500",
8
- name: "dolphin",
8
+ name: "penguin",
9
9
  ...props
10
10
  }, /*#__PURE__*/React.createElement("g", {
11
11
  clipPath: "url(#a)"
@@ -73,7 +73,7 @@ export default function EmptyDolphin(props) {
73
73
  d: "M158.547 131.953h174.411v270.363H158.547z"
74
74
  }))));
75
75
  }
76
- EmptyDolphin.propTypes = EmptyStateProps;
77
- EmptyDolphin.defaultProps = { ...EmptyStateDefaultProps,
78
- dataId: 'emptyDolphin'
76
+ EmptyPenguin.propTypes = EmptyStateProps;
77
+ EmptyPenguin.defaultProps = { ...EmptyStateDefaultProps,
78
+ dataId: 'emptyPenguin'
79
79
  };
@@ -38,9 +38,8 @@ export default function EmptyRecycleBin(props) {
38
38
  })), /*#__PURE__*/React.createElement("g", {
39
39
  clipPath: "url(#clip1_8054_29338)"
40
40
  }, /*#__PURE__*/React.createElement("path", {
41
- fill: "var(--zd_emptysvg_primary_fill)",
42
- d: "M361.722 199.462C367.53 194.654 348.577 162.608 319.389 127.887C290.201 93.1658 261.831 68.9167 256.023 73.7251C250.214 78.5336 269.167 110.579 298.355 145.3C327.543 180.021 355.913 204.27 361.722 199.462Z",
43
- opacity: 0.2
41
+ fill: "var(--zd_emptysvg_secondary_fill)",
42
+ d: "M361.722 199.462C367.53 194.654 348.577 162.608 319.389 127.887C290.201 93.1658 261.831 68.9167 256.023 73.7251C250.214 78.5336 269.167 110.579 298.355 145.3C327.543 180.021 355.913 204.27 361.722 199.462Z"
44
43
  }), /*#__PURE__*/React.createElement("path", {
45
44
  fill: "transparent",
46
45
  stroke: "var(--zd_emptysvg_primary_stroke)",
@@ -50,9 +49,8 @@ export default function EmptyRecycleBin(props) {
50
49
  strokeWidth: 2.5,
51
50
  d: "M354.238 211.094C354.238 211.094 255.759 147.992 226.411 67.0925C197.064 -13.8072 364.998 141.197 363.368 198.15C361.738 254.78 239.455 114.985 299.781 78.7421C346.085 50.589 355.868 115.956 334.02 117.898C316.411 119.516 409.346 192.325 330.759 226.303C262.933 255.427 169.998 234.07 145.542 227.598C144.238 227.274 144.238 225.333 145.542 225.009C174.238 221.126 295.542 206.564 350.325 232.452L325.868 412.373C325.868 412.373 226.085 433.407 137.716 412.373C137.716 412.373 124.672 212.389 147.825 220.479C165.433 226.627 151.085 347.653 143.585 403.636C141.303 420.786 152.39 436.643 169.02 440.849C199.02 448.292 248.585 456.059 300.107 445.056C314.455 441.82 325.216 429.847 326.52 415.285L354.238 211.094Z"
52
51
  }), /*#__PURE__*/React.createElement("path", {
53
- fill: "var(--zd_emptysvg_primary_fill)",
54
- d: "M175.869 393.281C175.869 393.281 170.651 272.255 175.869 262.224C181.086 252.192 265.216 265.783 292.934 259.958C327.499 252.839 316.086 314.97 268.151 325.649C230.977 333.739 286.412 365.128 292.934 385.838C299.456 406.549 175.869 393.281 175.869 393.281Z",
55
- opacity: 0.2
52
+ fill: "var(--zd_emptysvg_secondary_fill)",
53
+ d: "M175.869 393.281C175.869 393.281 170.651 272.255 175.869 262.224C181.086 252.192 265.216 265.783 292.934 259.958C327.499 252.839 316.086 314.97 268.151 325.649C230.977 333.739 286.412 365.128 292.934 385.838C299.456 406.549 175.869 393.281 175.869 393.281Z"
56
54
  })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
57
55
  id: "clip0_8054_29338"
58
56
  }, /*#__PURE__*/React.createElement("rect", {
@@ -0,0 +1,84 @@
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 EmptyScheduledReplies(props) {
6
+ return /*#__PURE__*/React.createElement(SVG, {
7
+ viewBox: "0 0 500 500",
8
+ name: "emptyScheduledReplies",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
12
+ ...props
13
+ }, /*#__PURE__*/React.createElement("g", {
14
+ "clip-path": "url(#clip0_28504_1669)"
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: "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",
27
+ fill: "var(--zd_emptysvg_medium_circle)"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ 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",
30
+ fill: "var(--zd_emptysvg_tiny_circle)"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ 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",
33
+ fill: "var(--zd_emptysvg_tiny_circle)"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ opacity: "0.1",
36
+ 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",
37
+ fill: "var(--zd_emptysvg_primary_fill)"
38
+ })), /*#__PURE__*/React.createElement("path", {
39
+ d: "M309.015 302.855C310.218 331.122 339.588 336.686 354.123 335.934C367.656 332.175 377.428 314.884 366.903 305.111C356.378 295.337 378.932 279.549 363.144 268.272C347.357 256.995 307.511 267.52 309.015 302.855Z",
40
+ fill: "var(--zd_emptysvg_secondary_fill)"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ d: "M379.252 92.6536L376.34 68.4201L317.284 50.4194L336.969 103.82L359.952 81.704L377.182 93.3996L373.5 76.53L406.373 57.7833L320.316 50.251",
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: "M404.135 209.441C404.135 209.441 443.072 191.922 428.609 144.586C414.146 97.2501 388.637 156.45 423.147 151.372C457.656 146.319 427.382 91.0895 384.907 88.707",
49
+ stroke: "var(--zd_emptysvg_primary_stroke)",
50
+ "stroke-width": "2.5",
51
+ "stroke-linecap": "round",
52
+ "stroke-linejoin": "round"
53
+ }), /*#__PURE__*/React.createElement("path", {
54
+ d: "M322.739 357C316.29 361.307 90.5116 357.698 90.5116 357.698C87.72 353.967 201.812 272.026 215.77 271.785C222.581 271.665 261.325 299.195 291.358 318.616C290.733 304.538 294.246 290.484 302.525 276.454C321.512 247.287 356.623 246.854 377.271 263.724C397.918 280.593 399.266 314.332 380.977 334.571C362.687 354.81 323.533 354.088 306.038 330.865C288.543 307.642 296.051 282.23 297.808 282.976C299.565 283.722 288.374 308.003 292.85 284.131C297.327 260.258 324.977 247.046 335.59 246.782C346.203 246.517 369.233 236.867 350.895 236.169C332.558 235.471 332.293 245.41 346.612 243.605C360.931 241.8 373.228 227.193 346.756 226.23C320.285 225.268 320.02 244.568 345.096 245.53C370.171 246.493 380.255 258.477 380.255 258.477C394.453 264.686 402.852 260.138 395.56 252.413C388.268 244.688 355.973 232.848 388.341 265.216C414.138 291.013 406.293 338.349 368.487 355.845C368.487 355.845 322.138 371.463 299.348 330.336C299.348 330.336 299.18 339.504 308.132 349.684C317.084 359.863 316.94 362.992 316.94 362.992C262.36 364.291 94.747 367.853 83.0995 362.366C66.3262 354.449 73.7864 194.272 74.2436 177.041C74.7008 159.811 331.764 170.062 330.368 167.271C328.972 164.479 83.5808 164.022 81.7038 169.124C79.8267 174.226 185.087 259.921 211.679 259.584C238.271 259.247 320.116 188.689 320.116 188.689C320.116 188.689 343.291 164.527 349.74 166.814C356.19 169.1 352.772 207.844 352.772 207.844",
55
+ stroke: "var(--zd_emptysvg_primary_stroke)",
56
+ "stroke-width": "2.5",
57
+ "stroke-linecap": "round",
58
+ "stroke-linejoin": "round"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ d: "M313.526 175.803C306.309 166.781 167.677 172.044 99.2637 175.803C117.307 199.108 197.749 241.961 209.778 247.975C221.807 253.99 322.547 187.08 313.526 175.803Z",
61
+ fill: "var(--zd_emptysvg_secondary_fill)"
62
+ }), /*#__PURE__*/React.createElement("path", {
63
+ d: "M346.131 305.286C348.815 305.286 350.992 303.109 350.992 300.425C350.992 297.74 348.815 295.563 346.131 295.563C343.446 295.563 341.27 297.74 341.27 300.425C341.27 303.109 343.446 305.286 346.131 305.286Z",
64
+ fill: "var(--zd_emptysvg_primary_fill)"
65
+ }), /*#__PURE__*/React.createElement("path", {
66
+ d: "M346.129 298.089C346.129 298.089 344.445 277.61 344.806 277.104C345.167 276.599 346.274 273.494 346.947 273.759C347.621 274.024 349.354 277.465 349.354 277.465L346.683 299.148C346.683 299.148 367.427 296.838 367.908 297.03C368.389 297.223 371.975 300.279 371.807 300.929C371.638 301.578 368.847 303.335 367.908 303.335C366.969 303.335 346.129 300.471 346.129 300.471V298.137V298.089Z",
67
+ fill: "var(--zd_emptysvg_primary_fill)"
68
+ }), /*#__PURE__*/React.createElement("path", {
69
+ opacity: "0.2",
70
+ d: "M324.803 56.2646L341.342 91.5991C342.545 94.1689 354.875 78.6363 360.889 70.5488C368.658 68.7946 384.495 64.5344 385.698 61.5272C386.901 58.52 345.602 56.7658 324.803 56.2646Z",
71
+ fill: "var(--zd_emptysvg_secondary_fill)"
72
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
73
+ id: "clip0_28504_1669"
74
+ }, /*#__PURE__*/React.createElement("rect", {
75
+ width: "450",
76
+ height: "400",
77
+ fill: "white",
78
+ transform: "translate(25 50)"
79
+ }))));
80
+ }
81
+ EmptyScheduledReplies.propTypes = EmptyStateProps;
82
+ EmptyScheduledReplies.defaultProps = { ...EmptyStateDefaultProps,
83
+ dataId: 'emptyScheduledReplies'
84
+ };
@@ -0,0 +1,85 @@
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 EmptyStarredDashboards(props) {
6
+ return /*#__PURE__*/React.createElement(SVG, {
7
+ viewBox: "0 0 500 501",
8
+ name: "emptyStarredDashboards",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
12
+ ...props
13
+ }, /*#__PURE__*/React.createElement("path", {
14
+ opacity: "0.05",
15
+ d: "M217.099 159.074C217.099 159.074 330.799 83.7741 388.399 106.474C445.999 129.174 485.299 319.774 325.199 405.374C165.099 490.974 92.7989 304.874 92.0989 271.874C91.5989 239.874 92.1989 163.774 217.099 159.074Z",
16
+ fill: "var(--zd_emptysvg_primary_fill)"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ d: "M419.5 388.574C422.814 388.574 425.5 385.933 425.5 382.674C425.5 379.416 422.814 376.774 419.5 376.774C416.186 376.774 413.5 379.416 413.5 382.674C413.5 385.933 416.186 388.574 419.5 388.574Z",
19
+ stroke: "var(--zd_emptysvg_primary_stroke)",
20
+ "stroke-width": "3",
21
+ "stroke-miterlimit": "10",
22
+ "stroke-linecap": "round",
23
+ "stroke-linejoin": "round"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ d: "M161.799 416.174L171.799 427.474",
26
+ stroke: "var(--zd_emptysvg_tiny_circle)",
27
+ "stroke-width": "3",
28
+ "stroke-miterlimit": "10",
29
+ "stroke-linecap": "round",
30
+ "stroke-linejoin": "round"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M161.199 426.875L172.399 416.774",
33
+ stroke: "var(--zd_emptysvg_tiny_circle)",
34
+ "stroke-width": "3",
35
+ "stroke-miterlimit": "10",
36
+ "stroke-linecap": "round",
37
+ "stroke-linejoin": "round"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M395.6 92.4741C400.35 92.4741 404.2 88.6239 404.2 83.8743C404.2 79.1246 400.35 75.2742 395.6 75.2742C390.85 75.2742 387 79.1246 387 83.8743C387 88.6239 390.85 92.4741 395.6 92.4741Z",
40
+ stroke: "var(--zd_emptysvg_medium_circle)",
41
+ "stroke-width": "3",
42
+ "stroke-miterlimit": "10"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M210.299 83.7742C213.116 83.7742 215.399 81.4907 215.399 78.6741C215.399 75.8574 213.116 73.5742 210.299 73.5742C207.483 73.5742 205.199 75.8574 205.199 78.6741C205.199 81.4907 207.483 83.7742 210.299 83.7742Z",
45
+ stroke: "var(--zd_emptysvg_tiny_circle)",
46
+ "stroke-width": "3",
47
+ "stroke-miterlimit": "10"
48
+ }), /*#__PURE__*/React.createElement("path", {
49
+ d: "M70 278.374L69.1001 293.374",
50
+ stroke: "var(--zd_emptysvg_primary_fill)",
51
+ "stroke-width": "3",
52
+ "stroke-miterlimit": "10",
53
+ "stroke-linecap": "round",
54
+ "stroke-linejoin": "round"
55
+ }), /*#__PURE__*/React.createElement("path", {
56
+ d: "M62 285.474L77.1001 286.274",
57
+ stroke: "var(--zd_emptysvg_primary_fill)",
58
+ "stroke-width": "3",
59
+ "stroke-miterlimit": "10",
60
+ "stroke-linecap": "round",
61
+ "stroke-linejoin": "round"
62
+ }), /*#__PURE__*/React.createElement("path", {
63
+ d: "M152.709 237.26C152.709 237.26 186.309 180.36 194.309 191.36C202.309 202.36 215.709 202.96 232.809 159.56V237.26H152.709Z",
64
+ fill: "var(--zd_emptysvg_secondary_fill)"
65
+ }), /*#__PURE__*/React.createElement("path", {
66
+ d: "M355.8 384.659C374.71 384.659 390.04 369.329 390.04 350.419C390.04 331.508 374.71 316.179 355.8 316.179C336.889 316.179 321.56 331.508 321.56 350.419C321.56 369.329 336.889 384.659 355.8 384.659Z",
67
+ fill: "var(--zd_emptysvg_secondary_fill)"
68
+ }), /*#__PURE__*/React.createElement("path", {
69
+ d: "M341.44 365.919C343.31 363.359 346.76 357.909 344.48 355.279C341.44 351.779 330.43 344.569 331.02 342.169C331.44 340.479 350.56 343.099 351.02 341.279C351.48 339.459 355.3 322.179 357.5 322.859C359.7 323.539 363.13 341.999 365.8 341.769C368.47 341.539 383.85 340.799 383.85 343.009C383.85 345.429 368.85 354.429 369.38 355.799C369.91 357.169 375.73 373.119 373.89 374.079C371.67 375.229 358.72 363.729 357.49 363.809C356.47 363.869 346.67 371.039 343.38 373.459C340.47 375.379 336.26 376.269 330.99 376.319C302.9 376.939 261.91 376.919 246.5 376.849C243.1 376.849 240.3 374.149 240.3 370.649C240 350.749 239.4 286.649 239.2 271.849C239.2 270.149 240.5 268.849 242.2 268.849C248.4 268.949 262.8 268.049 279 268.949C279 268.949 275.5 163.649 276.4 161.949C278.9 156.949 356 161.049 359.3 162.849C362.5 164.749 363 233.649 359.3 236.549C356.6 238.649 302.6 237.249 287.5 236.849C285.3 236.749 283.6 235.049 283.5 232.849L281.7 167.849",
70
+ stroke: "var(--zd_emptysvg_primary_stroke)",
71
+ "stroke-width": "3",
72
+ "stroke-linecap": "round",
73
+ "stroke-linejoin": "round"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ d: "M162.61 237.759L232.71 237.259V159.559C215.61 202.959 202.11 202.359 194.21 191.359C186.31 180.359 152.61 237.259 152.61 237.259H145.51C141.91 237.259 139.01 234.459 138.81 230.859C137.81 208.859 135.11 136.959 143.21 134.259C152.91 131.059 247.71 131.059 251.01 136.559C254.21 142.159 254.71 240.259 251.01 242.059C247.31 243.959 214.91 239.759 214.01 242.059C213.11 244.359 215.21 336.059 211.21 339.759C208.71 342.059 135.71 343.159 133.41 339.759C132.11 337.759 132.81 266.459 136.41 263.859C142.71 259.159 359.21 254.159 359.01 263.259C358.96 265.379 359.49 287.689 359.87 311.779",
76
+ stroke: "var(--zd_emptysvg_primary_stroke)",
77
+ "stroke-width": "3",
78
+ "stroke-linecap": "round",
79
+ "stroke-linejoin": "round"
80
+ }));
81
+ }
82
+ EmptyStarredDashboards.propTypes = EmptyStateProps;
83
+ EmptyStarredDashboards.defaultProps = { ...EmptyStateDefaultProps,
84
+ dataId: 'emptyStarredDashboards'
85
+ };
@@ -0,0 +1,82 @@
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 EmptyStarredReports(props) {
6
+ return /*#__PURE__*/React.createElement(SVG, {
7
+ viewBox: "0 0 501 501",
8
+ name: "emptyStarredReports",
9
+ styleName: {
10
+ fill: 'none'
11
+ },
12
+ ...props
13
+ }, /*#__PURE__*/React.createElement("path", {
14
+ opacity: "0.05",
15
+ d: "M217.999 159.074C217.999 159.074 331.699 83.7741 389.299 106.474C446.899 129.174 486.199 319.774 326.099 405.374C165.999 490.974 93.6988 304.874 92.9988 271.874C92.4988 239.874 93.0988 163.774 217.999 159.074Z",
16
+ fill: "var(--zd_emptysvg_primary_fill)"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ d: "M420.4 388.574C423.714 388.574 426.4 385.933 426.4 382.674C426.4 379.416 423.714 376.774 420.4 376.774C417.086 376.774 414.4 379.416 414.4 382.674C414.4 385.933 417.086 388.574 420.4 388.574Z",
19
+ stroke: "var(--zd_emptysvg_primary_stroke)",
20
+ "stroke-width": "3",
21
+ "stroke-miterlimit": "10",
22
+ "stroke-linecap": "round",
23
+ "stroke-linejoin": "round"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ d: "M162.699 416.174L172.699 427.474",
26
+ stroke: "var(--zd_emptysvg_tiny_circle)",
27
+ "stroke-width": "3",
28
+ "stroke-miterlimit": "10",
29
+ "stroke-linecap": "round",
30
+ "stroke-linejoin": "round"
31
+ }), /*#__PURE__*/React.createElement("path", {
32
+ d: "M162.099 426.875L173.299 416.774",
33
+ stroke: "var(--zd_emptysvg_tiny_circle)",
34
+ "stroke-width": "3",
35
+ "stroke-miterlimit": "10",
36
+ "stroke-linecap": "round",
37
+ "stroke-linejoin": "round"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M396.5 92.4741C401.25 92.4741 405.1 88.6239 405.1 83.8743C405.1 79.1246 401.25 75.2742 396.5 75.2742C391.75 75.2742 387.9 79.1246 387.9 83.8743C387.9 88.6239 391.75 92.4741 396.5 92.4741Z",
40
+ stroke: "var(--zd_emptysvg_medium_circle)",
41
+ "stroke-width": "3",
42
+ "stroke-miterlimit": "10"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M211.199 83.7742C214.016 83.7742 216.299 81.4907 216.299 78.6741C216.299 75.8574 214.016 73.5742 211.199 73.5742C208.383 73.5742 206.099 75.8574 206.099 78.6741C206.099 81.4907 208.383 83.7742 211.199 83.7742Z",
45
+ stroke: "var(--zd_emptysvg_tiny_circle)",
46
+ "stroke-width": "3",
47
+ "stroke-miterlimit": "10"
48
+ }), /*#__PURE__*/React.createElement("path", {
49
+ d: "M70.8999 278.374L70 293.374",
50
+ stroke: "var(--zd_emptysvg_primary_fill)",
51
+ "stroke-width": "3",
52
+ "stroke-miterlimit": "10",
53
+ "stroke-linecap": "round",
54
+ "stroke-linejoin": "round"
55
+ }), /*#__PURE__*/React.createElement("path", {
56
+ d: "M62.8999 285.474L78 286.274",
57
+ stroke: "var(--zd_emptysvg_primary_fill)",
58
+ "stroke-width": "3",
59
+ "stroke-miterlimit": "10",
60
+ "stroke-linecap": "round",
61
+ "stroke-linejoin": "round"
62
+ }), /*#__PURE__*/React.createElement("path", {
63
+ d: "M141.583 353.834L186.383 281.434L208.783 316.834L274.083 219.934L297.083 255.634L365.983 142.234L372.683 140.434L369.383 357.534L141.583 353.834Z",
64
+ fill: "var(--zd_emptysvg_secondary_fill)"
65
+ }), /*#__PURE__*/React.createElement("path", {
66
+ d: "M149.983 120.434C149.983 120.434 150.183 339.434 147.483 354.334C144.683 369.234 123.383 371.534 128.283 362.734C131.523 356.924 242.113 360.014 316.813 362.774C316.813 362.774 329.843 364.064 330.013 359.944C330.183 355.824 317.873 356.354 317.873 356.354C247.463 355.104 141.483 353.734 141.483 353.734C141.483 353.734 201.383 269.934 201.083 238.534C200.783 207.034 134.983 215.834 208.783 316.834L274.083 219.934C274.083 219.934 305.983 156.734 268.983 159.734C231.983 162.734 297.083 255.534 297.083 255.534L365.983 142.134L328.583 146.734C328.583 146.734 333.683 156.134 372.683 140.334L375.283 171.734C375.283 171.734 367.783 161.634 380.183 161.334",
67
+ stroke: "var(--zd_emptysvg_primary_stroke)",
68
+ "stroke-width": "3",
69
+ "stroke-linecap": "round",
70
+ "stroke-linejoin": "round"
71
+ }), /*#__PURE__*/React.createElement("path", {
72
+ d: "M342.203 376.714C343.823 376.564 345.343 375.914 346.653 374.954C350.753 371.954 358.333 366.484 359.233 366.424C360.463 366.344 373.403 377.844 375.633 376.694C377.473 375.744 371.653 359.784 371.123 358.414C370.593 357.044 385.593 348.044 385.593 345.624C385.593 343.404 370.213 344.154 367.543 344.384C364.873 344.614 361.443 326.154 359.243 325.474C357.043 324.794 353.223 342.064 352.763 343.894C352.303 345.724 333.173 343.104 332.763 344.784C332.173 347.184 343.173 354.394 346.223 357.894C348.503 360.524 345.053 365.974 343.183 368.534C343.183 368.534 335.623 377.344 342.223 376.714H342.203Z",
73
+ stroke: "var(--zd_emptysvg_primary_stroke)",
74
+ "stroke-width": "3",
75
+ "stroke-linecap": "round",
76
+ "stroke-linejoin": "round"
77
+ }));
78
+ }
79
+ EmptyStarredReports.propTypes = EmptyStateProps;
80
+ EmptyStarredReports.defaultProps = { ...EmptyStateDefaultProps,
81
+ dataId: 'emptyStarredReports'
82
+ };