@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
package/es/svg/SitBack.js DELETED
@@ -1,54 +0,0 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
6
- import React from 'react';
7
- import PropTypes from 'prop-types';
8
- import SVG from './SVG';
9
- import image from './images/SitBack.svg';
10
-
11
- var SitBack = function (_React$Component) {
12
- _inherits(SitBack, _React$Component);
13
-
14
- function SitBack() {
15
- _classCallCheck(this, SitBack);
16
-
17
- return _possibleConstructorReturn(this, (SitBack.__proto__ || _Object$getPrototypeOf(SitBack)).apply(this, arguments));
18
- }
19
-
20
- _createClass(SitBack, [{
21
- key: 'render',
22
- value: function render() {
23
- var _props = this.props,
24
- className = _props.className,
25
- alignHorizontal = _props.alignHorizontal;
26
-
27
- return React.createElement(
28
- SVG,
29
- { viewBox: '0 0 334.43 256.56', name: 'sitBack', className: className, alignHorizontal: alignHorizontal },
30
- React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
31
- );
32
- }
33
- }]);
34
-
35
- return SitBack;
36
- }(React.Component);
37
-
38
- export default SitBack;
39
-
40
-
41
- SitBack.propTypes = {
42
- className: PropTypes.string,
43
- alignHorizontal: PropTypes.bool
44
- };
45
- SitBack.defaultProps = {
46
- className: '',
47
- alignHorizontal: true
48
- };
49
-
50
- if (false) {
51
- SitBack.docs = {
52
- componentGroup: 'SVG'
53
- };
54
- }
@@ -1,605 +0,0 @@
1
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
2
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
3
- import _createClass from 'babel-runtime/helpers/createClass';
4
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
5
- import _inherits from 'babel-runtime/helpers/inherits';
6
- import React from 'react';
7
- import EmptyActivity from '../EmptyActivity';
8
- import EmptyAccounts from '../EmptyAccounts';
9
- import EmptyAgent from '../EmptyAgent';
10
- import EmptyArchived from '../EmptyArchived';
11
- import EmptyBusinessHoliday from '../EmptyBusinessHoliday';
12
- import EmptyBusinessHour from '../EmptyBusinessHour';
13
- import EmptyBlueprint from '../EmptyBlueprint';
14
- import EmptyCloud from '../EmptyCloud';
15
- import EmptyCloudDanger from '../EmptyCloudDanger';
16
- import EmptyContact from '../EmptyContact';
17
- import EmptyDashboard from '../EmptyDashboard';
18
- import EmptyImportHistory from '../EmptyImportHistory';
19
- import EmptyInvoice from '../EmptyInvoice';
20
- import EmptyProducts from '../EmptyProducts';
21
- import EmptyRecycleBin from '../EmptyRecycleBin';
22
- import EmptyReports from '../EmptyReports';
23
- import EmptyRoles from '../EmptyRoles';
24
- import EmptySearch from '../EmptySearch';
25
- import EmptyTag from '../EmptyTag';
26
- import EmptyTask from '../EmptyTask';
27
- import EmptyTicket from '../EmptyTicket';
28
- import EmptyAttach from '../EmptyAttach';
29
- import EmptyNetwork from '../EmptyNetwork';
30
- import EmptyHappiness from '../EmptyHappiness';
31
- import EmptyConversation from '../EmptyConversation';
32
- import EmptyNotification from '../EmptyNotification';
33
- import EmptyTimeEntry from '../EmptyTimeEntry';
34
- import EmptyTeams from '../EmptyTeams';
35
- import EmptyTopic from '../EmptyTopic';
36
- import FailureLog from '../FailureLog';
37
- import InvalidUrl from '../InvalidUrl';
38
- import Inconvenience from '../Inconvenience';
39
- import NoRequestFound from '../NoRequestFound';
40
- import PageNotFound from '../PageNotFound';
41
- import UnableToProcessRequest from '../UnableToProcessRequest';
42
- import UnauthorizedLogin from '../UnauthorizedLogin';
43
- import UrlNotFound from '../UrlNotFound';
44
- import WillBeRightBack from '../WillBeRightBack';
45
- import EmptyActiveCalls from '../EmptyActiveCalls';
46
- import EmptyCallHistory from '../EmptyCallHistory';
47
- import EmptyHistory from '../EmptyHistory';
48
- import EmptyFromAddress from '../EmptyFromAddress';
49
- import EmptyWebhook from '../EmptyWebhook';
50
- import EmptyTemplate from '../EmptyTemplate';
51
- import EmptyEdition from '../EmptyEdition';
52
- import EmptySkills from '../EmptySkills';
53
- import EmptySnippet from '../EmptySnippet';
54
- import SitBack from '../SitBack';
55
- import Loader from '../Loader';
56
-
57
- var SVG__default = function (_React$Component) {
58
- _inherits(SVG__default, _React$Component);
59
-
60
- function SVG__default() {
61
- _classCallCheck(this, SVG__default);
62
-
63
- return _possibleConstructorReturn(this, (SVG__default.__proto__ || _Object$getPrototypeOf(SVG__default)).apply(this, arguments));
64
- }
65
-
66
- _createClass(SVG__default, [{
67
- key: 'render',
68
- value: function render() {
69
- var boxStyle = {
70
- minWidth: '15%',
71
- border: '1px solid #dcdcdc',
72
- padding: '5px',
73
- margin: '5px',
74
- flex: '1'
75
- };
76
- var textStyle = {
77
- textAlign: 'center',
78
- padding: '10px 0',
79
- background: ' #f9f9f9',
80
- marginTop: '10px',
81
- color: '#000'
82
- };
83
- return React.createElement(
84
- React.Fragment,
85
- null,
86
- React.createElement(
87
- 'div',
88
- {
89
- style: {
90
- display: 'flex',
91
- flexDirection: 'row',
92
- alignItems: 'center',
93
- justifyContent: 'center',
94
- flexWrap: 'wrap'
95
- }
96
- },
97
- React.createElement(
98
- 'div',
99
- { style: boxStyle },
100
- React.createElement(EmptyTeams, null),
101
- React.createElement(
102
- 'div',
103
- { style: textStyle },
104
- 'EmptyTeams'
105
- )
106
- ),
107
- React.createElement(
108
- 'div',
109
- { style: boxStyle },
110
- React.createElement(EmptyAgent, null),
111
- React.createElement(
112
- 'div',
113
- { style: textStyle },
114
- 'EmptyAgent'
115
- )
116
- ),
117
- React.createElement(
118
- 'div',
119
- { style: boxStyle },
120
- React.createElement(EmptyTicket, null),
121
- React.createElement(
122
- 'div',
123
- { style: textStyle },
124
- 'EmptyTicket'
125
- )
126
- ),
127
- React.createElement(
128
- 'div',
129
- { style: boxStyle },
130
- React.createElement(EmptyTask, null),
131
- React.createElement(
132
- 'div',
133
- { style: textStyle },
134
- 'EmptyTask'
135
- )
136
- ),
137
- React.createElement(
138
- 'div',
139
- { style: boxStyle },
140
- React.createElement(EmptyContact, null),
141
- React.createElement(
142
- 'div',
143
- { style: textStyle },
144
- 'EmptyContact'
145
- )
146
- ),
147
- React.createElement(
148
- 'div',
149
- { style: boxStyle },
150
- React.createElement(EmptyAccounts, null),
151
- React.createElement(
152
- 'div',
153
- { style: textStyle },
154
- 'EmptyAccounts'
155
- )
156
- ),
157
- React.createElement(
158
- 'div',
159
- { style: boxStyle },
160
- React.createElement(EmptyActivity, null),
161
- React.createElement(
162
- 'div',
163
- { style: textStyle },
164
- 'EmptyActivity'
165
- )
166
- ),
167
- React.createElement(
168
- 'div',
169
- { style: boxStyle },
170
- React.createElement(EmptyProducts, null),
171
- React.createElement(
172
- 'div',
173
- { style: textStyle },
174
- 'EmptyProducts'
175
- )
176
- ),
177
- React.createElement(
178
- 'div',
179
- { style: boxStyle },
180
- React.createElement(EmptyDashboard, null),
181
- React.createElement(
182
- 'div',
183
- { style: textStyle },
184
- 'EmptyDashboard'
185
- )
186
- ),
187
- React.createElement(
188
- 'div',
189
- { style: boxStyle },
190
- React.createElement(EmptyReports, null),
191
- React.createElement(
192
- 'div',
193
- { style: textStyle },
194
- 'EmptyReports'
195
- )
196
- ),
197
- React.createElement(
198
- 'div',
199
- { style: boxStyle },
200
- React.createElement(EmptyTopic, null),
201
- React.createElement(
202
- 'div',
203
- { style: textStyle },
204
- 'EmptyTopic'
205
- )
206
- ),
207
- React.createElement(
208
- 'div',
209
- { style: boxStyle },
210
- React.createElement(EmptyArchived, null),
211
- React.createElement(
212
- 'div',
213
- { style: textStyle },
214
- 'EmptyArchived'
215
- )
216
- ),
217
- React.createElement(
218
- 'div',
219
- { style: boxStyle },
220
- React.createElement(EmptyBusinessHour, null),
221
- React.createElement(
222
- 'div',
223
- { style: textStyle },
224
- 'EmptyBusinessHour'
225
- )
226
- ),
227
- React.createElement(
228
- 'div',
229
- { style: boxStyle },
230
- React.createElement(EmptyBusinessHoliday, null),
231
- React.createElement(
232
- 'div',
233
- { style: textStyle },
234
- 'EmptyBusinessHoliday'
235
- )
236
- ),
237
- React.createElement(
238
- 'div',
239
- { style: boxStyle },
240
- React.createElement(EmptyBlueprint, null),
241
- React.createElement(
242
- 'div',
243
- { style: textStyle },
244
- 'EmptyBlueprint'
245
- )
246
- ),
247
- React.createElement(
248
- 'div',
249
- { style: boxStyle },
250
- React.createElement(EmptyImportHistory, null),
251
- React.createElement(
252
- 'div',
253
- { style: textStyle },
254
- 'EmptyImportHistory'
255
- )
256
- ),
257
- React.createElement(
258
- 'div',
259
- { style: boxStyle },
260
- React.createElement(EmptyInvoice, null),
261
- React.createElement(
262
- 'div',
263
- { style: textStyle },
264
- 'EmptyInvoice'
265
- )
266
- ),
267
- React.createElement(
268
- 'div',
269
- { style: boxStyle },
270
- React.createElement(EmptyRecycleBin, null),
271
- React.createElement(
272
- 'div',
273
- { style: textStyle },
274
- 'EmptyRecycleBin'
275
- )
276
- ),
277
- React.createElement(
278
- 'div',
279
- { style: boxStyle },
280
- React.createElement(EmptyRoles, null),
281
- React.createElement(
282
- 'div',
283
- { style: textStyle },
284
- 'EmptyRoles'
285
- )
286
- ),
287
- React.createElement(
288
- 'div',
289
- { style: boxStyle },
290
- React.createElement(EmptySearch, null),
291
- React.createElement(
292
- 'div',
293
- { style: textStyle },
294
- 'EmptySearch'
295
- )
296
- ),
297
- React.createElement(
298
- 'div',
299
- { style: boxStyle },
300
- React.createElement(EmptyTag, null),
301
- React.createElement(
302
- 'div',
303
- { style: textStyle },
304
- 'EmptyTag'
305
- )
306
- ),
307
- React.createElement(
308
- 'div',
309
- { style: boxStyle },
310
- React.createElement(FailureLog, null),
311
- React.createElement(
312
- 'div',
313
- { style: textStyle },
314
- 'FailureLog'
315
- )
316
- ),
317
- React.createElement(
318
- 'div',
319
- { style: boxStyle },
320
- React.createElement(EmptyActiveCalls, null),
321
- React.createElement(
322
- 'div',
323
- { style: textStyle },
324
- 'EmptyActiveCalls'
325
- )
326
- ),
327
- React.createElement(
328
- 'div',
329
- { style: boxStyle },
330
- React.createElement(EmptyCallHistory, null),
331
- React.createElement(
332
- 'div',
333
- { style: textStyle },
334
- 'EmptyCallHistory'
335
- )
336
- ),
337
- React.createElement(
338
- 'div',
339
- { style: boxStyle },
340
- React.createElement(EmptyHistory, null),
341
- React.createElement(
342
- 'div',
343
- { style: textStyle },
344
- 'EmptyHistory'
345
- )
346
- ),
347
- React.createElement(
348
- 'div',
349
- { style: boxStyle },
350
- React.createElement(EmptyFromAddress, null),
351
- React.createElement(
352
- 'div',
353
- { style: textStyle },
354
- 'EmptyFromAddress'
355
- )
356
- ),
357
- React.createElement(
358
- 'div',
359
- { style: boxStyle },
360
- React.createElement(EmptyWebhook, null),
361
- React.createElement(
362
- 'div',
363
- { style: textStyle },
364
- 'EmptyWebhook'
365
- )
366
- ),
367
- React.createElement(
368
- 'div',
369
- { style: boxStyle },
370
- React.createElement(EmptyTemplate, null),
371
- React.createElement(
372
- 'div',
373
- { style: textStyle },
374
- 'EmptyTemplate'
375
- )
376
- ),
377
- React.createElement(
378
- 'div',
379
- { style: boxStyle },
380
- React.createElement(EmptyEdition, null),
381
- React.createElement(
382
- 'div',
383
- { style: textStyle },
384
- 'EmptyEdition'
385
- )
386
- ),
387
- React.createElement(
388
- 'div',
389
- { style: boxStyle },
390
- React.createElement(EmptyTimeEntry, null),
391
- React.createElement(
392
- 'div',
393
- { style: textStyle },
394
- 'EmptyTimeEntry'
395
- )
396
- ),
397
- React.createElement(
398
- 'div',
399
- { style: boxStyle },
400
- React.createElement(EmptyNotification, null),
401
- React.createElement(
402
- 'div',
403
- { style: textStyle },
404
- 'EmptyNotification'
405
- )
406
- ),
407
- React.createElement(
408
- 'div',
409
- { style: boxStyle },
410
- React.createElement(EmptyNetwork, null),
411
- React.createElement(
412
- 'div',
413
- { style: textStyle },
414
- 'EmptyNetwork'
415
- )
416
- ),
417
- React.createElement(
418
- 'div',
419
- { style: boxStyle },
420
- React.createElement(EmptyHappiness, null),
421
- React.createElement(
422
- 'div',
423
- { style: textStyle },
424
- 'EmptyHappiness'
425
- )
426
- ),
427
- React.createElement(
428
- 'div',
429
- { style: boxStyle },
430
- React.createElement(EmptyConversation, null),
431
- React.createElement(
432
- 'div',
433
- { style: textStyle },
434
- 'EmptyConversation'
435
- )
436
- ),
437
- React.createElement(
438
- 'div',
439
- { style: boxStyle },
440
- React.createElement(EmptySnippet, null),
441
- React.createElement(
442
- 'div',
443
- { style: textStyle },
444
- 'EmptySnippet'
445
- )
446
- ),
447
- React.createElement(
448
- 'div',
449
- { style: boxStyle },
450
- React.createElement(EmptySkills, null),
451
- React.createElement(
452
- 'div',
453
- { style: textStyle },
454
- 'EmptySkills'
455
- )
456
- ),
457
- React.createElement(
458
- 'div',
459
- { style: boxStyle },
460
- React.createElement(EmptyAttach, null),
461
- React.createElement(
462
- 'div',
463
- { style: textStyle },
464
- 'EmptyAttach'
465
- )
466
- ),
467
- React.createElement(
468
- 'div',
469
- { style: boxStyle },
470
- React.createElement(EmptyCloud, null),
471
- React.createElement(
472
- 'div',
473
- { style: textStyle },
474
- 'EmptyCloud'
475
- )
476
- ),
477
- React.createElement(
478
- 'div',
479
- { style: boxStyle },
480
- React.createElement(EmptyCloudDanger, null),
481
- React.createElement(
482
- 'div',
483
- { style: textStyle },
484
- 'EmptyCloudDanger'
485
- )
486
- ),
487
- React.createElement(
488
- 'div',
489
- { style: boxStyle },
490
- React.createElement(Inconvenience, null),
491
- React.createElement(
492
- 'div',
493
- { style: textStyle },
494
- 'Inconvenience'
495
- )
496
- ),
497
- React.createElement(
498
- 'div',
499
- { style: boxStyle },
500
- React.createElement(InvalidUrl, null),
501
- React.createElement(
502
- 'div',
503
- { style: textStyle },
504
- 'InvalidUrl'
505
- )
506
- ),
507
- React.createElement(
508
- 'div',
509
- { style: boxStyle },
510
- React.createElement(NoRequestFound, null),
511
- React.createElement(
512
- 'div',
513
- { style: textStyle },
514
- 'NoRequestFound'
515
- )
516
- ),
517
- React.createElement(
518
- 'div',
519
- { style: boxStyle },
520
- React.createElement(PageNotFound, null),
521
- React.createElement(
522
- 'div',
523
- { style: textStyle },
524
- 'PageNotFound'
525
- )
526
- ),
527
- React.createElement(
528
- 'div',
529
- { style: boxStyle },
530
- React.createElement(UnableToProcessRequest, null),
531
- React.createElement(
532
- 'div',
533
- { style: textStyle },
534
- 'UnableToProcessRequest'
535
- )
536
- ),
537
- React.createElement(
538
- 'div',
539
- { style: boxStyle },
540
- React.createElement(UnauthorizedLogin, null),
541
- React.createElement(
542
- 'div',
543
- { style: textStyle },
544
- 'UnathorizedLogin'
545
- )
546
- ),
547
- React.createElement(
548
- 'div',
549
- { style: boxStyle },
550
- React.createElement(UrlNotFound, null),
551
- React.createElement(
552
- 'div',
553
- { style: textStyle },
554
- 'UrlNotFound'
555
- )
556
- ),
557
- React.createElement(
558
- 'div',
559
- { style: boxStyle },
560
- React.createElement(WillBeRightBack, null),
561
- React.createElement(
562
- 'div',
563
- { style: textStyle },
564
- 'WillBeRightBack'
565
- )
566
- ),
567
- React.createElement(
568
- 'div',
569
- { style: boxStyle },
570
- React.createElement(SitBack, null),
571
- React.createElement(
572
- 'div',
573
- { style: textStyle },
574
- 'SitBack'
575
- )
576
- ),
577
- React.createElement(
578
- 'div',
579
- { style: boxStyle },
580
- React.createElement(
581
- 'div',
582
- { style: { height: '40px', width: '40px', margin: 'auto' } },
583
- React.createElement(Loader, null)
584
- ),
585
- React.createElement(
586
- 'div',
587
- { style: textStyle },
588
- 'Loader'
589
- )
590
- )
591
- )
592
- );
593
- }
594
- }]);
595
-
596
- return SVG__default;
597
- }(React.Component);
598
-
599
- export default SVG__default;
600
-
601
- if (false) {
602
- SVG__default.docs = {
603
- componentGroup: 'SVG'
604
- };
605
- }