@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,114 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class UnableToProcessRequest extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 500 500",
10
+ name: "UnableToProcessRequest"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".ErrorUnableToProcessRequest_svg__cls-1{fill:var(--zd_emptysvg_primary_fill);opacity:.05}.ErrorUnableToProcessRequest_svg__cls-10,.ErrorUnableToProcessRequest_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorUnableToProcessRequest_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorUnableToProcessRequest_svg__cls-8{stroke:var(--zd_emptysvg_plus))}")), /*#__PURE__*/React.createElement("path", {
12
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
13
+ d: "M147.82 163s33.78-54.77 54.77-11 32.87 82.16 94 33.78 86.73-55.69 109.55-25.57S450.46 446.92 227.24 394c0 0-176.65-66.68-79.42-231z"
14
+ }), /*#__PURE__*/React.createElement("circle", {
15
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
16
+ cx: 104.8,
17
+ cy: 371.02,
18
+ r: 25.39
19
+ }), /*#__PURE__*/React.createElement("circle", {
20
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
21
+ cx: 88.11,
22
+ cy: 127.46,
23
+ r: 25.39
24
+ }), /*#__PURE__*/React.createElement("circle", {
25
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
26
+ cx: 305.58,
27
+ cy: 80.1,
28
+ r: 12.74
29
+ }), /*#__PURE__*/React.createElement("circle", {
30
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
31
+ cx: 154.07,
32
+ cy: 416.31,
33
+ r: 12.74
34
+ }), /*#__PURE__*/React.createElement("circle", {
35
+ className: "ErrorUnableToProcessRequest_svg__cls-1",
36
+ cx: 388.36,
37
+ cy: 404.29,
38
+ r: 12.74
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M297 255.54s-110.07 41.88-93 62.4 36.49 23.37 19.38 54.15-.57 37.63 12 37.63 47.47-5.82 54.89-21.78 6.73-132.4 6.73-132.4z",
41
+ opacity: 0.2,
42
+ fill: "var(--zd_emptysvg_primary_fill)"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M233.85 228.91s51.63 1.49 50.52 13.36-88.71 13.37-105-3 101.33-17.25 120.26.84-86.11 31.46-126.2 4.36c0 0-2-2.64 0-3.93s1.83 88.22-.87 95.27-21.28 21.77-35.69 15.05-14.41-28.18-14.73-39.71-1-38.74 24-40.34 27.54 21.45 30.43 35.54 0-63.08-8-63.08-52.52 12.17-57 34.26-5.76 71.73 10.89 83.58 46.75 7.68 50.59 13.76.92 13.91 4.35 17.91 53.12 47.29 111.71 4.71a15.46 15.46 0 006.35-12l.72-19.46a3.07 3.07 0 00-3.81-3.1c-14.64 3.6-66.91 14.15-109.25-6.77 0 0-2.29-10.87 5.71-9.15 7 1.49 65.43 15.1 92.94 7.7a20.09 20.09 0 0114.66 2c1.55.82 3.41.54 5.46-2.26 5.88-8 78.5-143.52 75.07-160.68s-23.44-41.74-37.74-40.6-72.62 17.16-72.62 17.16-48-13.16-52.61-6.87 29.75 66 48.61 60.62c15-4.27-31.45-58.33-40-59.47s16 43.46 34.88 53.18 14.87-21.73 20-25.73 53.75-24 62.9-21.16 21.73 20.58 18.87 33.16-56 83.49-59.47 85.2.4-40.64 1.41-39.47-1.51 50.18-1.14 52-64 22.67-111.87-3.72c0 0-3.23-4.67.34-4.67s56.51 25.24 108.34 2.9",
45
+ strokeLinecap: "round",
46
+ strokeLinejoin: "round",
47
+ stroke: "var(--zd_emptysvg_primary_stroke)",
48
+ strokeWidth: 1.5,
49
+ fill: "none"
50
+ }), /*#__PURE__*/React.createElement("ellipse", {
51
+ cx: 262.76,
52
+ cy: 118.03,
53
+ rx: 3.54,
54
+ ry: 3.51,
55
+ strokeMiterlimit: 10,
56
+ stroke: "var(--zd_emptysvg_medium_circle)",
57
+ fill: "none"
58
+ }), /*#__PURE__*/React.createElement("ellipse", {
59
+ cx: 268.03,
60
+ cy: 418.99,
61
+ rx: 3.54,
62
+ ry: 3.51,
63
+ fill: "var(--zd_emptysvg_medium_circle)"
64
+ }), /*#__PURE__*/React.createElement("ellipse", {
65
+ cx: 73.6,
66
+ cy: 269.02,
67
+ rx: 3.31,
68
+ ry: 3.28,
69
+ stroke: "var(--zd_emptysvg_tiny_circle)",
70
+ strokeMiterlimit: 10,
71
+ fill: "none"
72
+ }), /*#__PURE__*/React.createElement("ellipse", {
73
+ cx: 447.7,
74
+ cy: 274.29,
75
+ rx: 3.31,
76
+ ry: 3.28,
77
+ fill: "var(--zd_emptysvg_tiny_circle)"
78
+ }), /*#__PURE__*/React.createElement("path", {
79
+ className: "ErrorUnableToProcessRequest_svg__cls-8",
80
+ d: "M125.09 158.74l-.35 6.18M121.8 161.66l6.23.35"
81
+ }), /*#__PURE__*/React.createElement("ellipse", {
82
+ cx: 405.86,
83
+ cy: 376.16,
84
+ rx: 2.46,
85
+ ry: 2.44,
86
+ stroke: "var(--zd_emptysvg_small_circle)",
87
+ strokeLinecap: "round",
88
+ strokeLinejoin: "round",
89
+ fill: "none"
90
+ }), /*#__PURE__*/React.createElement("path", {
91
+ className: "ErrorUnableToProcessRequest_svg__cls-10",
92
+ d: "M404.92 114.3l4.16 4.61M404.68 118.67l4.65-4.13"
93
+ }));
94
+ }
95
+
96
+ }
97
+ UnableToProcessRequest.propTypes = {
98
+ alignHorizontal: PropTypes.bool,
99
+ className: PropTypes.string,
100
+ dataId: PropTypes.string,
101
+ isRender: PropTypes.bool
102
+ };
103
+ UnableToProcessRequest.defaultProps = {
104
+ alignHorizontal: true,
105
+ isRender: true,
106
+ className: '',
107
+ dataId: 'unabletoprocessrequest'
108
+ };
109
+
110
+ if (false) {
111
+ UnableToProcessRequest.docs = {
112
+ componentGroup: 'SVG'
113
+ };
114
+ }
@@ -0,0 +1,113 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class UnauthorizedLogin extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 -40 500 500",
10
+ name: "UnauthorizedLogin"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".ErrorUnauthorizedLogin_svg__cls-1,.ErrorUnauthorizedLogin_svg__cls-2{fill:var(--zd_emptysvg_primary_fill)}.ErrorUnauthorizedLogin_svg__cls-1{opacity:.05}.ErrorUnauthorizedLogin_svg__cls-2{opacity:.2}.ErrorUnauthorizedLogin_svg__cls-10,.ErrorUnauthorizedLogin_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorUnauthorizedLogin_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorUnauthorizedLogin_svg__cls-8{stroke:var(--zd_emptysvg_plus)}")), /*#__PURE__*/React.createElement("path", {
12
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
13
+ d: "M135.58 156.52s33.78-54.78 54.78-11 32.86 82.17 94 33.78 86.73-55.69 109.55-25.56S438.22 440.44 215 387.49c0 0-176.65-66.64-79.42-230.97z"
14
+ }), /*#__PURE__*/React.createElement("circle", {
15
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
16
+ cx: 92.57,
17
+ cy: 364.54,
18
+ r: 25.39
19
+ }), /*#__PURE__*/React.createElement("circle", {
20
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
21
+ cx: 75.88,
22
+ cy: 120.98,
23
+ r: 25.39
24
+ }), /*#__PURE__*/React.createElement("circle", {
25
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
26
+ cx: 293.35,
27
+ cy: 73.62,
28
+ r: 12.74
29
+ }), /*#__PURE__*/React.createElement("circle", {
30
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
31
+ cx: 141.83,
32
+ cy: 409.84,
33
+ r: 12.74
34
+ }), /*#__PURE__*/React.createElement("circle", {
35
+ className: "ErrorUnauthorizedLogin_svg__cls-1",
36
+ cx: 376.13,
37
+ cy: 397.82,
38
+ r: 12.74
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ className: "ErrorUnauthorizedLogin_svg__cls-2",
41
+ d: "M220.15 211.69s-4.35-10 3-21.2c0 0 20.88 28.8 57.64 2.26 0 0 8.15 1.69 4 22.05 0 0 15.34-15.48 6.28-32.53 0 0 2.56-7.53-3.29-16.29s-13.24-19-28-20.74c0 0 4.07-2.48 3-4.5s-2.26-4.94-8.37-6.24-10.64 6.11-7.13 10.68c0 0-18.13.71-29.39 22.64A33.72 33.72 0 00215 176c-2 8.74-5.24 29 5.15 35.69zM201.67 235.61s-5.82 38.09 46 37.56 58.71-31.74 58.71-36.5-59.77-3.7-63.48 13.25-29.62-12.17-33.85-14.81a6 6 0 00-7.38.5z"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M196.6 377.4c-2 0-57.79 11-52.29 0s53.69-15.82 52.29-13.76-44.72 11.69-45.41-3.45 12.39-89.42 25.46-112.13c0 0-8.25 0-10.31 4.14s-10 25.67-6.2 28.88S198 328.56 269.52 320.3v-35.78H240s-2 46.79 1.37 48.84 32.33.7 32.33.7v-15.92s64.09-11 76.61-35.53c0 0-3.06 1-2 8.15s10.72 45.16 9.71 71c0 0-30.14 12.52-33.21 11.5s32.51-14.19 35.65-9 7.31 10.66 5 12.12-49.15 6.35-50.46-1.38-1.67-14.84-6.26-18.19-30.85-21.19-30.85-21.19l-4.08-52.84s50.6-11.2 62.13-29.39c0 0-12.65-50.23-10-47.63s2.61 42.45 5.58 42.05 24.93 4.82 25.67 12.22c0 0 6.7-3 7.07-4.07s-12.65 8.14-13 12.65 13-3 14.86-1.5 5.2 8.57 0 9.68-10.76-1.49-11.51 1.12 10 11.9 14.26 11.9 17-.37 18.83-9.67-8.94-5.22-8.94-5.22 8.24 1.5 9.17-3.72-4.69-19.72-8.77-21.95-5.9.52-5.9.52 5.7-1.81 5.82-2.42-27-41-54.66-55.46c0 0-23.17-12.76-30.55-11.63s10.73 22.6-9.05 34.46c0 0 4.52-18.07-4-22 0 0-29.95 27.13-57.64-2.26 0 0-7.91 10.74-2.83 19.78 0 0 19.35 33.15 61.57 5.32 0 0 10.64-7.48 11.39-17.32s-4.49-12.69-1.12-20.43c0 0-5.78-28.52-30.93-32.36s-9.22-11.29-6.83-11 8.81 3.06 8.49 7.67-9.84 3.84-15.65 3-31.93 10.85-33.7 38.38 6.58 28.18 6.58 28.18S212 201.39 215 181.4c0 0-26.33 7.13-30.67 13.24s-6.11 32.53-5.78 35.43 5.78-28.92 1.08-34.35c0 0-39.41 27.5-48.45 50.26 0 0 14.82 12.74 17 12.34s-15.91-12-18.8-9.09-10.85 19.53-10.48 23.87 5.42 14.82 9.4 15.54 13.38 2.53 14.82 1.8 11.57-11.92 10.13-12.65-7.24.73-10.85-3.25 1.81-9.4 4-8 5.09 6.87 6.11 6.87 5.09-.36 5.43-2.9-5.09-10.51-5.09-10.51 11.53-13.12 25.46-14.57c0 0 3.54 27.28 57.33 39.35l3 47.81s-19.4 13.66-27.8 17.41-13.8 16.82-14.26 23.13c0 0-1.1-17.6 15.08-25.41s24.73-15.81 24.73-15.81l-1.39-25.5s-44.1-11.35-59.52-32.13l1.39-4.49s56.68 61.87 162.11-.35c0 0 .11-10.36-1.49-13.24s11.34 23.19 11.5 24.37",
44
+ strokeWidth: 1.5,
45
+ strokeLinecap: "round",
46
+ strokeLinejoin: "round",
47
+ stroke: "var(--zd_emptysvg_primary_stroke)",
48
+ fill: "none"
49
+ }), /*#__PURE__*/React.createElement("ellipse", {
50
+ cx: 319.44,
51
+ cy: 65.07,
52
+ rx: 3.54,
53
+ ry: 3.51,
54
+ strokeMiterlimit: 10,
55
+ stroke: "var(--zd_emptysvg_medium_circle)",
56
+ fill: "none"
57
+ }), /*#__PURE__*/React.createElement("ellipse", {
58
+ cx: 254.71,
59
+ cy: 426.04,
60
+ rx: 3.54,
61
+ ry: 3.51,
62
+ fill: "var(--zd_emptysvg_medium_circle)"
63
+ }), /*#__PURE__*/React.createElement("ellipse", {
64
+ cx: 60.28,
65
+ cy: 276.06,
66
+ rx: 3.31,
67
+ ry: 3.28,
68
+ stroke: "var(--zd_emptysvg_tiny_circle)",
69
+ strokeMiterlimit: 10,
70
+ fill: "none"
71
+ }), /*#__PURE__*/React.createElement("ellipse", {
72
+ cx: 434.38,
73
+ cy: 281.34,
74
+ rx: 3.31,
75
+ ry: 3.28,
76
+ fill: "var(--zd_emptysvg_tiny_circle)"
77
+ }), /*#__PURE__*/React.createElement("path", {
78
+ className: "ErrorUnauthorizedLogin_svg__cls-8",
79
+ d: "M111.78 165.79l-.35 6.17M108.49 168.7l6.23.35"
80
+ }), /*#__PURE__*/React.createElement("ellipse", {
81
+ cx: 392.54,
82
+ cy: 383.2,
83
+ rx: 2.46,
84
+ ry: 2.44,
85
+ strokeLinecap: "round",
86
+ strokeLinejoin: "round",
87
+ stroke: "var(--zd_emptysvg_small_circle)",
88
+ fill: "none"
89
+ }), /*#__PURE__*/React.createElement("path", {
90
+ className: "ErrorUnauthorizedLogin_svg__cls-10",
91
+ d: "M391.61 121.34l4.15 4.62M391.36 125.71l4.65-4.12"
92
+ }));
93
+ }
94
+
95
+ }
96
+ UnauthorizedLogin.propTypes = {
97
+ alignHorizontal: PropTypes.bool,
98
+ className: PropTypes.string,
99
+ dataId: PropTypes.string,
100
+ isRender: PropTypes.bool
101
+ };
102
+ UnauthorizedLogin.defaultProps = {
103
+ alignHorizontal: true,
104
+ isRender: true,
105
+ className: '',
106
+ dataId: 'unauthorizedlogin'
107
+ };
108
+
109
+ if (false) {
110
+ UnauthorizedLogin.docs = {
111
+ componentGroup: 'SVG'
112
+ };
113
+ }
@@ -0,0 +1,114 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class UrlNotFound extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 500 500",
10
+ name: "UrlNotFound"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".ErrorUrlNotFound_svg__cls-1{fill:var(--zd_emptysvg_primary_fill);opacity:.05}.ErrorUrlNotFound_svg__cls-10,.ErrorUrlNotFound_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorUrlNotFound_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorUrlNotFound_svg__cls-8{stroke:var(--zd_emptysvg_cross)}")), /*#__PURE__*/React.createElement("path", {
12
+ className: "ErrorUrlNotFound_svg__cls-1",
13
+ d: "M148.89 174.69s33.77-54.78 54.77-11 32.87 82.17 94 33.78 86.77-55.65 109.59-25.47 44.28 286.67-178.94 233.72c0-.05-176.65-66.72-79.42-231.03z"
14
+ }), /*#__PURE__*/React.createElement("circle", {
15
+ className: "ErrorUrlNotFound_svg__cls-1",
16
+ cx: 105.87,
17
+ cy: 382.71,
18
+ r: 25.39
19
+ }), /*#__PURE__*/React.createElement("circle", {
20
+ className: "ErrorUrlNotFound_svg__cls-1",
21
+ cx: 89.18,
22
+ cy: 139.16,
23
+ r: 25.39
24
+ }), /*#__PURE__*/React.createElement("circle", {
25
+ className: "ErrorUrlNotFound_svg__cls-1",
26
+ cx: 306.65,
27
+ cy: 91.79,
28
+ r: 12.74
29
+ }), /*#__PURE__*/React.createElement("circle", {
30
+ className: "ErrorUrlNotFound_svg__cls-1",
31
+ cx: 155.14,
32
+ cy: 428.01,
33
+ r: 12.74
34
+ }), /*#__PURE__*/React.createElement("circle", {
35
+ className: "ErrorUrlNotFound_svg__cls-1",
36
+ cx: 389.43,
37
+ cy: 415.99,
38
+ r: 12.74
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "M147.26 384.22l22.71 7s.88-5.55.16-15.67 7.59-17.34 7.59-17.34 15.89-17.34 15.89-19.14-21.31-58.52-23.12-69.72 7.59-50.94 7.59-50.94l2.53 27.46s17.7 1.8 21.67-1.09.72-24.92.72-24.92l-20.95-.73s-4 14.09-14.09 36.85c-8.26 18.59-19.65 95.5-23.75 126.21-.92 6.89-1.47 11.45-1.53 12.51-.37 5.78-10.48 12.28-10.48 12.28s6.86.72 9.39-4.33 14.81-14.45 19.15-7.95-6.14 13.36-11.2 18.49-15.9 2.82-18.79 0-.72-12.71-.72-12.71c-11.2-22-13-151.72-13-151.72l1.8 23.48-15.17.36 25.65-65c56-40.46 93.92 10.12 93.92 10.12l1.09 78.75 2.53-81.28c-5.28-13.48-27.46-22-27.46-22-55.63-21.67-80.56 22.76-80.56 22.76s18.79-40.82 71.53-44.43 76.94 44.43 75.86 40.46-23.48-24.57-23.48-24.57l72.26 7.48s-41.18 17.7-44.43 22.76-41.91 11.56-41.91 11.56l15.17 6.86-6 64.58-14.33.35s-6.23 46.52-6.23 49.66-16.94 13.41-22.38 17.34-3.56 25.73-3.56 25.73-.21-15.48 0-23.64-7.53-9.41-7.53-9.41c-9.62 0-10.75 8.58-10.75 8.58v23.11c0 3.49 3.22 9.67 8.6 10.08s10.87-5.17 10.87-5.17l53.77 15.83s-.13-165.23.13-174.77-3.22-8.37-2.52-6 53.46 52.51 54 54 77-45.15 77-45.15l-52-42c-4.13.17-74.75 31.47-72.94 33.73s69.49-36.1 69.49-36.1l1.91 168.32-72.06 48.33",
41
+ strokeLinecap: "round",
42
+ strokeLinejoin: "round",
43
+ stroke: "var(--zd_emptysvg_primary_stroke)",
44
+ strokeWidth: 1.5,
45
+ fill: "none"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ d: "M129.31 207.53s-8.67 115.3 1.13 176.69c0 0 7 4 9-5.4 6.74-31.64 17.12-114.22 30.21-147.44 0 0 32.66 101.9 30.7 105.82s-6.8 22.07-3.92 21.55c13.22-2.4 35.92-69.89 20.9-133.25-.02 0-22.53-45.08-88.02-17.97z",
48
+ opacity: 0.2,
49
+ fill: "var(--zd_emptysvg_primary_fill)"
50
+ }), /*#__PURE__*/React.createElement("ellipse", {
51
+ cx: 263.83,
52
+ cy: 122.29,
53
+ rx: 3.54,
54
+ ry: 3.51,
55
+ strokeMiterlimit: 10,
56
+ stroke: "var(--zd_emptysvg_medium_circle)",
57
+ fill: "none"
58
+ }), /*#__PURE__*/React.createElement("ellipse", {
59
+ cx: 269.1,
60
+ cy: 423.25,
61
+ rx: 3.54,
62
+ ry: 3.51,
63
+ fill: "var(--zd_emptysvg_medium_circle)"
64
+ }), /*#__PURE__*/React.createElement("ellipse", {
65
+ cx: 74.67,
66
+ cy: 273.28,
67
+ rx: 3.31,
68
+ ry: 3.28,
69
+ stroke: "var(--zd_emptysvg_tiny_circle)",
70
+ strokeMiterlimit: 10,
71
+ fill: "none"
72
+ }), /*#__PURE__*/React.createElement("ellipse", {
73
+ cx: 448.76,
74
+ cy: 278.55,
75
+ rx: 3.31,
76
+ ry: 3.28,
77
+ fill: "var(--zd_emptysvg_tiny_circle)"
78
+ }), /*#__PURE__*/React.createElement("path", {
79
+ className: "ErrorUrlNotFound_svg__cls-8",
80
+ d: "M126.16 163.01l-.35 6.17M122.87 165.92l6.23.35"
81
+ }), /*#__PURE__*/React.createElement("ellipse", {
82
+ cx: 406.93,
83
+ cy: 380.42,
84
+ rx: 2.46,
85
+ ry: 2.44,
86
+ stroke: "var(--zd_emptysvg_small_circle)",
87
+ strokeLinecap: "round",
88
+ strokeLinejoin: "round",
89
+ fill: "none"
90
+ }), /*#__PURE__*/React.createElement("path", {
91
+ className: "ErrorUrlNotFound_svg__cls-10",
92
+ d: "M405.99 118.56l4.16 4.61M405.75 122.93l4.65-4.12"
93
+ }));
94
+ }
95
+
96
+ }
97
+ UrlNotFound.propTypes = {
98
+ alignHorizontal: PropTypes.bool,
99
+ className: PropTypes.string,
100
+ dataId: PropTypes.string,
101
+ isRender: PropTypes.bool
102
+ };
103
+ UrlNotFound.defaultProps = {
104
+ alignHorizontal: true,
105
+ isRender: true,
106
+ className: '',
107
+ dataId: 'urlnotfound'
108
+ };
109
+
110
+ if (false) {
111
+ UrlNotFound.docs = {
112
+ componentGroup: 'SVG'
113
+ };
114
+ }
@@ -0,0 +1,113 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class WillBeRightBack extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 695.38 500",
10
+ name: "WillBeRightBack"
11
+ }, this.props), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("style", null, ".ErrorWillBeRightBack_svg__cls-1,.ErrorWillBeRightBack_svg__cls-2{fill:var(--zd_emptysvg_primary_fill)}.ErrorWillBeRightBack_svg__cls-1{opacity:.05}.ErrorWillBeRightBack_svg__cls-2{opacity:.2}.ErrorWillBeRightBack_svg__cls-10,.ErrorWillBeRightBack_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorWillBeRightBack_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorWillBeRightBack_svg__cls-8{stroke:var(--zd_emptysvg_plus)}")), /*#__PURE__*/React.createElement("path", {
12
+ className: "ErrorWillBeRightBack_svg__cls-1",
13
+ d: "M138.24 163.53S172 108.75 193 152.58s32.87 82.16 94 33.77 86.73-55.69 109.55-25.56 44.28 286.67-178.94 233.72c.05 0-176.61-66.65-79.37-230.98z"
14
+ }), /*#__PURE__*/React.createElement("circle", {
15
+ className: "ErrorWillBeRightBack_svg__cls-1",
16
+ cx: 95.22,
17
+ cy: 371.55,
18
+ r: 25.39
19
+ }), /*#__PURE__*/React.createElement("circle", {
20
+ className: "ErrorWillBeRightBack_svg__cls-1",
21
+ cx: 78.54,
22
+ cy: 128,
23
+ r: 25.39
24
+ }), /*#__PURE__*/React.createElement("circle", {
25
+ className: "ErrorWillBeRightBack_svg__cls-1",
26
+ cx: 296,
27
+ cy: 80.64,
28
+ r: 12.74
29
+ }), /*#__PURE__*/React.createElement("circle", {
30
+ className: "ErrorWillBeRightBack_svg__cls-1",
31
+ cx: 144.49,
32
+ cy: 416.85,
33
+ r: 12.74
34
+ }), /*#__PURE__*/React.createElement("circle", {
35
+ className: "ErrorWillBeRightBack_svg__cls-1",
36
+ cx: 378.78,
37
+ cy: 404.83,
38
+ r: 12.74
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ className: "ErrorWillBeRightBack_svg__cls-2",
41
+ d: "M197.65 260.2s-37.79 13.9-26.82 41.53 35.49 2.54 38.75 54 31.65 15.7 31.65 15.7 10.64-19.9 13-20.31 11.67-25 11.22-32.18 19.17 3.75 26.77-12.33 9.16-17.33 7.1-31.18c-3.93-26.43-54.27-38.22-101.67-15.23zM514.22 175.75s20.76-5.5 39.38 4.1l71.4-23.68zM563.61 183.49s24.11 3.37 35.52 18.67l30.51-46z"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M197.52 185.74s-94.89 36.5-76.24 144.37 156.79 96.51 190.24 61.54c0 0 36.18-27.27 40.1-95.61h0c0-41.67-50.39-112.71-109.2-115.31a35.36 35.36 0 00-20.37 5c-7 4.39-13.45 12.08-6.06 24.33 13.14 21.78 31.17-5.26 30.42-9.39-.68-3.73-12.1-7.16-24 14.42a13.31 13.31 0 01-14 6.59c-4.57-.82-9.39-2.18-11.45-4.41-4.41-4.8-16.32 4.61-7.87 10.75s10.95 6.72 6.34 11.14-18 13.44-9.22 17.47 66.44 18.44 76.23 1.54-81.78-10.97-92.15 30.83c0 0-7.29 20.07 20.93 27.17s8.64 72.2 34.95 68c0 0 12.29-2.88 19.39-21.32 4.18-10.82 14.62-16.32 20.85-17.78a5.87 5.87 0 017.19 6.64c-.85 5.12-5.06 13-10.56 16.33-10 5.95-10.23-15.56-5.69-22.85s15.82-33.94 0-46.45-18-5.79-17.93-3.29c.19 8.84 23.62 29.57 38.21 23.43s21.32-22.08 19.2-29-18.05-14.21-20.93-9 11 12.86 26.89 9.22c14.34-3.29 30.86-1.13 32.34 15.44a19.31 19.31 0 0022.05 17.11c12.4-1.83 31.36-11.52 60-39.05h0s11.21-5.87 19.05-39.19 77.44-.66 108.15-23.85 75.34-57.78 75.34-57.78l-56.11 20.79s25.28 3.19 35.52 18.67l30.51-46L558.38 183l-3 20.26-1.82-23.45s-14.53-8.56-39.38-4.1L625 156.17l-77.77 27.55s16.92 22.63-8 34.15-75-30.34-100.53-22.46-27.81 29.21-27.81 29.21",
44
+ strokeLinecap: "round",
45
+ strokeLinejoin: "round",
46
+ stroke: "var(--zd_emptysvg_primary_stroke)",
47
+ strokeWidth: 1.5,
48
+ fill: "none"
49
+ }), /*#__PURE__*/React.createElement("ellipse", {
50
+ cx: 253.18,
51
+ cy: 132.09,
52
+ rx: 3.54,
53
+ ry: 3.51,
54
+ strokeMiterlimit: 10,
55
+ stroke: "var(--zd_emptysvg_medium_circle)",
56
+ fill: "none"
57
+ }), /*#__PURE__*/React.createElement("ellipse", {
58
+ cx: 258.45,
59
+ cy: 433.05,
60
+ rx: 3.54,
61
+ ry: 3.51,
62
+ fill: "var(--zd_emptysvg_medium_circle)"
63
+ }), /*#__PURE__*/React.createElement("ellipse", {
64
+ cx: 64.02,
65
+ cy: 283.08,
66
+ rx: 3.31,
67
+ ry: 3.28,
68
+ stroke: "var(--zd_emptysvg_tiny_circle)",
69
+ strokeMiterlimit: 10,
70
+ fill: "none"
71
+ }), /*#__PURE__*/React.createElement("ellipse", {
72
+ cx: 438.12,
73
+ cy: 288.35,
74
+ rx: 3.31,
75
+ ry: 3.28,
76
+ fill: "var(--zd_emptysvg_tiny_circle)"
77
+ }), /*#__PURE__*/React.createElement("path", {
78
+ className: "ErrorWillBeRightBack_svg__cls-8",
79
+ d: "M115.52 172.8l-.36 6.18M112.23 175.72l6.22.34"
80
+ }), /*#__PURE__*/React.createElement("ellipse", {
81
+ cx: 396.28,
82
+ cy: 390.22,
83
+ rx: 2.46,
84
+ ry: 2.44,
85
+ stroke: "var(--zd_emptysvg_small_circle)",
86
+ strokeLinecap: "round",
87
+ strokeLinejoin: "round",
88
+ fill: "none"
89
+ }), /*#__PURE__*/React.createElement("path", {
90
+ className: "ErrorWillBeRightBack_svg__cls-10",
91
+ d: "M395.35 128.36l4.15 4.61M395.1 132.72l4.65-4.12"
92
+ }));
93
+ }
94
+
95
+ }
96
+ WillBeRightBack.propTypes = {
97
+ alignHorizontal: PropTypes.bool,
98
+ className: PropTypes.string,
99
+ dataId: PropTypes.string,
100
+ isRender: PropTypes.bool
101
+ };
102
+ WillBeRightBack.defaultProps = {
103
+ alignHorizontal: true,
104
+ isRender: true,
105
+ className: '',
106
+ dataId: 'willberightback'
107
+ };
108
+
109
+ if (false) {
110
+ WillBeRightBack.docs = {
111
+ componentGroup: 'SVG'
112
+ };
113
+ }
@@ -0,0 +1,73 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class Extensions extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "extensions"
11
+ }, this.props), /*#__PURE__*/React.createElement("style", null, ".Extensions_svg__st1{opacity:.1;fill:var(--zd_emptysvg_primary_fill)}.Extensions_svg__st2{fill:var(--zd_emptysvg_plus)}.Extensions_svg__st3{fill:var(--zd_emptysvg_medium_circle)}.Extensions_svg__st4{fill:var(--zd_emptysvg_cross)}.Extensions_svg__st5{fill:var(--zd_emptysvg_secondary_fill)}"), /*#__PURE__*/React.createElement("path", {
12
+ className: "Extensions_svg__st1",
13
+ d: "M80.1998 56.2C80.1998 56.2 126.9 25 150.5 34.4C174.1 43.8 190.2 122.7 124.6 158.1C58.9998 193.5 29.1998 116.5 28.8998 102.9C28.6998 89.6 28.8998 58.2 80.1998 56.2Z"
14
+ }), /*#__PURE__*/React.createElement("path", {
15
+ className: "Extensions_svg__st2",
16
+ d: "M14 117.3C14 117.3 13.9 117.3 14 117.3C13.7 117.3 13.5 117 13.5 116.8L13.9 109.3C13.9 109 14.1 108.8 14.4 108.8C14.7 108.8 14.9 109 14.9 109.3L14.5 116.8C14.4 117.1 14.2 117.3 14 117.3Z"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ className: "Extensions_svg__st2",
19
+ d: "M17.7999 113.8L10.3999 113.4C10.0999 113.4 9.8999 113.1 9.8999 112.9C9.8999 112.6 10.1999 112.4 10.3999 112.4L17.6999 112.8C17.9999 112.8 18.1999 113.1 18.1999 113.3C18.2999 113.6 18.0999 113.8 17.7999 113.8Z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ className: "Extensions_svg__st3",
22
+ d: "M171.2 20.8C168.6 20.8 166.5 22.9 166.5 25.5C166.5 28.1 168.6 30.2 171.2 30.2C173.8 30.2 175.9 28.1 175.9 25.5C175.9 22.9 173.7 20.8 171.2 20.8ZM171.2 29.3C169.2 29.3 167.5 27.6 167.5 25.5C167.5 23.4 169.2 21.7 171.2 21.7C173.2 21.7 174.9 23.4 174.9 25.5C174.9 27.6 173.2 29.3 171.2 29.3Z"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ className: "Extensions_svg__st3",
25
+ d: "M124.4 173.1C122.5 173.1 121 174.6 121 176.5C121 178.4 122.5 179.9 124.4 179.9C126.3 179.9 127.8 178.4 127.8 176.5C127.8 174.7 126.3 173.1 124.4 173.1ZM124.4 179C123.1 179 122 177.9 122 176.5C122 175.1 123.1 174 124.4 174C125.7 174 126.8 175.1 126.8 176.5C126.8 177.9 125.7 179 124.4 179Z"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ className: "Extensions_svg__st3",
28
+ d: "M80.8999 20C79.1999 20 77.8999 21.4 77.8999 23C77.8999 24.6 79.1999 26 80.8999 26C82.5999 26 83.8999 24.6 83.8999 23C83.8999 21.4 82.5999 20 80.8999 20ZM80.8999 25.1C79.7999 25.1 78.8999 24.2 78.8999 23.1C78.8999 22 79.7999 21.1 80.8999 21.1C81.9999 21.1 82.8999 22 82.8999 23.1C82.8999 24.2 81.9999 25.1 80.8999 25.1Z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "Extensions_svg__st4",
31
+ d: "M189.8 129.8C189.6 129.6 189.3 129.6 189.1 129.8L186.7 132L184.6 129.6C184.4 129.4 184.1 129.4 183.9 129.6C183.7 129.8 183.7 130.1 183.9 130.3L186 132.7L183.6 134.9C183.4 135.1 183.4 135.4 183.6 135.6C183.7 135.7 183.8 135.8 184 135.8C184.1 135.8 184.2 135.8 184.3 135.7L186.7 133.5L188.8 135.9C188.9 136 189 136.1 189.2 136.1C189.3 136.1 189.4 136.1 189.5 136C189.7 135.8 189.7 135.5 189.5 135.3L187.4 132.9L189.8 130.7C190 130.4 190 130 189.8 129.8Z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ className: "Extensions_svg__st1",
34
+ d: "M115.8 65C115.8 65 78.4999 40.1 59.5999 47.6C40.6999 55.1 27.7999 118.2 80.2999 146.5C132.8 174.8 156.6 113.2 156.8 102.3C157 91.7 156.8 66.5 115.8 65Z"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ className: "Extensions_svg__st5",
37
+ d: "M38.5842 59.7596C38.5842 59.7596 63.4293 59.9909 69.3228 56.1749C75.2163 52.3588 78.1053 46.3456 86.6566 46.3456C95.2079 46.3456 115.2 59.8753 121.44 58.2563C127.795 56.6374 156.801 69.8201 157.841 66.9292C158.765 64.1539 147.672 35.7069 144.783 35.4756C142.009 35.2444 52.1046 34.8974 50.8334 36.8633C49.5623 38.9448 38.5842 59.7596 38.5842 59.7596Z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M114.275 171.35C114.275 171.35 72.5582 169.5 73.0204 170.888C73.4826 172.276 82.6118 176.438 82.8429 167.65C83.074 158.746 80.9939 158.746 83.074 158.746C85.154 158.746 103.528 158.515 101.91 156.433C100.292 154.352 32.1127 159.44 30.4948 153.889C29.2237 149.379 29.3393 70.3983 29.3393 70.3983L168.818 71.5547C168.818 71.5547 178.988 95.0293 155.414 96.8795C131.955 98.7297 133.226 81.384 135.075 81.1527C136.924 80.9214 135.075 99.5391 115.893 98.7297C96.8255 98.0359 98.0966 80.1119 99.7144 80.6901C101.332 81.2683 100.523 98.8453 80.5317 97.8046C60.5401 96.7638 62.0423 79.3025 64.4691 79.0712C66.8958 78.8399 57.3044 98.614 39.8551 96.6482C22.4057 94.6823 23.7924 70.6296 23.7924 67.7387C23.7924 64.8477 166.738 70.514 169.512 67.7387C172.285 64.9634 152.178 31.5439 152.178 31.5439C152.178 31.5439 46.7886 32.3534 45.1708 31.8909C43.553 31.4283 29.4548 59.2971 29.4548 59.2971L26.9125 64.5008L35.9261 64.3852C35.9261 64.3852 36.1572 128.449 36.1572 135.503C36.1572 142.557 42.744 142.21 43.3218 142.325C44.0152 142.441 91.1631 143.944 95.5543 144.175C99.9455 144.407 100.061 150.882 97.5188 151.576C94.9765 152.154 92.0876 148.338 96.1321 146.026C100.177 143.713 105.377 152.501 108.15 154.236C110.924 155.971 160.845 158.861 164.196 154.352C166.97 150.536 165.121 98.3828 165.121 98.3828C165.121 98.3828 160.845 97.5733 160.383 102.083C158.996 114.11 161.423 142.441 158.534 144.291C154.605 146.835 107.572 144.869 107.572 144.869",
40
+ fill: "none",
41
+ stroke: "var(--zd_emptysvg_primary_stroke)",
42
+ strokeMiterlimit: "10",
43
+ strokeLinecap: "round",
44
+ strokeLinejoin: "round"
45
+ }), /*#__PURE__*/React.createElement("path", {
46
+ className: "Extensions_svg__st5",
47
+ d: "M59.8465 113.763C59.8465 113.763 56.842 134.924 61.811 136.89C66.78 138.856 132.071 137.353 132.071 137.353C132.071 137.353 115.43 115.035 97.7497 117.001C80.0692 118.966 62.6199 97.8046 59.8465 113.763Z"
48
+ }));
49
+ }
50
+
51
+ }
52
+ Extensions.propTypes = {
53
+ alignHorizontal: PropTypes.bool,
54
+ className: PropTypes.string,
55
+ dataId: PropTypes.string,
56
+ isRender: PropTypes.bool,
57
+ size: PropTypes.oneOf(['small', 'large']),
58
+ palette: PropTypes.oneOf(['default', 'dark'])
59
+ };
60
+ Extensions.defaultProps = {
61
+ size: 'large',
62
+ alignHorizontal: true,
63
+ isRender: true,
64
+ className: '',
65
+ dataId: 'extensions',
66
+ palette: 'default'
67
+ };
68
+
69
+ if (false) {
70
+ Extensions.docs = {
71
+ componentGroup: 'SVG'
72
+ };
73
+ }
@@ -0,0 +1,66 @@
1
+ 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); }
2
+
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import SVG from './SVG';
6
+ export default class Extractor extends React.Component {
7
+ render() {
8
+ return /*#__PURE__*/React.createElement(SVG, _extends({
9
+ viewBox: "0 0 200 200",
10
+ name: "extractor"
11
+ }, this.props), /*#__PURE__*/React.createElement("style", null, ".Extractor_svg__st1{opacity:.1;fill:var(--zd_emptysvg_primary_fill);enable-background:new}.Extractor_svg__st2{fill:var(--zd_emptysvg_plus)}.Extractor_svg__st3{fill:var(--zd_emptysvg_medium_circle)}.Extractor_svg__st4{fill:var(--zd_emptysvg_cross)}.Extractor_svg__st6{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}"), /*#__PURE__*/React.createElement("path", {
12
+ fill: "none",
13
+ d: "M10 22h180v160H10z"
14
+ }), /*#__PURE__*/React.createElement("path", {
15
+ className: "Extractor_svg__st1",
16
+ d: "M80.2 58.2s46.7-31.2 70.3-21.8 39.7 88.3-25.9 123.7c-65.6 35.4-95.4-41.6-95.7-55.2-.2-13.3 0-44.7 51.3-46.7z"
17
+ }), /*#__PURE__*/React.createElement("path", {
18
+ className: "Extractor_svg__st2",
19
+ d: "M14 119.3s-.1 0 0 0c-.3 0-.5-.3-.5-.5l.4-7.5c0-.3.2-.5.5-.5s.5.2.5.5l-.4 7.5c-.1.3-.3.5-.5.5z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ className: "Extractor_svg__st2",
22
+ d: "M17.8 115.8l-7.4-.4c-.3 0-.5-.3-.5-.5 0-.3.3-.5.5-.5l7.3.4c.3 0 .5.3.5.5.1.3-.1.5-.4.5z"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ className: "Extractor_svg__st3",
25
+ d: "M171.2 22.8c-2.6 0-4.7 2.1-4.7 4.7s2.1 4.7 4.7 4.7 4.7-2.1 4.7-4.7-2.2-4.7-4.7-4.7zm0 8.5c-2 0-3.7-1.7-3.7-3.8s1.7-3.8 3.7-3.8 3.7 1.7 3.7 3.8-1.7 3.8-3.7 3.8zM34.4 175.1c-1.9 0-3.4 1.5-3.4 3.4s1.5 3.4 3.4 3.4 3.4-1.5 3.4-3.4c0-1.8-1.5-3.4-3.4-3.4zm0 5.9c-1.3 0-2.4-1.1-2.4-2.5s1.1-2.5 2.4-2.5c1.3 0 2.4 1.1 2.4 2.5s-1.1 2.5-2.4 2.5z"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ className: "Extractor_svg__st4",
28
+ d: "M50.9 22c-1.7 0-3 1.4-3 3s1.3 3 3 3 3-1.4 3-3-1.3-3-3-3zm0 5.1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM189.8 131.8c-.2-.2-.5-.2-.7 0l-2.4 2.2-2.1-2.4c-.2-.2-.5-.2-.7 0-.2.2-.2.5 0 .7l2.1 2.4-2.4 2.2c-.2.2-.2.5 0 .7.1.1.2.2.4.2.1 0 .2 0 .3-.1l2.4-2.2 2.1 2.4c.1.1.2.2.4.2.1 0 .2 0 .3-.1.2-.2.2-.5 0-.7l-2.1-2.4 2.4-2.2c.2-.3.2-.7 0-.9z"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ className: "Extractor_svg__st1",
31
+ d: "M115.8 67S78.5 42.1 59.6 49.6s-31.8 70.6 20.7 98.9c52.5 28.3 76.3-33.3 76.5-44.2.2-10.6 0-35.8-41-37.3z"
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ d: "M71.4 78.3s-11.7 4.5.5 6 68.4.3 64.2-3.2c-4.3-3.3-64.7-2.8-64.7-2.8zm-.8 23.1s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9-2.4-3.3-36.5-2.7-36.5-2.7zm0 20s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9-2.4-3.2-36.5-2.7-36.5-2.7zm-.8 15.5s-8.1 4.5.3 6 47.6.3 44.7-3.2c-3-3.3-45-2.8-45-2.8zm.8 16.7s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9s-36.5-2.7-36.5-2.7zm42.3-118l-5.4-.1c0-1.7-.1-2.9-.7-4.5-1.3-4.2-5.2-5.8-9.1-4.9-4.4.9-6.4 6.5-6.6 9.7l-8.2.1c-1.3 0-2.8.4-2.8 1.7V41c0 1.5 1.1 2.5 2.5 2.5l30.5.5c1.5 0 2.5-1.1 2.7-2.5l.1-4c-.4-1.2-1.7-1.9-3-1.9z",
34
+ fill: "var(--zd_emptysvg_secondary_fill)"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ className: "Extractor_svg__st6",
37
+ d: "M152.5 87.7c-.7-13.3-.4-43.7-2.7-45.5-2.7-1.9-71.5.4-71.5.4S78 31.1 90.5 31.7c0 0-2.3-5.8 4.6-7.6 3.8-.9 8-.3 11 2.3 1.2.9 2.1 2.1 2.4 3.6.1.9 13.1-.9 13.1 14.6 0 0-78.2-3.6-77.8-.9.4 2.7-2.5 133.2.3 134.9 2.8 1.7 108.3 2 109.4-1.1-.1.2-.8-87.5-1-89.8z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ className: "Extractor_svg__st6",
40
+ d: "M72.7 35.4s1.9 33.3-.8 34.1c-2.7.8-17.5 1.6-17.5-.8 0-2.4 18-19.1 21.3-18.6 3.3.5 66.5.8 68.5 2.4 1.1.8 1.6 13.5 1.7 26.2.1 12.7.5 89.7.5 89.7l-11.4.4c-10.2 0-80.2 2-80.9-.7s-.7-60.8-.7-60.8v-30s80.7-2.5 82.3 3.8c1.6 6.4-66.8 5.4-67.1 4-.4-1.5-.1-9.7-.1-9.7s49.8-3.2 65.9 2.1"
41
+ }));
42
+ }
43
+
44
+ }
45
+ Extractor.propTypes = {
46
+ alignHorizontal: PropTypes.bool,
47
+ className: PropTypes.string,
48
+ dataId: PropTypes.string,
49
+ isRender: PropTypes.bool,
50
+ size: PropTypes.oneOf(['small', 'large']),
51
+ palette: PropTypes.oneOf(['default', 'dark'])
52
+ };
53
+ Extractor.defaultProps = {
54
+ size: 'large',
55
+ alignHorizontal: true,
56
+ isRender: true,
57
+ className: '',
58
+ dataId: 'extractor',
59
+ palette: 'default'
60
+ };
61
+
62
+ if (false) {
63
+ Extractor.docs = {
64
+ componentGroup: 'SVG'
65
+ };
66
+ }