@zohodesk/svg 1.0.0-beta.4 → 1.0.0-beta.42

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 (363) hide show
  1. package/README.md +146 -1
  2. package/assets/Appearance/dark/mode/darkEmptyStates.module.css +37 -0
  3. package/assets/Appearance/dark/themes/blue/blueDarkCTATheme.module.css +10 -0
  4. package/assets/Appearance/dark/themes/green/greenDarkCTATheme.module.css +10 -0
  5. package/assets/Appearance/dark/themes/orange/orangeDarkCTATheme.module.css +10 -0
  6. package/assets/Appearance/dark/themes/red/redDarkCTATheme.module.css +10 -0
  7. package/assets/Appearance/dark/themes/yellow/yellowDarkCTATheme.module.css +10 -0
  8. package/assets/Appearance/default/mode/defaultEmptyStates.module.css +37 -0
  9. package/assets/Appearance/default/themes/blue/blueDefaultCTATheme.module.css +10 -0
  10. package/assets/Appearance/default/themes/green/greenDefaultCTATheme.module.css +10 -0
  11. package/assets/Appearance/default/themes/orange/orangeDefaultCTATheme.module.css +10 -0
  12. package/assets/Appearance/default/themes/red/redDefaultCTATheme.module.css +10 -0
  13. package/assets/Appearance/default/themes/yellow/yellowDefaultCTATheme.module.css +10 -0
  14. package/es/Provider.js +140 -0
  15. package/es/index.js +5 -2
  16. package/es/svg/EmptyAccounts.js +84 -40
  17. package/es/svg/EmptyActiveCalls.js +55 -47
  18. package/es/svg/EmptyActivity.js +55 -42
  19. package/es/svg/EmptyAgent.js +55 -39
  20. package/es/svg/EmptyAgentQueue.js +78 -0
  21. package/es/svg/EmptyApproval.js +78 -0
  22. package/es/svg/EmptyArchived.js +64 -39
  23. package/es/svg/EmptyAttach.js +55 -39
  24. package/es/svg/EmptyBlueprint.js +70 -39
  25. package/es/svg/EmptyBusinessHoliday.js +21 -38
  26. package/es/svg/EmptyBusinessHour.js +21 -38
  27. package/es/svg/EmptyCallHistory.js +57 -47
  28. package/es/svg/EmptyCollision.js +72 -0
  29. package/es/svg/EmptyColumn.js +78 -0
  30. package/es/svg/EmptyContact.js +55 -40
  31. package/es/svg/EmptyContract.js +68 -0
  32. package/es/svg/EmptyConversation.js +55 -39
  33. package/es/svg/EmptyCrm.js +72 -0
  34. package/es/svg/EmptyCrmNotes.js +83 -0
  35. package/es/svg/EmptyCrmPotential.js +86 -0
  36. package/es/svg/EmptyCustomDomain.js +39 -0
  37. package/es/svg/EmptyDashboard.js +62 -40
  38. package/es/svg/EmptyDepartment.js +72 -0
  39. package/es/svg/EmptyError.js +94 -0
  40. package/es/svg/EmptyFeed.js +75 -0
  41. package/es/svg/EmptyFollowers.js +73 -0
  42. package/es/svg/EmptyFrame.js +71 -0
  43. package/es/svg/EmptyFromAddress.js +21 -38
  44. package/es/svg/EmptyHappiness.js +55 -39
  45. package/es/svg/EmptyHistory.js +55 -46
  46. package/es/svg/EmptyImportHistory.js +21 -38
  47. package/es/svg/EmptyInconvenience.js +42 -0
  48. package/es/svg/EmptyInvoice.js +60 -39
  49. package/es/svg/EmptyNetwork.js +21 -38
  50. package/es/svg/EmptyNotification.js +55 -39
  51. package/es/svg/EmptyProducts.js +58 -39
  52. package/es/svg/EmptyRecycleBin.js +21 -38
  53. package/es/svg/EmptyReply.js +67 -0
  54. package/es/svg/EmptyReports.js +61 -39
  55. package/es/svg/EmptyRoles.js +21 -38
  56. package/es/svg/EmptySchedule.js +114 -0
  57. package/es/svg/EmptySearch.js +65 -39
  58. package/es/svg/EmptySkills.js +103 -45
  59. package/es/svg/EmptySla.js +67 -0
  60. package/es/svg/EmptySnippet.js +67 -47
  61. package/es/svg/EmptyStateVariables.module.css +39 -0
  62. package/es/svg/EmptyTag.js +58 -39
  63. package/es/svg/EmptyTask.js +71 -39
  64. package/es/svg/EmptyTeams.js +55 -39
  65. package/es/svg/EmptyTemplate.js +67 -40
  66. package/es/svg/EmptyTicket.js +58 -39
  67. package/es/svg/EmptyTimeEntry.js +61 -39
  68. package/es/svg/EmptyTimeline.js +72 -0
  69. package/es/svg/EmptyTopic.js +61 -39
  70. package/es/svg/EmptyUnauthorizedLogin.js +47 -0
  71. package/es/svg/EmptyWebhook.js +21 -38
  72. package/es/svg/EmptyWillBeRightBack.js +42 -0
  73. package/es/svg/ErrorInconvenience.js +113 -0
  74. package/es/svg/ErrorOopsSomethingMiss.js +114 -0
  75. package/es/svg/ErrorUnableToProcessRequest.js +114 -0
  76. package/es/svg/ErrorUnauthorizedLogin.js +113 -0
  77. package/es/svg/ErrorUrlNotFound.js +114 -0
  78. package/es/svg/ErrorWillBeRightBack.js +113 -0
  79. package/es/svg/Extensions.js +73 -0
  80. package/es/svg/Extractor.js +66 -0
  81. package/es/svg/FailureLog.js +21 -38
  82. package/es/svg/Import.js +82 -0
  83. package/es/svg/Loader.js +55 -34
  84. package/es/svg/NoRequestFound.js +22 -45
  85. package/es/svg/NotImpossible.js +79 -0
  86. package/es/svg/PageNotFound.js +24 -46
  87. package/es/svg/Predictor.js +73 -0
  88. package/es/svg/SVG.js +61 -85
  89. package/es/svg/SVG.module.css +9 -2
  90. package/es/svg/SvgLoader.js +28 -0
  91. package/es/svg/UnableToProcessRequest.js +24 -46
  92. package/es/svg/UnauthorizedLogin.js +23 -45
  93. package/es/svg/UrlNotFound.js +25 -47
  94. package/es/svg/WillBeRightBack.js +25 -47
  95. package/es/svg/ZiaAnamoly.js +67 -0
  96. package/es/svg/images/EmptyCustomDomain.svg +85 -0
  97. package/es/svg/images/EmptySkills.svg +75 -67
  98. package/es/svg/utils.js +14 -0
  99. package/lib/Provider.js +213 -0
  100. package/lib/index.js +48 -27
  101. package/lib/svg/EmptyAccounts.js +108 -36
  102. package/lib/svg/EmptyActiveCalls.js +79 -43
  103. package/lib/svg/EmptyActivity.js +79 -38
  104. package/lib/svg/EmptyAgent.js +79 -35
  105. package/lib/svg/EmptyAgentQueue.js +128 -0
  106. package/lib/svg/EmptyApproval.js +128 -0
  107. package/lib/svg/EmptyArchived.js +88 -35
  108. package/lib/svg/EmptyAttach.js +79 -35
  109. package/lib/svg/EmptyBlueprint.js +94 -35
  110. package/lib/svg/EmptyBusinessHoliday.js +47 -35
  111. package/lib/svg/EmptyBusinessHour.js +47 -35
  112. package/lib/svg/EmptyCallHistory.js +81 -43
  113. package/lib/svg/EmptyCollision.js +122 -0
  114. package/lib/svg/EmptyColumn.js +128 -0
  115. package/lib/svg/EmptyContact.js +79 -36
  116. package/lib/svg/EmptyContract.js +118 -0
  117. package/lib/svg/EmptyConversation.js +79 -35
  118. package/lib/svg/EmptyCrm.js +122 -0
  119. package/lib/svg/EmptyCrmNotes.js +133 -0
  120. package/lib/svg/EmptyCrmPotential.js +136 -0
  121. package/lib/svg/EmptyCustomDomain.js +90 -0
  122. package/lib/svg/EmptyDashboard.js +86 -36
  123. package/lib/svg/EmptyDepartment.js +122 -0
  124. package/lib/svg/EmptyError.js +144 -0
  125. package/lib/svg/EmptyFeed.js +125 -0
  126. package/lib/svg/EmptyFollowers.js +123 -0
  127. package/lib/svg/EmptyFrame.js +121 -0
  128. package/lib/svg/EmptyFromAddress.js +47 -35
  129. package/lib/svg/EmptyHappiness.js +79 -35
  130. package/lib/svg/EmptyHistory.js +79 -42
  131. package/lib/svg/EmptyImportHistory.js +47 -35
  132. package/lib/svg/EmptyInconvenience.js +91 -0
  133. package/lib/svg/EmptyInvoice.js +84 -35
  134. package/lib/svg/EmptyNetwork.js +47 -35
  135. package/lib/svg/EmptyNotification.js +79 -35
  136. package/lib/svg/EmptyProducts.js +82 -35
  137. package/lib/svg/EmptyRecycleBin.js +47 -35
  138. package/lib/svg/EmptyReply.js +117 -0
  139. package/lib/svg/EmptyReports.js +85 -35
  140. package/lib/svg/EmptyRoles.js +47 -35
  141. package/lib/svg/EmptySchedule.js +164 -0
  142. package/lib/svg/EmptySearch.js +89 -35
  143. package/lib/svg/EmptySkills.js +127 -41
  144. package/lib/svg/EmptySla.js +117 -0
  145. package/lib/svg/EmptySnippet.js +98 -50
  146. package/lib/svg/EmptyStateVariables.module.css +39 -0
  147. package/lib/svg/EmptyTag.js +82 -35
  148. package/lib/svg/EmptyTask.js +95 -35
  149. package/lib/svg/EmptyTeams.js +79 -35
  150. package/lib/svg/EmptyTemplate.js +91 -36
  151. package/lib/svg/EmptyTicket.js +82 -35
  152. package/lib/svg/EmptyTimeEntry.js +85 -35
  153. package/lib/svg/EmptyTimeline.js +122 -0
  154. package/lib/svg/EmptyTopic.js +85 -35
  155. package/lib/svg/EmptyUnauthorizedLogin.js +97 -0
  156. package/lib/svg/EmptyWebhook.js +47 -35
  157. package/lib/svg/EmptyWillBeRightBack.js +92 -0
  158. package/lib/svg/ErrorInconvenience.js +163 -0
  159. package/lib/svg/ErrorOopsSomethingMiss.js +164 -0
  160. package/lib/svg/ErrorUnableToProcessRequest.js +164 -0
  161. package/lib/svg/ErrorUnauthorizedLogin.js +163 -0
  162. package/lib/svg/ErrorUrlNotFound.js +164 -0
  163. package/lib/svg/ErrorWillBeRightBack.js +163 -0
  164. package/lib/svg/Extensions.js +123 -0
  165. package/lib/svg/Extractor.js +116 -0
  166. package/lib/svg/FailureLog.js +47 -35
  167. package/lib/svg/Import.js +132 -0
  168. package/lib/svg/Loader.js +77 -33
  169. package/lib/svg/NoRequestFound.js +47 -43
  170. package/lib/svg/NotImpossible.js +129 -0
  171. package/lib/svg/PageNotFound.js +49 -44
  172. package/lib/svg/Predictor.js +123 -0
  173. package/lib/svg/SVG.js +88 -81
  174. package/lib/svg/SVG.module.css +9 -2
  175. package/lib/svg/SvgLoader.js +66 -0
  176. package/lib/svg/UnableToProcessRequest.js +48 -43
  177. package/lib/svg/UnauthorizedLogin.js +48 -43
  178. package/lib/svg/UrlNotFound.js +49 -44
  179. package/lib/svg/WillBeRightBack.js +49 -44
  180. package/lib/svg/ZiaAnamoly.js +117 -0
  181. package/lib/svg/images/EmptyCustomDomain.svg +85 -0
  182. package/lib/svg/images/EmptySkills.svg +75 -67
  183. package/lib/svg/utils.js +26 -0
  184. package/package.json +26 -14
  185. package/.DS_Store +0 -0
  186. package/es/svg/EmptyCloud.js +0 -55
  187. package/es/svg/EmptyCloudDanger.js +0 -131
  188. package/es/svg/EmptyEdition.js +0 -56
  189. package/es/svg/Inconvenience.js +0 -65
  190. package/es/svg/InvalidUrl.js +0 -780
  191. package/es/svg/SitBack.js +0 -54
  192. package/es/svg/docs/SVG__default.docs.js +0 -605
  193. package/es/svg/images/EmptyAccounts.svg +0 -55
  194. package/es/svg/images/EmptyActiveCalls.svg +0 -57
  195. package/es/svg/images/EmptyActivity.svg +0 -85
  196. package/es/svg/images/EmptyAgent.svg +0 -52
  197. package/es/svg/images/EmptyArchived.svg +0 -38
  198. package/es/svg/images/EmptyAttach.svg +0 -39
  199. package/es/svg/images/EmptyBlueprint.svg +0 -78
  200. package/es/svg/images/EmptyCallHistory.svg +0 -46
  201. package/es/svg/images/EmptyCloud.svg +0 -38
  202. package/es/svg/images/EmptyContact.svg +0 -33
  203. package/es/svg/images/EmptyConversation.svg +0 -38
  204. package/es/svg/images/EmptyDashboard.svg +0 -42
  205. package/es/svg/images/EmptyEdition.svg +0 -76
  206. package/es/svg/images/EmptyHappiness.svg +0 -58
  207. package/es/svg/images/EmptyHistory.svg +0 -44
  208. package/es/svg/images/EmptyInvoice.svg +0 -45
  209. package/es/svg/images/EmptyNotification.svg +0 -38
  210. package/es/svg/images/EmptyProducts.svg +0 -57
  211. package/es/svg/images/EmptyReports.svg +0 -39
  212. package/es/svg/images/EmptySearch.svg +0 -37
  213. package/es/svg/images/EmptySnippet.svg +0 -46
  214. package/es/svg/images/EmptyTag.svg +0 -43
  215. package/es/svg/images/EmptyTask.svg +0 -42
  216. package/es/svg/images/EmptyTeams.svg +0 -39
  217. package/es/svg/images/EmptyTemplate.svg +0 -39
  218. package/es/svg/images/EmptyTicket.svg +0 -33
  219. package/es/svg/images/EmptyTimeEntry.svg +0 -96
  220. package/es/svg/images/EmptyTopic.svg +0 -41
  221. package/es/svg/images/Loader.svg +0 -62
  222. package/es/svg/images/SitBack.svg +0 -464
  223. package/lib/svg/EmptyCloud.js +0 -77
  224. package/lib/svg/EmptyCloudDanger.js +0 -147
  225. package/lib/svg/EmptyEdition.js +0 -78
  226. package/lib/svg/Inconvenience.js +0 -87
  227. package/lib/svg/InvalidUrl.js +0 -799
  228. package/lib/svg/SitBack.js +0 -76
  229. package/lib/svg/docs/SVG__default.docs.js +0 -765
  230. package/lib/svg/images/EmptyAccounts.svg +0 -55
  231. package/lib/svg/images/EmptyActiveCalls.svg +0 -57
  232. package/lib/svg/images/EmptyActivity.svg +0 -85
  233. package/lib/svg/images/EmptyAgent.svg +0 -52
  234. package/lib/svg/images/EmptyArchived.svg +0 -38
  235. package/lib/svg/images/EmptyAttach.svg +0 -39
  236. package/lib/svg/images/EmptyBlueprint.svg +0 -78
  237. package/lib/svg/images/EmptyCallHistory.svg +0 -46
  238. package/lib/svg/images/EmptyCloud.svg +0 -38
  239. package/lib/svg/images/EmptyContact.svg +0 -33
  240. package/lib/svg/images/EmptyConversation.svg +0 -38
  241. package/lib/svg/images/EmptyDashboard.svg +0 -42
  242. package/lib/svg/images/EmptyEdition.svg +0 -76
  243. package/lib/svg/images/EmptyHappiness.svg +0 -58
  244. package/lib/svg/images/EmptyHistory.svg +0 -44
  245. package/lib/svg/images/EmptyInvoice.svg +0 -45
  246. package/lib/svg/images/EmptyNotification.svg +0 -38
  247. package/lib/svg/images/EmptyProducts.svg +0 -57
  248. package/lib/svg/images/EmptyReports.svg +0 -39
  249. package/lib/svg/images/EmptySearch.svg +0 -37
  250. package/lib/svg/images/EmptySnippet.svg +0 -46
  251. package/lib/svg/images/EmptyTag.svg +0 -43
  252. package/lib/svg/images/EmptyTask.svg +0 -42
  253. package/lib/svg/images/EmptyTeams.svg +0 -39
  254. package/lib/svg/images/EmptyTemplate.svg +0 -39
  255. package/lib/svg/images/EmptyTicket.svg +0 -33
  256. package/lib/svg/images/EmptyTimeEntry.svg +0 -96
  257. package/lib/svg/images/EmptyTopic.svg +0 -41
  258. package/lib/svg/images/Loader.svg +0 -62
  259. package/lib/svg/images/SitBack.svg +0 -464
  260. package/src/.DS_Store +0 -0
  261. package/src/index.js +0 -6
  262. package/src/svg/.DS_Store +0 -0
  263. package/src/svg/EmptyAccounts.js +0 -30
  264. package/src/svg/EmptyActiveCalls.js +0 -36
  265. package/src/svg/EmptyActivity.js +0 -31
  266. package/src/svg/EmptyAgent.js +0 -29
  267. package/src/svg/EmptyArchived.js +0 -28
  268. package/src/svg/EmptyAttach.js +0 -29
  269. package/src/svg/EmptyBlueprint.js +0 -29
  270. package/src/svg/EmptyBusinessHoliday.js +0 -29
  271. package/src/svg/EmptyBusinessHour.js +0 -29
  272. package/src/svg/EmptyCallHistory.js +0 -36
  273. package/src/svg/EmptyCloud.js +0 -28
  274. package/src/svg/EmptyCloudDanger.js +0 -104
  275. package/src/svg/EmptyContact.js +0 -30
  276. package/src/svg/EmptyConversation.js +0 -29
  277. package/src/svg/EmptyDashboard.js +0 -29
  278. package/src/svg/EmptyEdition.js +0 -29
  279. package/src/svg/EmptyFromAddress.js +0 -29
  280. package/src/svg/EmptyHappiness.js +0 -29
  281. package/src/svg/EmptyHistory.js +0 -36
  282. package/src/svg/EmptyImportHistory.js +0 -29
  283. package/src/svg/EmptyInvoice.js +0 -29
  284. package/src/svg/EmptyNetwork.js +0 -29
  285. package/src/svg/EmptyNotification.js +0 -29
  286. package/src/svg/EmptyProducts.js +0 -29
  287. package/src/svg/EmptyRecycleBin.js +0 -29
  288. package/src/svg/EmptyReports.js +0 -29
  289. package/src/svg/EmptyRoles.js +0 -29
  290. package/src/svg/EmptySearch.js +0 -29
  291. package/src/svg/EmptySkills.js +0 -35
  292. package/src/svg/EmptySnippet.js +0 -35
  293. package/src/svg/EmptyTag.js +0 -29
  294. package/src/svg/EmptyTask.js +0 -29
  295. package/src/svg/EmptyTeams.js +0 -29
  296. package/src/svg/EmptyTemplate.js +0 -30
  297. package/src/svg/EmptyTicket.js +0 -29
  298. package/src/svg/EmptyTimeEntry.js +0 -29
  299. package/src/svg/EmptyTopic.js +0 -29
  300. package/src/svg/EmptyWebhook.js +0 -29
  301. package/src/svg/FailureLog.js +0 -29
  302. package/src/svg/Inconvenience.js +0 -38
  303. package/src/svg/InvalidUrl.js +0 -755
  304. package/src/svg/Loader.js +0 -27
  305. package/src/svg/NoRequestFound.js +0 -38
  306. package/src/svg/PageNotFound.js +0 -38
  307. package/src/svg/SVG.js +0 -88
  308. package/src/svg/SVG.module.css +0 -19
  309. package/src/svg/SitBack.js +0 -29
  310. package/src/svg/UnableToProcessRequest.js +0 -38
  311. package/src/svg/UnauthorizedLogin.js +0 -38
  312. package/src/svg/UrlNotFound.js +0 -38
  313. package/src/svg/WillBeRightBack.js +0 -38
  314. package/src/svg/docs/SVG__default.docs.js +0 -289
  315. package/src/svg/images/EmptyAccounts.svg +0 -55
  316. package/src/svg/images/EmptyActiveCalls.svg +0 -57
  317. package/src/svg/images/EmptyActivity.svg +0 -85
  318. package/src/svg/images/EmptyAgent.svg +0 -52
  319. package/src/svg/images/EmptyArchived.svg +0 -38
  320. package/src/svg/images/EmptyAttach.svg +0 -39
  321. package/src/svg/images/EmptyBlueprint.svg +0 -78
  322. package/src/svg/images/EmptyBusinessHoliday.svg +0 -50
  323. package/src/svg/images/EmptyBusinessHour.svg +0 -42
  324. package/src/svg/images/EmptyCallHistory.svg +0 -46
  325. package/src/svg/images/EmptyCloud.svg +0 -38
  326. package/src/svg/images/EmptyContact.svg +0 -33
  327. package/src/svg/images/EmptyContactInfo.svg +0 -27
  328. package/src/svg/images/EmptyConversation.svg +0 -38
  329. package/src/svg/images/EmptyDashboard.svg +0 -42
  330. package/src/svg/images/EmptyEdition.svg +0 -76
  331. package/src/svg/images/EmptyFilter.svg +0 -62
  332. package/src/svg/images/EmptyFromAddress.svg +0 -41
  333. package/src/svg/images/EmptyHappiness.svg +0 -58
  334. package/src/svg/images/EmptyHistory.svg +0 -44
  335. package/src/svg/images/EmptyImportHistory.svg +0 -43
  336. package/src/svg/images/EmptyInvoice.svg +0 -45
  337. package/src/svg/images/EmptyNetwork.svg +0 -50
  338. package/src/svg/images/EmptyNotification.svg +0 -38
  339. package/src/svg/images/EmptyProducts.svg +0 -57
  340. package/src/svg/images/EmptyRecycleBin.svg +0 -58
  341. package/src/svg/images/EmptyReports.svg +0 -39
  342. package/src/svg/images/EmptyRoles.svg +0 -30
  343. package/src/svg/images/EmptySearch.svg +0 -37
  344. package/src/svg/images/EmptySkills.svg +0 -75
  345. package/src/svg/images/EmptySnippet.svg +0 -46
  346. package/src/svg/images/EmptyTag.svg +0 -43
  347. package/src/svg/images/EmptyTask.svg +0 -42
  348. package/src/svg/images/EmptyTeams.svg +0 -39
  349. package/src/svg/images/EmptyTemplate.svg +0 -39
  350. package/src/svg/images/EmptyTicket.svg +0 -33
  351. package/src/svg/images/EmptyTimeEntry.svg +0 -96
  352. package/src/svg/images/EmptyTopic.svg +0 -41
  353. package/src/svg/images/EmptyWebhook.svg +0 -44
  354. package/src/svg/images/FailureLog.svg +0 -46
  355. package/src/svg/images/Inconvenience.svg +0 -719
  356. package/src/svg/images/Loader.svg +0 -62
  357. package/src/svg/images/NoRequestFound.svg +0 -247
  358. package/src/svg/images/PageNotFound.svg +0 -405
  359. package/src/svg/images/ReguestUrlNotFound.svg +0 -267
  360. package/src/svg/images/SitBack.svg +0 -464
  361. package/src/svg/images/UnableToProcess.svg +0 -752
  362. package/src/svg/images/UnauthorizedLogin.svg +0 -1047
  363. package/src/svg/images/WillBack.svg +0 -633
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
18
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyContract = /*#__PURE__*/function (_React$Component) {
41
+ _inherits(EmptyContract, _React$Component);
42
+
43
+ var _super = _createSuper(EmptyContract);
44
+
45
+ function EmptyContract() {
46
+ _classCallCheck(this, EmptyContract);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(EmptyContract, [{
52
+ key: "render",
53
+ value: function render() {
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "Contract"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyContract_svg__cls-3{fill:var(--zd_emptysvg_tiny_circle)}.EmptyContract_svg__cls-5{fill:var(--zd_emptysvg_cross)}.EmptyContract_svg__cls-4{fill:var(--zd_emptysvg_plus)}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M88.2 67.4s41.2-27.13 62.06-19 35.09 76.86-22.89 107.68S43.15 119.89 42.93 108c-.21-11.5 0-38.9 45.27-40.6z",
59
+ opacity: 0.05,
60
+ fill: "var(--zd_emptysvg_primary_fill)"
61
+ }), /*#__PURE__*/_react["default"].createElement("path", {
62
+ fill: "var(--zd_emptysvg_small_circle)",
63
+ d: "M157.9 150.45a2.5 2.5 0 112.52-2.5 2.51 2.51 0 01-2.52 2.5zm0-4.28a1.78 1.78 0 101.8 1.78 1.79 1.79 0 00-1.8-1.78z"
64
+ }), /*#__PURE__*/_react["default"].createElement("path", {
65
+ d: "M149.26 43.73a3.45 3.45 0 113.47-3.45 3.47 3.47 0 01-3.47 3.45zm0-6.17a2.73 2.73 0 102.74 2.72 2.74 2.74 0 00-2.74-2.72z",
66
+ fill: "var(--zd_emptysvg_medium_circle)"
67
+ }), /*#__PURE__*/_react["default"].createElement("path", {
68
+ className: "EmptyContract_svg__cls-3",
69
+ d: "M82.14 40.64a2.21 2.21 0 112.22-2.2 2.2 2.2 0 01-2.22 2.2zm0-3.68a1.48 1.48 0 101.5 1.48 1.49 1.49 0 00-1.5-1.44z"
70
+ }), /*#__PURE__*/_react["default"].createElement("path", {
71
+ className: "EmptyContract_svg__cls-4",
72
+ d: "M32.36 106.9a.36.36 0 01-.34-.38l.31-5.42a.36.36 0 11.72 0l-.31 5.42a.35.35 0 01-.38.38z"
73
+ }), /*#__PURE__*/_react["default"].createElement("path", {
74
+ className: "EmptyContract_svg__cls-4",
75
+ d: "M35.25 104.34l-5.46-.3a.36.36 0 010-.72l5.46.3a.37.37 0 01.34.38.35.35 0 01-.34.34z"
76
+ }), /*#__PURE__*/_react["default"].createElement("path", {
77
+ className: "EmptyContract_svg__cls-5",
78
+ d: "M170.08 119.92a.35.35 0 01-.26-.12l-3.65-4a.36.36 0 01.54-.49l3.64 4a.36.36 0 010 .51.35.35 0 01-.27.1z"
79
+ }), /*#__PURE__*/_react["default"].createElement("path", {
80
+ className: "EmptyContract_svg__cls-5",
81
+ d: "M166.22 119.7a.36.36 0 01-.27-.12.36.36 0 010-.51l4.08-3.62a.36.36 0 01.48.54l-4.08 3.62a.36.36 0 01-.21.09z"
82
+ }), /*#__PURE__*/_react["default"].createElement("path", {
83
+ d: "M111.8 125.78L113 124a1 1 0 011.89.61l-.06 2.19a1 1 0 001.39 1l2.06-.74a1 1 0 011.17 1.61l-1.34 1.74a1 1 0 00.53 1.62l2.1.62a1 1 0 010 2l-2.1.62a1 1 0 00-.53 1.63l1.34 1.73a1 1 0 01-1.17 1.61l-2.06-.73a1 1 0 00-1.39 1l.06 2.19a1 1 0 01-1.89.62l-1.24-1.81a1 1 0 00-1.71 0l-1.23 1.81a1 1 0 01-1.9-.62l.06-2.19a1 1 0 00-1.38-1l-2.06.73a1 1 0 01-1.17-1.61l1.33-1.73a1 1 0 00-.53-1.63l-2.1-.62a1 1 0 010-2l2.1-.62a1 1 0 00.53-1.62l-1.33-1.74a1 1 0 011.17-1.61l2.06.74a1 1 0 001.38-1l-.06-2.19a1 1 0 011.9-.61l1.23 1.8a1 1 0 001.75-.02zm36.07-22.6S129 144.1 129.07 145.4l5.9 2s19.33-40.82 18.84-41.72-5.94-2.5-5.94-2.5z",
84
+ opacity: 0.3,
85
+ fill: "var(--zd_emptysvg_primary_fill)"
86
+ }), /*#__PURE__*/_react["default"].createElement("path", {
87
+ fill: "var(--zd_emptysvg_primary_stroke)",
88
+ d: "M127.87 154.71a.7.7 0 01-.37-.11c-.41-.28-.69-.85.07-5a77.8 77.8 0 013.18-12c9-25.7 14.51-42.58 14.27-44a1.42 1.42 0 00-.49-.75c-.16.7-.34 1.47-.55 2.29a260.54 260.54 0 01-12.3 35.71c-4.28 10-10.42 22.15-15.27 23.44a10.49 10.49 0 01-2.7.31c-11.71 0-37.5-13.07-43-17.7-.91-.76-1.27-1.29-1.23-1.76.26-2.91 24.89-60.73 28.12-63.37a.79.79 0 01.59-.21c1.85.21 33.39 12.4 34.78 15.19a3.59 3.59 0 01.24.63h.14a.5.5 0 01.34 0c1.43.36 7 1.85 10.15 3.75 1.1-5.43.5-6.09.47-6.12-2.56-2.38-34.16-15.41-50.92-22.14a15.5 15.5 0 01-2.24 3.48 6.08 6.08 0 011.08 2.14c.56 1.83-.18 3.61-2 4.89a7.86 7.86 0 01-2 1 9.14 9.14 0 01-.14 3.26 2.57 2.57 0 01-1.46 1.88 7.48 7.48 0 01.27 4.25 4.73 4.73 0 01-3.36 3.67 9.44 9.44 0 01-1.09 6.84 5.34 5.34 0 01-2.5 2.47 5.55 5.55 0 01-.1 1.67 6 6 0 01-3.23 4.07 3.45 3.45 0 01-.79.24c.66 2.83.51 6-.54 7.24a2.72 2.72 0 01-2.53.73 13.24 13.24 0 01-1.08 5 5.89 5.89 0 01-2 2.6c.07.29.13.59.18.93.47 3.21-.75 4.84-1.85 5.63a4.92 4.92 0 01-1.45.72 8.11 8.11 0 011.24 4.24c0 2.18-.81 4.08-2.05 4.61-.61.26-1.62.31-3-.93a4.53 4.53 0 01-.49-.49 6.67 6.67 0 01-4.19 4.9 68.76 68.76 0 01-7.82 1.29.53.53 0 01-.58-.46.52.52 0 01.46-.57 70.1 70.1 0 007.64-1.25c2.15-.65 3.28-2.89 3.66-4.93-1-1.35-1.61-2.94-1.33-3.83a1 1 0 01.87-.72c.35 0 1.2 0 1.53 1.6a7.9 7.9 0 010 2.68c.09.12.18.24.28.35 1 1.12 1.92 1.66 2.52 1.4s1.45-1.68 1.42-3.63a7.53 7.53 0 00-1.29-4 8.16 8.16 0 01-4.54-.76c-1.1-.54-1.69-1.11-1.8-1.74a1.3 1.3 0 01.37-1.14 2 2 0 012.24-.46 10.17 10.17 0 014.19 3 4.18 4.18 0 001.47-.67c1.25-.9 1.75-2.51 1.43-4.64a4.82 4.82 0 00-.1-.57 4.81 4.81 0 01-1.6.31 4.71 4.71 0 01-4.09-2.28 1.4 1.4 0 01.27-1.54 3.38 3.38 0 013.39-.81 4.17 4.17 0 012.69 2.62 5.06 5.06 0 001.38-2 11.78 11.78 0 001-4.82 8 8 0 01-.82-.28c-1.49-.57-3.68-1.91-3.62-3.26 0-.34.19-1 1.24-1.28a2.74 2.74 0 013 .79 5.55 5.55 0 011.2 3.18 2 2 0 001.79-.34c.78-.94.92-3.91.26-6.56a7.18 7.18 0 01-3.76-1.8c-1-.88-1.4-1.74-1.16-2.43.13-.39.53-.87 1.68-.94 1.35-.08 2.52.8 3.39 2.55a9.53 9.53 0 01.64 1.6 2 2 0 00.62-.17 4.92 4.92 0 002.67-3.35 4.35 4.35 0 00.05-1.05l-.44.05a5.91 5.91 0 01-4.89-2.18 1.88 1.88 0 01.16-2.72c1.06-.86 3.09-.71 4.76 1.27a6.05 6.05 0 011.22 2.21 4.55 4.55 0 001.8-1.92 8.4 8.4 0 001-6.13 7 7 0 01-1.14.06c-2.41-.06-5.17-1.23-5.44-2.88a2 2 0 01.49-1.88 3.05 3.05 0 012.45-.56H79a7.79 7.79 0 014.21 4 3.58 3.58 0 002.67-2.9 6.38 6.38 0 00-.25-3.73 3.19 3.19 0 01-.54.05c-2.29.09-5.21-1.24-5.6-2.54a1.09 1.09 0 01.51-1.26 4.2 4.2 0 014.38.62 6.42 6.42 0 011.76 1.92 1.63 1.63 0 00.9-1.17 8.53 8.53 0 00.13-2.77 5.91 5.91 0 01-4.85-.87c-1.27-1-1.76-1.92-1.47-2.74.43-1.24 2.47-1.57 3.6-1.57a3.05 3.05 0 012.29 1.3A6.9 6.9 0 0188 73.24a6.89 6.89 0 001.58-.8 3.35 3.35 0 001.65-3.73 5.41 5.41 0 00-.85-1.71 1.56 1.56 0 01-1.49.27 1.05 1.05 0 01-.76-1.11 1.11 1.11 0 011.09-.84 1.93 1.93 0 011.15.31 16.25 16.25 0 002.29-3.68.53.53 0 01.67-.27c2 .79 48.31 19.4 51.69 22.53.32.3 1.11 1-.25 7.5a3 3 0 011.28 1.69c.39 2.22-8.8 28.87-14.32 44.56a76.76 76.76 0 00-3.14 11.81 23.68 23.68 0 00-.46 3.68 26.69 26.69 0 005-5.6 19.81 19.81 0 01-3.32-1 .56.56 0 01-.31-.55c0-.4.43-.63.78-.78 1-.42 2.93-.71 4 .24a1.14 1.14 0 01.36 1 .76.76 0 010 .21c1-1.69 8.66-18.89 13.28-29.28 2.79-6.27 4.81-10.8 5.05-11.25a.55.55 0 01.72-.31c.46.21.34.58.08 1.34-.15.43-.36 1-.62 1.76-.79 2.24-2.67 7.59-3.13 9.82 1.75-2.73 5.8-12.38 5.82-14.12-.34-.19-1.25-.54-2.05-.85-.18.42-.35.79-.48 1.1a.5.5 0 01-.33.29.55.55 0 01-.43-.06c-1.85-1.17-3.83-2.06-4.33-2-.32.82-3.09 7.16-8.22 18.86a.52.52 0 01-1-.41c6.59-15 8.11-18.54 8.23-18.87a.89.89 0 01.57-.55c1-.36 3.5 1 4.75 1.73.08-.17.15-.34.22-.51-2.68-1-3.57-1.46-3.75-2a.65.65 0 01.09-.59c.09-.14.27-.45.47-.81 1.61-2.8 2.74-4.42 3.8-4.43a3.39 3.39 0 012.36 1 1.43 1.43 0 01.46 1 53.12 53.12 0 01-2.07 5.2 10.89 10.89 0 012.44 1.09c.32.28.31.76 0 1.94a71.34 71.34 0 01-3.24 8.53c-2.6 5.84-3.35 6-3.67 6a.63.63 0 01-.62-.21c-.33-.37-.31-1.26.61-4.29-.28.62-.56 1.24-.84 1.88-11.85 26.58-13.24 29.47-13.61 29.72a1.7 1.7 0 01-1 .17 25 25 0 01-5.93 6.61.73.73 0 01-.4.24zm-57.35-19.57c.38 1.13 8.16 6.09 19.18 11.08 12.42 5.62 22.06 8.17 26.44 7 7.87-2.1 22-39.16 26.69-57.84.32-1.23.57-2.32.78-3.28a43 43 0 00-10.06-3.77h-.16c.32 3.16-1.15 8.07-2.46 9.12-.26.2-.64.23-1.33.1-3.26-.65-13.07-5-17.14-6.8-1.35-.61-13.21-6-13.68-6.81s.48-5.29 1.91-7.21a2.29 2.29 0 012.38-1.17c1 .23 5.4 2 11 4.35 6 2.47 14.41 6 17.89 7.07-.87-.85-5.57-3.34-16.46-7.86-8.18-3.4-15.87-6.27-17.25-6.57-1 .92-5.42 9.51-14.75 31-7.15 16.36-12.79 30.3-12.98 31.59zm60.74 11.1c.69.21 1.59.46 2.3.6a1.77 1.77 0 000-.2v-.15a2.83 2.83 0 00-2.3-.25zm-60.75-11.12zm-9.41-6.74c-.12.18 0 .89.49 1.77a5.58 5.58 0 00-.1-1c-.12-.54-.31-.77-.39-.77zm-.17-5.85a.92.92 0 00-.68.28c-.13.14-.12.22-.11.25s.13.44 1.24 1a7.13 7.13 0 003.29.72 9.1 9.1 0 00-3.32-2.16 1.25 1.25 0 00-.42-.09zm4.69-7.1A2.15 2.15 0 0064 116c-.2.23-.14.38-.11.42a3.69 3.69 0 003.16 1.58h.06a3.7 3.7 0 001.32-.27 3.32 3.32 0 00-2.07-2.19 2.74 2.74 0 00-.74-.11zm3.84-9a2.28 2.28 0 00-.66.11c-.24.07-.5.19-.5.32 0 .45 1.12 1.54 3 2.25l.36.13a4.38 4.38 0 00-.89-2.22 1.64 1.64 0 00-1.31-.57zm80.66-5.07a20.21 20.21 0 003.07 1.34c1-2.35 1.9-4.5 2-4.92a2.16 2.16 0 00-1.78-1c-.3 0-1.06.68-2.91 3.91zM71.66 98.5h-.1c-.55 0-.74.18-.76.25s.1.62.87 1.31a6.57 6.57 0 002.74 1.46 8.29 8.29 0 00-.45-1c-.45-.96-1.22-2.02-2.3-2.02zm28-15.09c1.9 1.48 28.29 13.46 30.64 13.19a9.67 9.67 0 001.7-4.25 12.65 12.65 0 00.3-4.17c-2.14-.54-7-2.45-18.71-7.3-5.06-2.1-9.84-4.09-10.78-4.3-.13 0-.54-.12-1.13.55a11.72 11.72 0 00-1.99 6.28zm-24.41 9.25a1.38 1.38 0 00-.86.26c-.37.31-.37.78 0 1.28a5 5 0 004 1.78h.35a5.13 5.13 0 00-1-1.88 3.39 3.39 0 00-2.49-1.44zm58-5.26zm-55-4.13a1.59 1.59 0 00-1.08.31 1.08 1.08 0 00-.19 1c.14.86 2.21 2 4.43 2a6.78 6.78 0 00.76 0 6.77 6.77 0 00-3.52-3.24zm3.3-6.68a1.85 1.85 0 00-1 .24.35.35 0 00-.1.08c0 .38 1.75 1.58 3.84 1.79a4 4 0 00.78 0 5.3 5.3 0 00-1.28-1.31 4.13 4.13 0 00-2.27-.8zm3-6.19c-1.26 0-2.46.4-2.62.87s.3.93 1.13 1.58a4.9 4.9 0 004 .67 5.84 5.84 0 00-1-2.21 2.1 2.1 0 00-1.59-.91z"
89
+ }));
90
+ }
91
+ }]);
92
+
93
+ return EmptyContract;
94
+ }(_react["default"].Component);
95
+
96
+ exports["default"] = EmptyContract;
97
+ EmptyContract.propTypes = {
98
+ alignHorizontal: _propTypes["default"].bool,
99
+ className: _propTypes["default"].string,
100
+ dataId: _propTypes["default"].string,
101
+ isRender: _propTypes["default"].bool,
102
+ size: _propTypes["default"].oneOf(['small', 'large']),
103
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
104
+ };
105
+ EmptyContract.defaultProps = {
106
+ size: 'large',
107
+ alignHorizontal: true,
108
+ isRender: true,
109
+ className: '',
110
+ dataId: 'EmptyContract',
111
+ palette: 'default'
112
+ };
113
+
114
+ if (false) {
115
+ EmptyContract.docs = {
116
+ componentGroup: 'SVG'
117
+ };
118
+ }
@@ -1,74 +1,118 @@
1
- 'use strict';
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
4
 
3
5
  Object.defineProperty(exports, "__esModule", {
4
6
  value: true
5
7
  });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
6
11
 
7
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
8
13
 
9
- var _react = require('react');
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
10
15
 
11
- var _react2 = _interopRequireDefault(_react);
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
17
 
13
- var _propTypes = require('prop-types');
18
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
19
 
15
- var _propTypes2 = _interopRequireDefault(_propTypes);
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16
21
 
17
- var _SVG = require('./SVG');
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
18
23
 
19
- var _SVG2 = _interopRequireDefault(_SVG);
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
20
25
 
21
- var _EmptyConversation = require('./images/EmptyConversation.svg');
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
22
27
 
23
- var _EmptyConversation2 = _interopRequireDefault(_EmptyConversation);
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
24
29
 
25
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
26
31
 
27
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
28
33
 
29
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
30
35
 
31
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
32
37
 
33
- var EmptyConversation = function (_React$Component) {
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyConversation = /*#__PURE__*/function (_React$Component) {
34
41
  _inherits(EmptyConversation, _React$Component);
35
42
 
43
+ var _super = _createSuper(EmptyConversation);
44
+
36
45
  function EmptyConversation() {
37
46
  _classCallCheck(this, EmptyConversation);
38
47
 
39
- return _possibleConstructorReturn(this, (EmptyConversation.__proto__ || Object.getPrototypeOf(EmptyConversation)).apply(this, arguments));
48
+ return _super.apply(this, arguments);
40
49
  }
41
50
 
42
51
  _createClass(EmptyConversation, [{
43
- key: 'render',
52
+ key: "render",
44
53
  value: function render() {
45
- var _props = this.props,
46
- size = _props.size,
47
- _props$className = _props.className,
48
- className = _props$className === undefined ? '' : _props$className,
49
- alignHorizontal = _props.alignHorizontal;
50
-
51
- return _react2.default.createElement(
52
- _SVG2.default,
53
- { viewBox: '0 0 181.9 139.3', name: 'conversation', size: size, className: className, alignHorizontal: alignHorizontal },
54
- _react2.default.createElement('image', { xlinkHref: _EmptyConversation2.default, height: '100%', width: '100%' })
55
- );
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "conversation"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyConversation_svg__cls-4,.EmptyConversation_svg__cls-5,.EmptyConversation_svg__cls-6,.EmptyConversation_svg__cls-7,.EmptyConversation_svg__cls-8{fill:none}.EmptyConversation_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyConversation_svg__cls-7{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyConversation_svg__cls-5,.EmptyConversation_svg__cls-6{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyConversation_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyConversation_svg__cls-8{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M86.51 62.52S133.43 31.67 157.17 41s40 87.37-26.06 122.41S35.22 122.19 35 108.68c-.28-13.07 0-44.23 51.51-46.16z",
59
+ fill: "var(--zd_emptysvg_primary_fill)",
60
+ opacity: 0.05
61
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
62
+ cx: 156.04,
63
+ cy: 31.69,
64
+ rx: 3.54,
65
+ ry: 3.51,
66
+ strokeMiterlimit: 10,
67
+ stroke: "var(--zd_emptysvg_medium_circle)",
68
+ fill: "none"
69
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
70
+ className: "EmptyConversation_svg__cls-4",
71
+ cx: 79.62,
72
+ cy: 29.6,
73
+ rx: 2.12,
74
+ ry: 2.1
75
+ }), /*#__PURE__*/_react["default"].createElement("path", {
76
+ className: "EmptyConversation_svg__cls-5",
77
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
78
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
79
+ className: "EmptyConversation_svg__cls-8",
80
+ cx: 165.88,
81
+ cy: 154.09,
82
+ rx: 2.45,
83
+ ry: 2.43
84
+ }), /*#__PURE__*/_react["default"].createElement("path", {
85
+ className: "EmptyConversation_svg__cls-7",
86
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
87
+ }), /*#__PURE__*/_react["default"].createElement("path", {
88
+ d: "M136.38 150.44l-17.73-19.81s-32.15 1.18-40.2-1.23-6.27-4-6.37-6.75.93-35 1-35.53.28-3.4.28-3.4a3.37 3.37 0 012.38-3.37c2.6-.91 55.59-10 73.83-3.59 0 0 4.47 6.25 2.43 26.43s-.75 23.12-5.73 24.4-8.73 1.94-8 6.67 2.64 18.91-1.89 16.18z",
89
+ fill: "var(--zd_emptysvg_secondary_fill)"
90
+ }), /*#__PURE__*/_react["default"].createElement("path", {
91
+ className: "EmptyConversation_svg__cls-6",
92
+ d: "M82.63 136.74h-9.26a3 3 0 00-2.53 1.41s-8.93 13.66-9.47 15.11.56 2.6 1.33 1.13-.24-16.6-.24-16.6a3 3 0 00-3.12-2.94c-3.49.18-8.79.36-9.9-.19-1.68-.83-3.36-64.15 0-67.06s63-5 71.42-2.5 0 61.63 0 64.35-48.74 2.29-50.42-2.29 0-38.74.84-45 70.58-10.83 76-5.41c4.55 4.5 1.53 36.11.39 46.61a4.91 4.91 0 01-3.69 4.22l-5 1.28a3 3 0 00-2.22 2.85v17.72a1.52 1.52 0 01-2.65 1l-22.25-24.86a5.56 5.56 0 00-3.93-1.84l-18.57-.67c-1.27 0-2.54-.15-3.8-.29l-13.11-1.51a.85.85 0 01-.75-.85l.67-59s-.9-1.57 5.42-1.8 31.16 0 31.16 0"
93
+ }));
56
94
  }
57
95
  }]);
58
96
 
59
97
  return EmptyConversation;
60
- }(_react2.default.Component);
61
-
62
- exports.default = EmptyConversation;
98
+ }(_react["default"].Component);
63
99
 
100
+ exports["default"] = EmptyConversation;
64
101
  EmptyConversation.propTypes = {
65
- size: _propTypes2.default.oneOf('small', 'large'),
66
- className: _propTypes2.default.string,
67
- alignHorizontal: _propTypes2.default.bool
102
+ alignHorizontal: _propTypes["default"].bool,
103
+ className: _propTypes["default"].string,
104
+ dataId: _propTypes["default"].string,
105
+ isRender: _propTypes["default"].bool,
106
+ size: _propTypes["default"].oneOf(['small', 'large']),
107
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
68
108
  };
69
109
  EmptyConversation.defaultProps = {
70
110
  size: 'large',
71
- alignHorizontal: true
111
+ alignHorizontal: true,
112
+ isRender: true,
113
+ className: '',
114
+ dataId: 'emptyConversation',
115
+ palette: 'default'
72
116
  };
73
117
 
74
118
  if (false) {
@@ -0,0 +1,122 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
18
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyCrm = /*#__PURE__*/function (_React$Component) {
41
+ _inherits(EmptyCrm, _React$Component);
42
+
43
+ var _super = _createSuper(EmptyCrm);
44
+
45
+ function EmptyCrm() {
46
+ _classCallCheck(this, EmptyCrm);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(EmptyCrm, [{
52
+ key: "render",
53
+ value: function render() {
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "Feed"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyCrm_svg__cls-7{fill:var(--zd_emptysvg_secondary_fill)}.EmptyCrm_svg__cls-4,.EmptyCrm_svg__cls-5,.EmptyCrm_svg__cls-6,.EmptyCrm_svg__cls-8,.EmptyCrm_svg__cls-9{fill:none}.EmptyCrm_svg__cls-4{stroke-miterlimit:10;stroke:var(--zd_emptysvg_tiny_circle)}.EmptyCrm_svg__cls-8{stroke-miterlimit:10;stroke:var(--zd_emptysvg_cross)}.EmptyCrm_svg__cls-5,.EmptyCrm_svg__cls-6{stroke:var(--zd_emptysvg_plus);stroke-linecap:round;stroke-linejoin:round}.EmptyCrm_svg__cls-6{stroke:var(--zd_emptysvg_primary_stroke)}.EmptyCrm_svg__cls-9{stroke:var(--zd_emptysvg_small_circle);stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M86.51 62.52S133.43 31.67 157.17 41s40 87.37-26.06 122.41S35.22 122.19 35 108.68c-.28-13.07 0-44.23 51.51-46.16z",
59
+ fill: "var(--zd_emptysvg_primary_fill)",
60
+ opacity: 0.05
61
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
62
+ cx: 156.04,
63
+ cy: 31.69,
64
+ rx: 3.54,
65
+ ry: 3.51,
66
+ strokeMiterlimit: 10,
67
+ stroke: "var(--zd_emptysvg_medium_circle)",
68
+ fill: "none"
69
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
70
+ className: "EmptyCrm_svg__cls-4",
71
+ cx: 79.62,
72
+ cy: 29.6,
73
+ rx: 2.12,
74
+ ry: 2.1
75
+ }), /*#__PURE__*/_react["default"].createElement("path", {
76
+ className: "EmptyCrm_svg__cls-5",
77
+ d: "M23.28 100.86l-.35 6.16M20 103.76l6.22.35"
78
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
79
+ className: "EmptyCrm_svg__cls-9",
80
+ cx: 165.88,
81
+ cy: 154.09,
82
+ rx: 2.45,
83
+ ry: 2.43
84
+ }), /*#__PURE__*/_react["default"].createElement("path", {
85
+ className: "EmptyCrm_svg__cls-8",
86
+ d: "M175.6 117.21l4.15 4.6M175.36 121.57l4.64-4.12"
87
+ }), /*#__PURE__*/_react["default"].createElement("path", {
88
+ className: "EmptyCrm_svg__cls-7",
89
+ d: "M60.9 101.22l17 7.58s3.61 1 6.42-3.79 7.06-14.65 7.41-17.08.48-5-3.34-6.44S74 77.4 74 77.4s-.15 6.46-1.35 9.41S59.42 99 60.9 101.22zM170.64 74.38l-32.49 8.05s7.51 3.84 9.19 15.53-8.1 13.08-8.1 13.08 15.55 4.1 29.16-1.25c0 0 2.32-1.91 2.32-6.81s1.66-16.08-.08-28.6z"
90
+ }), /*#__PURE__*/_react["default"].createElement("path", {
91
+ className: "EmptyCrm_svg__cls-6",
92
+ d: "M30.38 95.65s15.76-.15 23.44 3.26 9.33 1.92 9.78 3.07-3.1 1.28-2.72-1.67S72.28 90.69 73.25 85s1.23-10.59-.78-10.59.39 3.15 3.69 3.92 7.64 2.24 11.52 3 5.11 2.83 4.08 6.62c0 0-5.45 20.12-12.46 20.83s-13.89-6.53-13.89-6.53 12.93 7.66 16.12 7.66c3 0 12-16.55 11.7-24.08a.74.74 0 011-.73c1.74.7 5 2 6.31 2.36 2.48.7 5.62-.66 9.11-4a7.49 7.49 0 015.18-2.06c3.31 0 8.11.53 10.06 3.21 3.13 4.27-1 8.84 1 11.56s3.89 6.72.8 7.35c-2.69.54-2.85 0-2.85 0s1.82 3.77.15 5.35a4.48 4.48 0 01-4.11.83s1.37 2.65-.23 3.63a2.06 2.06 0 01-2.59 0s1.14 3.69-3.73 4.75c0 0-2.89 3.77-5-.9 0 0-4.95 4-4.79-2.72 0 0-5.41 4.6-4.57-3.85 0 0-.06-.63.71-.41s17.55 10.74 20 9.85 1.64-3.6 1.19-4.06-2.36-1.09-2.28-.62 4.52 3 6.37 1.18-.29-6-1.2-5.87.62 3.09 2.52 3.61 5.95.18 4.58-4-3.25-4.7-3.18-4.36 2.34 4.79 6.53 5.21 2-5.75-1-8-3.87-5.48-3.23-6.35 2.65-.72 3-.13a1.26 1.26 0 01-.73 1.91c-1.05.28-8.56-1.41-10.22-6.45a15.81 15.81 0 01-2.93 1.49s-4.8 8.46-8 7.18.34-10.73 1.73-11.72c.25-.18 7.13-5 18.19-4.45a6.82 6.82 0 013.39 1.08c2.49 1.6 7.12 5.27 8.65 11.15 2.13 8.2-5.31 12.5-4.82 13.8s7.09-.48 8.61-5.74.34-17.82-8.75-22.47c0 0-1.22-.37-1.12 0s5.2-.31 7.42-1.43 26.19-6.67 26.19-6.67 2.51 31.81-2.24 35.41-23.15 2.76-23.15 2.76"
93
+ }));
94
+ }
95
+ }]);
96
+
97
+ return EmptyCrm;
98
+ }(_react["default"].Component);
99
+
100
+ exports["default"] = EmptyCrm;
101
+ EmptyCrm.propTypes = {
102
+ alignHorizontal: _propTypes["default"].bool,
103
+ className: _propTypes["default"].string,
104
+ dataId: _propTypes["default"].string,
105
+ isRender: _propTypes["default"].bool,
106
+ size: _propTypes["default"].oneOf(['small', 'large']),
107
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
108
+ };
109
+ EmptyCrm.defaultProps = {
110
+ size: 'large',
111
+ alignHorizontal: true,
112
+ isRender: true,
113
+ className: '',
114
+ dataId: 'EmptyFeed',
115
+ palette: 'default'
116
+ };
117
+
118
+ if (false) {
119
+ EmptyCrm.docs = {
120
+ componentGroup: 'SVG'
121
+ };
122
+ }
@@ -0,0 +1,133 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _SVG = _interopRequireDefault(require("./SVG"));
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
18
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var EmptyCrmNotes = /*#__PURE__*/function (_React$Component) {
41
+ _inherits(EmptyCrmNotes, _React$Component);
42
+
43
+ var _super = _createSuper(EmptyCrmNotes);
44
+
45
+ function EmptyCrmNotes() {
46
+ _classCallCheck(this, EmptyCrmNotes);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(EmptyCrmNotes, [{
52
+ key: "render",
53
+ value: function render() {
54
+ return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
55
+ viewBox: "0 0 200 200",
56
+ name: "crmnotes"
57
+ }, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".EmptyCrmNotes_svg__cls-4,.EmptyCrmNotes_svg__cls-6{fill:none;stroke-width:.65px}.EmptyCrmNotes_svg__cls-6{stroke:var(--zd_emptysvg_cross)}.EmptyCrmNotes_svg__cls-4{stroke:var(--zd_emptysvg_plus)}.EmptyCrmNotes_svg__cls-4,.EmptyCrmNotes_svg__cls-6{stroke-linecap:round;stroke-linejoin:round}")), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M75.45 63.13s42.51-27.95 64-19.54 36.21 79.17-23.62 110.92S29 117.2 28.74 105c-.22-11.89 0-40.12 46.71-41.87z",
59
+ opacity: 0.05,
60
+ fill: "var(--zd_emptysvg_primary_fill)"
61
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
62
+ cx: 138.45,
63
+ cy: 35.2,
64
+ rx: 3.21,
65
+ ry: 3.18,
66
+ strokeWidth: 0.65,
67
+ strokeMiterlimit: 10,
68
+ stroke: "var(--zd_emptysvg_medium_circle)",
69
+ fill: "none"
70
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
71
+ cx: 69.2,
72
+ cy: 33.3,
73
+ rx: 1.92,
74
+ ry: 1.9,
75
+ stroke: "var(--zd_emptysvg_tiny_circle)",
76
+ strokeWidth: 0.65,
77
+ strokeMiterlimit: 10,
78
+ fill: "none"
79
+ }), /*#__PURE__*/_react["default"].createElement("path", {
80
+ className: "EmptyCrmNotes_svg__cls-4",
81
+ d: "M18.16 97.87l-.32 5.58M15.18 100.5l5.64.32"
82
+ }), /*#__PURE__*/_react["default"].createElement("ellipse", {
83
+ cx: 160.05,
84
+ cy: 146.1,
85
+ rx: 2.22,
86
+ ry: 2.21,
87
+ stroke: "var(--zd_emptysvg_small_circle)",
88
+ strokeLinecap: "round",
89
+ strokeLinejoin: "round",
90
+ strokeWidth: 0.65,
91
+ fill: "none"
92
+ }), /*#__PURE__*/_react["default"].createElement("path", {
93
+ className: "EmptyCrmNotes_svg__cls-6",
94
+ d: "M167.17 122.68l3.76 4.18M166.95 126.63l4.21-3.72"
95
+ }), /*#__PURE__*/_react["default"].createElement("path", {
96
+ d: "M126.08 72.74l.14-10.41-47.28.06L78 84.1l-22.1-1.19.43 63.23s61.77 2.5 71.33-.16l.41-56.09-18.37 25.63-14.2 6.56s-1.63.56-1.3-1.71 6.3-13.56 6.3-13.56z",
97
+ fill: "var(--zd_emptysvg_secondary_fill)"
98
+ }), /*#__PURE__*/_react["default"].createElement("path", {
99
+ d: "M115.79 123s-48.59 2.46-48.59-.27 30 0 30 0l8.64-5-10.21 3.71a1 1 0 01-1.46-1.11l5.06-12.61 9.27 9s-8.89-3.29-8-10c0 0 41.9-57.54 44.16-56.3s10.47 5.63 7.06 8.62l-6.11 8s-13.31-5.8-11.11-7.61c1.25-1 9.65 8.4 9.65 8.4S110.22 116 109.7 115.52c-2.23-1.93 16.48-25.49 18.39-25.63l-.41 56.11s-69.39 2.9-71.33.16-.32-64-.32-64 20.49-20.9 21.46-19.93S78 84.1 78 84.1l-20.2-1.22 21.79-1.45-.65-19s47.12-1.29 47.44.48l.14 5.47",
100
+ stroke: "var(--zd_emptysvg_primary_stroke)",
101
+ strokeLinecap: "round",
102
+ strokeLinejoin: "round",
103
+ fill: "none"
104
+ }));
105
+ }
106
+ }]);
107
+
108
+ return EmptyCrmNotes;
109
+ }(_react["default"].Component);
110
+
111
+ exports["default"] = EmptyCrmNotes;
112
+ EmptyCrmNotes.propTypes = {
113
+ alignHorizontal: _propTypes["default"].bool,
114
+ className: _propTypes["default"].string,
115
+ dataId: _propTypes["default"].string,
116
+ isRender: _propTypes["default"].bool,
117
+ size: _propTypes["default"].oneOf(['small', 'large']),
118
+ palette: _propTypes["default"].oneOf(['default', 'dark'])
119
+ };
120
+ EmptyCrmNotes.defaultProps = {
121
+ size: 'large',
122
+ alignHorizontal: true,
123
+ isRender: true,
124
+ className: '',
125
+ dataId: 'emptyCrmNotes',
126
+ palette: 'default'
127
+ };
128
+
129
+ if (false) {
130
+ EmptyCrmNotes.docs = {
131
+ componentGroup: 'SVG'
132
+ };
133
+ }