@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
@@ -1,799 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
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; }; }();
8
-
9
- var _react = require('react');
10
-
11
- var _react2 = _interopRequireDefault(_react);
12
-
13
- var _propTypes = require('prop-types');
14
-
15
- var _propTypes2 = _interopRequireDefault(_propTypes);
16
-
17
- var _SVG = require('./SVG');
18
-
19
- var _SVG2 = _interopRequireDefault(_SVG);
20
-
21
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
22
-
23
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
24
-
25
- 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; }
26
-
27
- 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; }
28
-
29
- var InvalidUrl = function (_React$Component) {
30
- _inherits(InvalidUrl, _React$Component);
31
-
32
- function InvalidUrl() {
33
- _classCallCheck(this, InvalidUrl);
34
-
35
- return _possibleConstructorReturn(this, (InvalidUrl.__proto__ || Object.getPrototypeOf(InvalidUrl)).apply(this, arguments));
36
- }
37
-
38
- _createClass(InvalidUrl, [{
39
- key: 'render',
40
- value: function render() {
41
- var _props = this.props,
42
- className = _props.className,
43
- alignHorizontal = _props.alignHorizontal,
44
- isFluid = _props.isFluid;
45
-
46
- return _react2.default.createElement(
47
- _SVG2.default,
48
- {
49
- viewBox: '0 0 732 479.5',
50
- name: 'invalidUrl',
51
- className: className,
52
- alignHorizontal: alignHorizontal,
53
- isFluid: isFluid
54
- },
55
- _react2.default.createElement(
56
- 'g',
57
- null,
58
- _react2.default.createElement('ellipse', {
59
- cx: '295.1',
60
- cy: '432.5',
61
- rx: '93.4',
62
- ry: 47,
63
- style: { opacity: '0.6' }
64
- }),
65
- _react2.default.createElement('ellipse', {
66
- cx: '441.7',
67
- cy: '388.5',
68
- rx: '106.1',
69
- ry: 44,
70
- style: { opacity: '0.6' }
71
- }),
72
- _react2.default.createElement('ellipse', {
73
- cx: '110.4',
74
- cy: '372.9',
75
- rx: '106.6',
76
- ry: '35.8',
77
- style: { opacity: '0.6' }
78
- }),
79
- _react2.default.createElement('path', {
80
- style: {
81
- fill: '#333333',
82
- stroke: '#444444',
83
- strokeMiterlimit: 10
84
- },
85
- d: 'M244.4 314s-4.9 18-14.8 28-43.9-7.5-38.8-22.5 6.6-17.5 11.9-23.7c5.6-6.6 14.5-19.3 31.8-10.7 4.4 2 13.5 17.9 9.9 28.9z'
86
- }),
87
- _react2.default.createElement('path', {
88
- style: {
89
- fill: '#545454',
90
- stroke: '#333333',
91
- strokeLinecap: 'round',
92
- strokeLinejoin: 'round'
93
- },
94
- d: 'M197.6 327.4s-9.1-6.4 3.9-23.8 19.3-21.6 24.9-18.6c0 0-26.5 17.5-28.8 42.4zm34.8-41.6s5.9 1.8 2.4 12-8.7 19.3-11.5 17.1-6.9-7.9-3.2-16.9 7.9-12.2 12.3-12.2z'
95
- }),
96
- _react2.default.createElement('path', {
97
- style: {
98
- fill: '#CEAA6A',
99
- stroke: '#4C4C4C',
100
- strokeWidth: 2,
101
- strokeLinecap: 'round',
102
- strokeLinejoin: 'round'
103
- },
104
- d: 'M245.8 274.9s-39.6 39.6-39.6 78 66.8 14.6 66.8 14.6 8-35.2 11.1-32 5.8 34.2 5.8 34.2 60.4 13.2 67.4-6.7-1.1-56.2-17.1-78.4-94.4-9.7-94.4-9.7z'
105
- }),
106
- _react2.default.createElement('path', {
107
- style: { fill: '#9B7A45' },
108
- d: 'M254.8 277.6s-27.9 25.1-41.9 50.6l3-10.2s25.4-39.3 34.7-45.3l4.2 4.9zm54.7 4.2l-10.7-2.7s-.3 31.4-4.3 38.1c.1 0 8.8-11.8 15-35.4z'
109
- }),
110
- _react2.default.createElement('path', {
111
- style: {
112
- fill: '#54754B',
113
- stroke: '#000000',
114
- strokeWidth: 2,
115
- strokeLinecap: 'round',
116
- strokeLinejoin: 'round'
117
- },
118
- d: 'M319.1 330.9l.2.2v-1.4c-.8.3-.9.7-.2 1.2zm2.8 10.7c-.7-.4-1.5-.7-2.2-.9l.3 8.9c5.1-1.8 8.1-4.4 1.9-8z'
119
- }),
120
- _react2.default.createElement('path', {
121
- style: {
122
- fill: '#B6936B',
123
- stroke: '#3A3A3A',
124
- strokeWidth: 2,
125
- strokeLinecap: 'round',
126
- strokeLinejoin: 'round'
127
- },
128
- d: 'M520.8 129.3L500 205.9s-76.1 8.1-85.9 17.2l16-76.5s45.5-4.7 90.7-17.3z'
129
- }),
130
- _react2.default.createElement('path', {
131
- style: {
132
- fill: '#DBB88E',
133
- stroke: '#3A3A3A',
134
- strokeWidth: 2,
135
- strokeLinecap: 'round',
136
- strokeLinejoin: 'round'
137
- },
138
- d: 'M520.8 129.3s11.9-4.6 36.5-.2c0 0-16.8 49.5-18.3 84.5 0 0-31.5-6.7-38.7-6.1l20.5-78.2zm-11.1-47.1s8 38.6 11 47.1c0 0-43.8 14.8-90.7 17.3 0 0 .7-38.1-5.4-47.4 86.6-13.4 71.7-11.2 85.1-17zm-95.6 140.9l14.9-77.8s-24.5-11.1-41.9-20.7l-19.1 101s29.5 2.3 46.1-2.5z'
139
- }),
140
- _react2.default.createElement('path', {
141
- style: {
142
- fill: '#DBB88E',
143
- stroke: '#3A3A3A',
144
- strokeWidth: 2,
145
- strokeLinecap: 'round',
146
- strokeLinejoin: 'round'
147
- },
148
- d: 'M526.7 232.2l-27.5-26.1s-14.5-2.6-85.1 16.9c0 0 13.8 37.5 14.9 41 0 .1 29.6-18.8 97.7-31.8z'
149
- }),
150
- _react2.default.createElement('path', {
151
- style: {
152
- fill: '#8C694D',
153
- stroke: '#3A3A3A',
154
- strokeWidth: 2,
155
- strokeLinecap: 'round',
156
- strokeLinejoin: 'round'
157
- },
158
- d: 'M430 146.6l-69.2-63.8s-17.3 80.3-15.6 91.3l27.8 24.2 14.2-73.8 42.8 22.1z'
159
- }),
160
- _react2.default.createElement('path', {
161
- style: {
162
- fill: '#B6936B',
163
- stroke: '#3A3A3A',
164
- strokeWidth: 2,
165
- strokeLinecap: 'round',
166
- strokeLinejoin: 'round'
167
- },
168
- d: 'M430 146.6l-69.2-63.8s61.5-3.5 99.3-2.2L475 91l-50.3 8.2s6.5 6.8 5.3 47.4z'
169
- }),
170
- _react2.default.createElement('path', {
171
- style: { fill: '#8C694D' },
172
- d: 'M499.6 205.1l-53.9-47.3-18.7 4.8 2.8-14.8 19.7-2 27.9-2.6s-4.8 21.4 29.6 31.7l-7.4 30.2z'
173
- }),
174
- _react2.default.createElement('polyline', {
175
- style: {
176
- fill: 'none',
177
- stroke: '#3A3A3A',
178
- strokeWidth: 2,
179
- strokeLinecap: 'round',
180
- strokeLinejoin: 'round'
181
- },
182
- points: '499.6,205.1\n445.7,157.8 427,162.5 \t\t'
183
- }),
184
- _react2.default.createElement('line', {
185
- style: {
186
- fill: 'none',
187
- stroke: '#3A3A3A',
188
- strokeWidth: 2,
189
- strokeLinecap: 'round',
190
- strokeLinejoin: 'round'
191
- },
192
- x1: '449.5',
193
- y1: '145.8',
194
- x2: '445.7',
195
- y2: '157.8'
196
- }),
197
- _react2.default.createElement('ellipse', {
198
- transform: 'matrix(0.9045 -0.4264 0.4264 0.9045 -17.8175 136.7072)',
199
- style: {
200
- fill: '#FFEAD4',
201
- stroke: '#565656',
202
- strokeWidth: 2,
203
- strokeMiterlimit: 10
204
- },
205
- cx: '296.4',
206
- cy: '108.1',
207
- rx: '55.4',
208
- ry: '69.2'
209
- }),
210
- _react2.default.createElement('path', { d: 'M277.9 94.1c37.5-11.5 34.7-35.3 34.7-35.3 5.9 4.3 2.2 12 2.2 12l1.4-.4c6.1-1.8 12.6 0 16.9 4.7.7.8 1.4 1.7 2 2.7 8.4 12.3 14.1 9.6 14.1 9.6l.9-14.3c-5.6-73.1-55.9-61.9-55.9-61.9-.7-6.7 5.3-3.8 5.3-3.8-5.9-4.6-9.7 2.1-9.7 2.1-2.4-8.3 6.7-9.4 6.7-9.4-12.5.3-12.3 8.6-12.3 8.6-3.6-8.6-12.8-5.3-12.8-5.3 10.4 2.4 8.6 7.4 8.6 7.4-8.7-1-26.7 7.2-26.7 7.2-57.4 30.1-27.9 85.3-27.9 85.3l16.4 26.5s6.2-4.1 1.6-9.1-1.9-17.4 0-20.3C246.9 95 256.6 90 256.6 90c.6 5.2-5.2 9.6-5.2 9.6 9.7-2 18.5-15.1 18.5-15.1 1.4 8-8.3 15.1-8.3 15.1 11.6-2.3 21.5-9.8 26.9-20.3 2.3 3.6-10.6 14.8-10.6 14.8' }),
211
- _react2.default.createElement('path', {
212
- style: {
213
- fill: '#FFEAD4',
214
- stroke: '#565656',
215
- strokeWidth: 2,
216
- strokeMiterlimit: 10
217
- },
218
- d: 'M297.4 174.7s4.9 11.8 19.6 8.1 17.2-10 17.2-10c1-2.1 1.3-4.4.6-6.6.1-.1-16.9 12.7-37.4 8.5z'
219
- }),
220
- _react2.default.createElement('path', {
221
- style: {
222
- fill: '#D6696E',
223
- stroke: '#4C4C4C',
224
- strokeWidth: 2,
225
- strokeLinecap: 'round',
226
- strokeLinejoin: 'round'
227
- },
228
- d: 'M299.2 177.7s-50.2-27-36.8 17.4-17.8 69.4-16.7 79.8c0 0 86.8 34.4 97.5 0l19.6-83.7s-14.8-27.5-28.5-18.4c-8.1 5.3-24.1 17.2-35.1 4.9z'
229
- }),
230
- _react2.default.createElement('path', {
231
- style: {
232
- fill: '#D6696E',
233
- stroke: '#4C4C4C',
234
- strokeWidth: 2,
235
- strokeLinecap: 'round',
236
- strokeLinejoin: 'round'
237
- },
238
- d: 'M271.1 173.7c13.1 4.6 48.6 16.6 55.6 15.9 0 0 10.5 19.5-3.4 42.8 0 0-35.4-5.4-51.7-24.7-11.1-13.1-13-24.6-10.6-30.9 1.4-3.9 6.3-4.5 10.1-3.1z'
239
- }),
240
- _react2.default.createElement('path', {
241
- style: {
242
- fill: '#FFEAD4',
243
- stroke: '#565656',
244
- strokeWidth: 2,
245
- strokeLinecap: 'round',
246
- strokeLinejoin: 'round'
247
- },
248
- d: 'M419.8 191.2c-3.3 2.2-7 3.9-10.8 5.1-7.3 2.3-11.7.7-11.7.7s-36.4 41.3-71.9 31.2c0 0 9.4-15.9 3.8-34.7 0 0 20.7 9.6 59.7-15.5 0 0 5-17.2 14.5-19.7 11.4-3.1 16.6-.9 16.6-.9s-.2-.7 5.7 1c3.2.9 3.5 7.9 1.4 7.6-6.9-1.4-6.7-1.1-10.9-1.1-2.6-.1-5.1.1-7.7.7 0 0 .9-3.7 18.5.4 0 0 3 3.6 2.3 7-.5 2.5-4.6 1.2-4.6 1.2-5-.7-10.1-.7-15.1-.1 0 0 10.7.2 17.7 2 0 0 3.8 4.3 0 7.1l-13.3-.3s9.5 1.7 13.3.3c0 0 1.3 4.5-2.9 6.8-1.3.7-3 1.2-4.6 1.2z'
249
- }),
250
- _react2.default.createElement('path', {
251
- style: {
252
- fill: 'none',
253
- stroke: '#000000',
254
- strokeWidth: 3,
255
- strokeLinecap: 'round',
256
- strokeLinejoin: 'round'
257
- },
258
- d: 'M272.9 130.2s8.5-6.7 19.5-7.5m-10.8 10.7s6.1-3.2 9-3.2'
259
- }),
260
- _react2.default.createElement('path', { d: 'M286.7 122.5c-2.5 1.7-5.3 2.7-8.2 2.9-.1.4-.1.7-.1 1.1 0 2.8 2.3 5.1 5.1 5.2 2.8 0 5.1-2.3 5.2-5.1-.1-1.7-.8-3.2-2-4.1z' }),
261
- _react2.default.createElement('path', {
262
- style: {
263
- fill: 'none',
264
- stroke: '#000000',
265
- strokeWidth: 3,
266
- strokeLinecap: 'round',
267
- strokeLinejoin: 'round'
268
- },
269
- d: 'M308.8 117.8s8.7-6.3 19.8-6.7m-11.2 10.3s6.2-3 9.1-2.9'
270
- }),
271
- _react2.default.createElement('path', { d: 'M322.9 110.6c-2.5 1.6-5.4 2.5-8.3 2.6-.1.3-.1.7-.2 1.1-.1 2.8 2.1 5.2 4.9 5.4s5.2-2.1 5.4-4.9c.1-1.6-.6-3.2-1.8-4.2z' }),
272
- _react2.default.createElement('path', {
273
- style: {
274
- fill: 'none',
275
- stroke: '#565656',
276
- strokeWidth: 2,
277
- strokeLinecap: 'round',
278
- strokeMiterlimit: 10
279
- },
280
- d: 'M297.4 121.4c1.6-2.3 4.4-3.5 7.2-2.9m-5.8 5.9s1.1-5 6.5-3.2'
281
- }),
282
- _react2.default.createElement('path', {
283
- style: { fill: '#565656' },
284
- d: 'M310.3 157c-.2-1.6 1-3 2.6-3.2h.6c2 .3 3.6 1.9 4 3.9.4 1.5.2 3.1-.6 4.4-.7 1.2-2.3 1.6-3.5.9-.2-.1-.4-.3-.6-.4-1.3-1.4-3.4.7-2.1 2.1 2 2.1 5.3 2.2 7.5.4 2.5-2.1 3-5.9 2-8.9-1-3.3-4-5.5-7.4-5.5-3.2.2-5.7 2.9-5.5 6.1.2 2.1 3.2 2.1 3 .2z'
285
- }),
286
- _react2.default.createElement('path', {
287
- style: { fill: '#565656' },
288
- d: 'M310.8 157.4c.2-.6.8-.9 1.4-.8.1 0 .1 0 .2.1.8.5 1 2 1.1 2.8.3 1.9 3.2 1.1 2.9-.8-.4-2.1-1.2-4.5-3.6-5-2.1-.5-4.3.8-4.9 2.9-.6 1.9 2.3 2.7 2.9.8z'
289
- }),
290
- _react2.default.createElement('path', {
291
- style: {
292
- fill: '#FFEAD4',
293
- stroke: '#565656',
294
- strokeWidth: 2,
295
- strokeLinecap: 'round',
296
- strokeLinejoin: 'round'
297
- },
298
- d: 'M237.3 120.6s-8.3-2.6-10 2.3c-3 8.7 7.5 21.4 16.6 25.6 6.6 3.1 8 2.2 10.7.8 3.2-1.7-6.6-13.2-7.4-15s-7-14.2-9.9-13.7z'
299
- }),
300
- _react2.default.createElement('path', {
301
- style: {
302
- fill: '#FFEAD4',
303
- stroke: '#565656',
304
- strokeWidth: 2,
305
- strokeLinecap: 'round',
306
- strokeLinejoin: 'round'
307
- },
308
- d: 'M232.2 126.5s3.6-2.4 5.7 0c2.2 2.4 1.6 9.1 9.1 15.1'
309
- }),
310
- _react2.default.createElement('path', {
311
- style: { fill: '#EAC3A0' },
312
- d: 'M243.8 141.8s-7.8-2-9.5-7.4.9-5.2.9-5.2-.3 7.7 8.6 12.6zm60.6-7.4s-3.3 10.8 1.1 9.9c4.8-.9 5.9-3 5.9-3s-7.6 2.9-7-6.9z'
313
- }),
314
- _react2.default.createElement('path', {
315
- style: { fill: '#565656' },
316
- d: 'M300.8 134.4c1.4 2.4 1 4.4.1 6.9-.6 1.5.2 3.2 1.7 3.8 3.6 1.4 8.8-.2 10.7-3.4 1-1.6-1.6-3.2-2.6-1.5s-2.8 2.2-4.7 2.3c-.5 0-1.9.2-2.2-.2s.4-1.3.5-1.6c.7-2.6.4-5.4-1-7.8-.8-1.7-3.4-.2-2.5 1.5z'
317
- }),
318
- _react2.default.createElement('line', {
319
- style: {
320
- fill: 'none',
321
- stroke: '#565656',
322
- strokeWidth: 3,
323
- strokeLinecap: 'round',
324
- strokeMiterlimit: 10
325
- },
326
- x1: '331.8',
327
- y1: '102.4',
328
- x2: '348.7',
329
- y2: '81.2'
330
- }),
331
- _react2.default.createElement('line', {
332
- style: {
333
- fill: 'none',
334
- stroke: '#565656',
335
- strokeWidth: 2,
336
- strokeLinecap: 'round',
337
- strokeMiterlimit: 10
338
- },
339
- x1: '334.4',
340
- y1: '106.1',
341
- x2: '348.2',
342
- y2: '85.1'
343
- }),
344
- _react2.default.createElement('line', {
345
- style: {
346
- fill: 'none',
347
- stroke: '#565656',
348
- strokeWidth: 3,
349
- strokeLinecap: 'round',
350
- strokeMiterlimit: 10
351
- },
352
- x1: '241.2',
353
- y1: '122.7',
354
- x2: '264.9',
355
- y2: '130.1'
356
- }),
357
- _react2.default.createElement('line', {
358
- style: {
359
- fill: 'none',
360
- stroke: '#565656',
361
- strokeWidth: 2,
362
- strokeLinecap: 'round',
363
- strokeMiterlimit: 10
364
- },
365
- x1: '266.9',
366
- y1: 134,
367
- x2: '243.9',
368
- y2: '126.1'
369
- }),
370
- _react2.default.createElement('path', {
371
- style: { fill: '#EAC3A0' },
372
- d: 'M271.5 129.1s5.5-16.8 22.3-7.4c0 0-10.6-1.2-22.3 7.4zm35.8-11.8s6.5-17.4 21.6-7.7c0 .1-10.4-.2-21.6 7.7zm-47.4 2.6s16.6-12.6 18.5-13 .8-5.1-1.7-5.4l-16.8 18.4z'
373
- }),
374
- _react2.default.createElement('path', { d: 'M274.2 101.1s-5.3 3.1-14.3 18.8c0 0 13-11.5 17.6-14 0 0 2-5.4-3.3-4.8z' }),
375
- _react2.default.createElement('path', {
376
- style: { fill: '#EAC3A0' },
377
- d: 'M332.2 95.6s-16.1-1-21.5.2c-2.6.6-4-4.6-2.1-6.2l23.6 6z'
378
- }),
379
- _react2.default.createElement('path', { d: 'M309.8 88.2s6.1-.4 22.4 7.4c0 0-17.3-2.2-22.4-1.6 0 0-4.7-3.3 0-5.8z' }),
380
- _react2.default.createElement('path', {
381
- style: {
382
- fill: '#FFEAD4',
383
- stroke: '#565656',
384
- strokeWidth: 2,
385
- strokeLinecap: 'round',
386
- strokeLinejoin: 'round'
387
- },
388
- d: 'M348.7 81.2s3.8-7.9 8.3-6c9.8 4 6.8 18.9 5.4 27.6-.8 5.1-2.3 8.2-5 9.2-3.3 1.3-4.8-13.1-5.5-14.9s-5.5-14.1-3.2-15.9z'
389
- }),
390
- _react2.default.createElement('path', {
391
- style: {
392
- fill: '#FFEAD4',
393
- stroke: '#565656',
394
- strokeWidth: 2,
395
- strokeLinecap: 'round',
396
- strokeLinejoin: 'round'
397
- },
398
- d: 'M356.6 81.3s-4.2.6-4.3 3.8 4.9 7.9 3.3 17.3'
399
- }),
400
- _react2.default.createElement('path', {
401
- style: { fill: '#EAC3A0' },
402
- d: 'M357.8 100.2s4.8-6.6 2.4-11.8c-2.9-6.4-4.1-3.6-4-3.4 0 0 5.2 5.6 1.6 15.2z'
403
- }),
404
- _react2.default.createElement('path', {
405
- style: {
406
- fill: '#F0FDFF',
407
- stroke: '#BADBDD',
408
- strokeMiterlimit: 10
409
- },
410
- d: 'M182.1 95.3s-21.5-10.5-24.9-8.9-1.9 6 5.8 7.1c4.5.7 7.2-1.7 19.1 1.8zm33 49.9s-16.4 4.4-16.8 8.2 3.1 7 7.2 2.9c2.5-2.3 2.1-6.4 9.6-11.1zm164.3-98s19.1-14.2 23.1-12.4 3.9 7.2-3.8 9c-4.4 1.2-8-1.6-19.3 3.4z'
411
- }),
412
- _react2.default.createElement('path', {
413
- style: { fill: '#C96169' },
414
- d: 'M250.5 270.9s24.5-30.3 20.9-55.8c0 0 10 30.9-20.9 55.8zm74.7-75.6s5.4 20.6-2.2 31.7c0 0-24-.8-40.4-15 0 0 28.6 15 37.7 10.8 0 0 6.3-4.3 4.9-27.5zm5.3 61.5s-7.4 27.3-41.9 21.3c0 0 30.9 6 35.5 2.2s6.4-23.5 6.4-23.5zm5.8-82.8c-5 6.1-11.8 10.4-19.4 12.4 0 0 16.1-.2 19.4-12.4z'
415
- }),
416
- _react2.default.createElement('circle', {
417
- style: {
418
- fill: 'none',
419
- stroke: '#444444',
420
- strokeWidth: 2,
421
- strokeMiterlimit: 10
422
- },
423
- cx: '320.7',
424
- cy: '115.3',
425
- r: '16.5'
426
- }),
427
- _react2.default.createElement('circle', {
428
- style: {
429
- fill: 'none',
430
- stroke: '#444444',
431
- strokeWidth: 2,
432
- strokeMiterlimit: 10
433
- },
434
- cx: '283.4',
435
- cy: '130.2',
436
- r: '16.5'
437
- }),
438
- _react2.default.createElement('circle', {
439
- style: {
440
- opacity: '0.25',
441
- fill: '#F0FAFC',
442
- stroke: '#606060',
443
- strokeWidth: 2,
444
- strokeMiterlimit: 10,
445
- enableBackground: 'new'
446
- },
447
- cx: '320.7',
448
- cy: '115.3',
449
- r: '16.5'
450
- }),
451
- _react2.default.createElement('circle', {
452
- style: {
453
- opacity: '0.25',
454
- fill: '#F0FAFC',
455
- stroke: '#606060',
456
- strokeWidth: 2,
457
- strokeMiterlimit: 10,
458
- enableBackground: 'new'
459
- },
460
- cx: '283.4',
461
- cy: '130.2',
462
- r: '16.5'
463
- }),
464
- _react2.default.createElement('path', {
465
- style: {
466
- fill: '#B6936B',
467
- stroke: '#3A3A3A',
468
- strokeWidth: 2,
469
- strokeLinecap: 'round',
470
- strokeLinejoin: 'round'
471
- },
472
- d: 'M34 298.7l6.3 77s62.7 19.1 70.1 30.6l-2-76C82.5 322.6 57.5 312 34 298.7z'
473
- }),
474
- _react2.default.createElement('path', {
475
- style: {
476
- fill: '#DBB88E',
477
- stroke: '#3A3A3A',
478
- strokeWidth: 2,
479
- strokeLinecap: 'round',
480
- strokeLinejoin: 'round'
481
- },
482
- d: 'M34 298.7s-10-7.2-33-7.2c0 0 7.1 47.5 2.8 85 0 0 29.5-1.1 36 1L34 298.7z'
483
- }),
484
- _react2.default.createElement('path', {
485
- style: {
486
- fill: '#DBB88E',
487
- stroke: '#3A3A3A',
488
- strokeWidth: 2,
489
- strokeLinecap: 'round',
490
- strokeLinejoin: 'round'
491
- },
492
- d: 'M32.8 239.8s5.2 50.5 1.2 59c23.4 13.6 48.4 24.2 74.5 31.6 0 0 5.5-40.6 12.6-49.3 0-.1-73.5-29.9-88.3-41.3zm77.6 166.5l-.8-77.2s20.4-5.8 37.7-12.7l-1.8 81.6s-23.9 2.9-35.1 8.3zm-98.6-7.7l29.1-22.4s53.1 13 69.5 30.1c0 0-19.1 25-20.7 28.6 0 0-17.1-13.2-77.9-36.3z'
493
- }),
494
- _react2.default.createElement('path', {
495
- style: {
496
- fill: '#8C694D',
497
- stroke: '#3A3A3A',
498
- strokeWidth: 2,
499
- strokeLinecap: 'round',
500
- strokeLinejoin: 'round'
501
- },
502
- d: 'M108.5 330.3l74.2-43.5s1.3 69.2-1.9 80.6l-34.5 20.8 1.1-71.9-38.9 14z'
503
- }),
504
- _react2.default.createElement('path', {
505
- style: {
506
- fill: '#B6936B',
507
- stroke: '#3A3A3A',
508
- strokeWidth: 2,
509
- strokeLinecap: 'round',
510
- strokeLinejoin: 'round'
511
- },
512
- d: 'M108.5 330.3l74.2-43.5s-38.6-24.4-73-30.2L88 267.1l33.1 13.9s-7.1 6-12.6 49.3z'
513
- }),
514
- _react2.default.createElement('path', {
515
- style: { fill: '#8C694D' },
516
- d: 'M40.8 375l51.7-35.8 16.2 8.6-.2-16.2-17.5-5.9-24.8-9.2s5.5 28.9-27.2 33.3l1.8 25.2z'
517
- }),
518
- _react2.default.createElement('polyline', {
519
- style: {
520
- fill: 'none',
521
- stroke: '#3A3A3A',
522
- strokeWidth: 2,
523
- strokeLinecap: 'round',
524
- strokeLinejoin: 'round'
525
- },
526
- points: '40.8,375\n92.5,339.2 108.6,347.8 \t\t'
527
- }),
528
- _react2.default.createElement('line', {
529
- style: {
530
- fill: 'none',
531
- stroke: '#3A3A3A',
532
- strokeWidth: 2,
533
- strokeLinecap: 'round',
534
- strokeLinejoin: 'round'
535
- },
536
- x1: 91,
537
- y1: '325.7',
538
- x2: '92.5',
539
- y2: '339.2'
540
- }),
541
- _react2.default.createElement('path', {
542
- style: {
543
- fill: '#DBB88E',
544
- stroke: '#3A3A3A',
545
- strokeWidth: 2,
546
- strokeLinecap: 'round',
547
- strokeLinejoin: 'round'
548
- },
549
- d: 'M360.8 302.6s27.6-4.3 39.1-23.1l70.9 38.2s-4.7 12.9-22.1 26.8l-87.9-41.9z'
550
- }),
551
- _react2.default.createElement('path', {
552
- style: {
553
- fill: '#DBB88E',
554
- stroke: '#3A3A3A',
555
- strokeWidth: 2,
556
- strokeLinecap: 'round',
557
- strokeLinejoin: 'round'
558
- },
559
- d: 'M523.2 305.3s-31.2 20.1-55.1 17.6l2.6-5.2-64-33.7s20-3.4 32.1-14.9c.1 0 51.7 19.7 84.4 36.2z'
560
- }),
561
- _react2.default.createElement('path', {
562
- style: {
563
- fill: '#B6936B',
564
- stroke: '#3A3A3A',
565
- strokeWidth: 2,
566
- strokeLinecap: 'round',
567
- strokeLinejoin: 'round'
568
- },
569
- d: 'M448.7 344.5l1.4 76.7 75.1-35.3s-2.9-39.2-1.9-80.5c-24.2 14.2-49.1 27.3-74.6 39.1z'
570
- }),
571
- _react2.default.createElement('path', {
572
- style: {
573
- fill: '#8C694D',
574
- stroke: '#3A3A3A',
575
- strokeWidth: 2,
576
- strokeLinecap: 'round',
577
- strokeLinejoin: 'round'
578
- },
579
- d: 'M360.8 302.6s11 78.2 5.3 85.5l84 33.1-1.4-76.7-87.9-41.9z'
580
- }),
581
- _react2.default.createElement('path', {
582
- style: { fill: '#664E2A' },
583
- d: 'M468.8 324.3s-8.7 12.4-13.4 15.8c0 0 20.3-9.7 38-19.4 0 0-12.7 4.3-24.6 3.6z'
584
- }),
585
- _react2.default.createElement('path', {
586
- style: {
587
- fill: '#B6936B',
588
- stroke: '#3A3A3A',
589
- strokeWidth: 2,
590
- strokeLinecap: 'round',
591
- strokeLinejoin: 'round'
592
- },
593
- d: 'M366.5 354.6l-77.3-21.7s-62.4 30.5-77.5 29.9l84.9 15.5c0-.1 28.3-4.2 69.9-23.7z'
594
- }),
595
- _react2.default.createElement('path', {
596
- style: {
597
- fill: '#DBB88E',
598
- stroke: '#3A3A3A',
599
- strokeWidth: 2,
600
- strokeLinecap: 'round',
601
- strokeLinejoin: 'round'
602
- },
603
- d: 'M366.5 354.6s4-10 24-26.3c0 0-48.6-.7-83.2-26.8 0 0-14.1 25.6-19.5 29.8l78.7 23.3z'
604
- }),
605
- _react2.default.createElement('path', {
606
- style: {
607
- fill: '#DBB88E',
608
- stroke: '#3A3A3A',
609
- strokeWidth: 2,
610
- strokeLinecap: 'round',
611
- strokeLinejoin: 'round'
612
- },
613
- d: 'M405.9 373.2s-33.2-10.1-39.4-18.6c0 0-21 14.2-69.9 23.6 0 0 37 29.1 42 40.2 0 0 48.4-39.5 67.3-45.2z'
614
- }),
615
- _react2.default.createElement('path', {
616
- style: {
617
- fill: '#DBB88E',
618
- stroke: '#3A3A3A',
619
- strokeWidth: 2,
620
- strokeLinecap: 'round',
621
- strokeLinejoin: 'round'
622
- },
623
- d: 'M211.7 361.3l85.6 17.2s-4.8 20.8-6.9 39.5l-105.5-27.5c-.1.1 12.6-14.1 26.8-29.2z'
624
- }),
625
- _react2.default.createElement('path', {
626
- style: {
627
- fill: '#DBB88E',
628
- stroke: '#3A3A3A',
629
- strokeWidth: 2,
630
- strokeLinecap: 'round',
631
- strokeLinejoin: 'round'
632
- },
633
- d: 'M264.8 306.3l23.6 26.8s-51.4 26-76.7 29.6c0 0-25.2-20.3-27.8-23.8 0 0 27.7-19.8 80.9-32.6z'
634
- }),
635
- _react2.default.createElement('path', {
636
- style: {
637
- fill: '#8C694D',
638
- stroke: '#3A3A3A',
639
- strokeWidth: 2,
640
- strokeLinecap: 'round',
641
- strokeLinejoin: 'round'
642
- },
643
- d: 'M296.6 378.2l4.5 88.8s-74-24.1-83.5-33.7l-2.3-34 75 20.1 6.3-41.2z'
644
- }),
645
- _react2.default.createElement('path', {
646
- style: {
647
- fill: '#B6936B',
648
- stroke: '#3A3A3A',
649
- strokeWidth: 2,
650
- strokeLinecap: 'round',
651
- strokeLinejoin: 'round'
652
- },
653
- d: 'M296.6 378.2l4.5 88.8s43.9-18.1 67.3-43.6l.9-28.4-30.8 23.4c.1 0-2.1-9.5-41.9-40.2z'
654
- }),
655
- _react2.default.createElement('path', {
656
- style: { fill: '#8C694D' },
657
- d: 'M291.1 333.7l7.4 39-7.6 3.2 6.3 1.5 28.9-7.5 1.2.8s-9.8-5.8-6.8-28.3l-29.4-8.7z'
658
- }),
659
- _react2.default.createElement('polyline', {
660
- style: {
661
- fill: 'none',
662
- stroke: '#3A3A3A',
663
- strokeWidth: 2,
664
- strokeLinecap: 'round',
665
- strokeLinejoin: 'round'
666
- },
667
- points: '289.7,333.7\n297.1,372.4 286.2,376.7 \t\t'
668
- }),
669
- _react2.default.createElement('line', {
670
- style: {
671
- fill: 'none',
672
- stroke: '#3A3A3A',
673
- strokeWidth: 2,
674
- strokeLinecap: 'round',
675
- strokeLinejoin: 'round'
676
- },
677
- x1: '307.7',
678
- y1: '375.9',
679
- x2: '297.1',
680
- y2: '372.4'
681
- }),
682
- _react2.default.createElement('ellipse', {
683
- transform: 'matrix(0.9967 -8.106875e-02 8.106875e-02 0.9967 -33.306 46.0282)',
684
- style: {
685
- fill: '#F2FCFB',
686
- stroke: '#000000',
687
- strokeWidth: 3,
688
- strokeLinecap: 'round',
689
- strokeLinejoin: 'round'
690
- },
691
- cx: '550.2',
692
- cy: '433.2',
693
- rx: '16.7',
694
- ry: '8.1'
695
- }),
696
- _react2.default.createElement('path', {
697
- style: {
698
- fill: '#212121',
699
- stroke: '#000000',
700
- strokeWidth: 2,
701
- strokeLinecap: 'round',
702
- strokeLinejoin: 'round'
703
- },
704
- d: 'M494.6 435.7l25.8-2.1c1.1-.1 2.1.7 2.2 1.8l.1.6c.1 1.1-.7 2.1-1.8 2.2l-25.8 2.1c-1.1.1-2.1-.7-2.2-1.8l-.1-.6c-.1-1.1.7-2.1 1.8-2.2z'
705
- }),
706
- _react2.default.createElement('path', {
707
- style: { fill: '#FFFFFF' },
708
- d: 'M565.8 431.9s-6.8-8.9-24.3-1.4c-.1 0 13.1-4.9 24.3 1.4z'
709
- }),
710
- _react2.default.createElement('line', {
711
- style: {
712
- fill: 'none',
713
- stroke: '#000000',
714
- strokeWidth: 3,
715
- strokeLinecap: 'round',
716
- strokeLinejoin: 'round'
717
- },
718
- x1: '522.7',
719
- y1: '435.7',
720
- x2: '532.6',
721
- y2: '434.8'
722
- }),
723
- _react2.default.createElement('ellipse', {
724
- transform: 'matrix(0.9967 -8.106875e-02 8.106875e-02 0.9967 -33.0638 45.9963)',
725
- style: {
726
- fill: '#F2FCFB',
727
- stroke: '#000000',
728
- strokeWidth: 3,
729
- strokeLinecap: 'round',
730
- strokeLinejoin: 'round'
731
- },
732
- cx: '549.9',
733
- cy: '430.2',
734
- rx: '16.7',
735
- ry: '8.1'
736
- }),
737
- _react2.default.createElement('path', {
738
- style: {
739
- fill: '#212121',
740
- stroke: '#000000',
741
- strokeWidth: 2,
742
- strokeLinecap: 'round',
743
- strokeLinejoin: 'round'
744
- },
745
- d: 'M492.5 435.5l-.1-.6c-.1-1.1.7-2.1 1.8-2.2l25.8-2.1c1.1-.1 2.1.7 2.2 1.8l.1.6c.1 1.1-.7 2.1-1.8 2.2l-25.8 2.1c-1.1.1-2.1-.7-2.2-1.8z'
746
- }),
747
- _react2.default.createElement('path', {
748
- style: { fill: '#FFFFFF' },
749
- d: 'M563.5 429.1s-6.8-8.9-24.3-1.4c0 0 13.1-4.9 24.3 1.4z'
750
- }),
751
- _react2.default.createElement('line', {
752
- style: {
753
- fill: 'none',
754
- stroke: '#000000',
755
- strokeWidth: 3,
756
- strokeLinecap: 'round',
757
- strokeLinejoin: 'round'
758
- },
759
- x1: '522.4',
760
- y1: '432.7',
761
- x2: '532.4',
762
- y2: '431.8'
763
- }),
764
- _react2.default.createElement('path', {
765
- style: {
766
- fill: '#F0FCFF',
767
- stroke: '#3A3A3A',
768
- strokeWidth: 2,
769
- strokeLinecap: 'round',
770
- strokeLinejoin: 'round'
771
- },
772
- d: 'M462.4 225.1s17.9 2.2 22.8 25.7-6.3 30-6.3 30c13.8-3.2 26.2-9.1 36.1-20.1 0 0 5.5-41.3-23.1-49.9 0 .1 5.7 12.2-29.5 14.3zm148.5 105s-16.2-4.6-23.9-27.1 1.5-26.8 1.5-26.8c-11.8 1.2-22 4.9-29.3 13.4 0 0 .8 37.4 27.4 49.4 0 0-6.7-12 24.3-8.9zm-68.6 54.5s34.1 25.5 61.8 3.5c0 0 .8-22.8-15.8-29.8 0 0-2.6 22.6-34.5 3.1 0 0 2 11.4-11.5 23.2zm-342.8 32s-9.8 15.1-35.2 16-27-9.7-27-9.7c-2.5 12.4-2 23.9 4.5 34 0 0 38.5 10.7 59.2-12.8 0 0-14.4 3.1-1.5-27.5zm473.7-47.2s45.5 7.3 57.8-16c0 0-17.8-7-14.1-18.8 0 0-26.3 16.4-48.9 6.7 0-.1-6.2 9 5.2 28.1z'
773
- })
774
- )
775
- );
776
- }
777
- }]);
778
-
779
- return InvalidUrl;
780
- }(_react2.default.Component);
781
-
782
- exports.default = InvalidUrl;
783
-
784
-
785
- InvalidUrl.propTypes = {
786
- alignHorizontal: _propTypes2.default.bool,
787
- className: _propTypes2.default.string,
788
- isFluid: _propTypes2.default.bool
789
- };
790
- InvalidUrl.defaultProps = {
791
- alignHorizontal: true,
792
- className: ''
793
- };
794
-
795
- if (false) {
796
- InvalidUrl.docs = {
797
- componentGroup: 'SVG'
798
- };
799
- }