@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,755 +0,0 @@
1
- import React from 'react';
2
- import PropTypes from 'prop-types';
3
- import SVG from './SVG';
4
- export default class InvalidUrl extends React.Component {
5
- render() {
6
- let { className, alignHorizontal, isFluid } = this.props;
7
- return (
8
- <SVG
9
- viewBox='0 0 732 479.5'
10
- name='invalidUrl'
11
- className={className}
12
- alignHorizontal={alignHorizontal}
13
- isFluid={isFluid}
14
- >
15
- <g>
16
- <ellipse
17
- cx='295.1'
18
- cy='432.5'
19
- rx='93.4'
20
- ry={47}
21
- style={{ opacity: '0.6' }}
22
- />
23
- <ellipse
24
- cx='441.7'
25
- cy='388.5'
26
- rx='106.1'
27
- ry={44}
28
- style={{ opacity: '0.6' }}
29
- />
30
- <ellipse
31
- cx='110.4'
32
- cy='372.9'
33
- rx='106.6'
34
- ry='35.8'
35
- style={{ opacity: '0.6' }}
36
- />
37
- <path
38
- style={{
39
- fill: '#333333',
40
- stroke: '#444444',
41
- strokeMiterlimit: 10
42
- }}
43
- 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'
44
- />
45
- <path
46
- style={{
47
- fill: '#545454',
48
- stroke: '#333333',
49
- strokeLinecap: 'round',
50
- strokeLinejoin: 'round'
51
- }}
52
- 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'
53
- />
54
- <path
55
- style={{
56
- fill: '#CEAA6A',
57
- stroke: '#4C4C4C',
58
- strokeWidth: 2,
59
- strokeLinecap: 'round',
60
- strokeLinejoin: 'round'
61
- }}
62
- 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'
63
- />
64
- <path
65
- style={{ fill: '#9B7A45' }}
66
- 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'
67
- />
68
- <path
69
- style={{
70
- fill: '#54754B',
71
- stroke: '#000000',
72
- strokeWidth: 2,
73
- strokeLinecap: 'round',
74
- strokeLinejoin: 'round'
75
- }}
76
- 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'
77
- />
78
- <path
79
- style={{
80
- fill: '#B6936B',
81
- stroke: '#3A3A3A',
82
- strokeWidth: 2,
83
- strokeLinecap: 'round',
84
- strokeLinejoin: 'round'
85
- }}
86
- d='M520.8 129.3L500 205.9s-76.1 8.1-85.9 17.2l16-76.5s45.5-4.7 90.7-17.3z'
87
- />
88
- <path
89
- style={{
90
- fill: '#DBB88E',
91
- stroke: '#3A3A3A',
92
- strokeWidth: 2,
93
- strokeLinecap: 'round',
94
- strokeLinejoin: 'round'
95
- }}
96
- 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'
97
- />
98
- <path
99
- style={{
100
- fill: '#DBB88E',
101
- stroke: '#3A3A3A',
102
- strokeWidth: 2,
103
- strokeLinecap: 'round',
104
- strokeLinejoin: 'round'
105
- }}
106
- 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'
107
- />
108
- <path
109
- style={{
110
- fill: '#8C694D',
111
- stroke: '#3A3A3A',
112
- strokeWidth: 2,
113
- strokeLinecap: 'round',
114
- strokeLinejoin: 'round'
115
- }}
116
- 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'
117
- />
118
- <path
119
- style={{
120
- fill: '#B6936B',
121
- stroke: '#3A3A3A',
122
- strokeWidth: 2,
123
- strokeLinecap: 'round',
124
- strokeLinejoin: 'round'
125
- }}
126
- 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'
127
- />
128
- <path
129
- style={{ fill: '#8C694D' }}
130
- 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'
131
- />
132
- <polyline
133
- style={{
134
- fill: 'none',
135
- stroke: '#3A3A3A',
136
- strokeWidth: 2,
137
- strokeLinecap: 'round',
138
- strokeLinejoin: 'round'
139
- }}
140
- points='499.6,205.1
141
- 445.7,157.8 427,162.5 '
142
- />
143
- <line
144
- style={{
145
- fill: 'none',
146
- stroke: '#3A3A3A',
147
- strokeWidth: 2,
148
- strokeLinecap: 'round',
149
- strokeLinejoin: 'round'
150
- }}
151
- x1='449.5'
152
- y1='145.8'
153
- x2='445.7'
154
- y2='157.8'
155
- />
156
- <ellipse
157
- transform='matrix(0.9045 -0.4264 0.4264 0.9045 -17.8175 136.7072)'
158
- style={{
159
- fill: '#FFEAD4',
160
- stroke: '#565656',
161
- strokeWidth: 2,
162
- strokeMiterlimit: 10
163
- }}
164
- cx='296.4'
165
- cy='108.1'
166
- rx='55.4'
167
- ry='69.2'
168
- />
169
- <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' />
170
- <path
171
- style={{
172
- fill: '#FFEAD4',
173
- stroke: '#565656',
174
- strokeWidth: 2,
175
- strokeMiterlimit: 10
176
- }}
177
- 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'
178
- />
179
- <path
180
- style={{
181
- fill: '#D6696E',
182
- stroke: '#4C4C4C',
183
- strokeWidth: 2,
184
- strokeLinecap: 'round',
185
- strokeLinejoin: 'round'
186
- }}
187
- 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'
188
- />
189
- <path
190
- style={{
191
- fill: '#D6696E',
192
- stroke: '#4C4C4C',
193
- strokeWidth: 2,
194
- strokeLinecap: 'round',
195
- strokeLinejoin: 'round'
196
- }}
197
- 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'
198
- />
199
- <path
200
- style={{
201
- fill: '#FFEAD4',
202
- stroke: '#565656',
203
- strokeWidth: 2,
204
- strokeLinecap: 'round',
205
- strokeLinejoin: 'round'
206
- }}
207
- 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'
208
- />
209
- <path
210
- style={{
211
- fill: 'none',
212
- stroke: '#000000',
213
- strokeWidth: 3,
214
- strokeLinecap: 'round',
215
- strokeLinejoin: 'round'
216
- }}
217
- d='M272.9 130.2s8.5-6.7 19.5-7.5m-10.8 10.7s6.1-3.2 9-3.2'
218
- />
219
- <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' />
220
- <path
221
- style={{
222
- fill: 'none',
223
- stroke: '#000000',
224
- strokeWidth: 3,
225
- strokeLinecap: 'round',
226
- strokeLinejoin: 'round'
227
- }}
228
- d='M308.8 117.8s8.7-6.3 19.8-6.7m-11.2 10.3s6.2-3 9.1-2.9'
229
- />
230
- <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' />
231
- <path
232
- style={{
233
- fill: 'none',
234
- stroke: '#565656',
235
- strokeWidth: 2,
236
- strokeLinecap: 'round',
237
- strokeMiterlimit: 10
238
- }}
239
- 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'
240
- />
241
- <path
242
- style={{ fill: '#565656' }}
243
- 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'
244
- />
245
- <path
246
- style={{ fill: '#565656' }}
247
- 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'
248
- />
249
- <path
250
- style={{
251
- fill: '#FFEAD4',
252
- stroke: '#565656',
253
- strokeWidth: 2,
254
- strokeLinecap: 'round',
255
- strokeLinejoin: 'round'
256
- }}
257
- 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'
258
- />
259
- <path
260
- style={{
261
- fill: '#FFEAD4',
262
- stroke: '#565656',
263
- strokeWidth: 2,
264
- strokeLinecap: 'round',
265
- strokeLinejoin: 'round'
266
- }}
267
- d='M232.2 126.5s3.6-2.4 5.7 0c2.2 2.4 1.6 9.1 9.1 15.1'
268
- />
269
- <path
270
- style={{ fill: '#EAC3A0' }}
271
- 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'
272
- />
273
- <path
274
- style={{ fill: '#565656' }}
275
- 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'
276
- />
277
- <line
278
- style={{
279
- fill: 'none',
280
- stroke: '#565656',
281
- strokeWidth: 3,
282
- strokeLinecap: 'round',
283
- strokeMiterlimit: 10
284
- }}
285
- x1='331.8'
286
- y1='102.4'
287
- x2='348.7'
288
- y2='81.2'
289
- />
290
- <line
291
- style={{
292
- fill: 'none',
293
- stroke: '#565656',
294
- strokeWidth: 2,
295
- strokeLinecap: 'round',
296
- strokeMiterlimit: 10
297
- }}
298
- x1='334.4'
299
- y1='106.1'
300
- x2='348.2'
301
- y2='85.1'
302
- />
303
- <line
304
- style={{
305
- fill: 'none',
306
- stroke: '#565656',
307
- strokeWidth: 3,
308
- strokeLinecap: 'round',
309
- strokeMiterlimit: 10
310
- }}
311
- x1='241.2'
312
- y1='122.7'
313
- x2='264.9'
314
- y2='130.1'
315
- />
316
- <line
317
- style={{
318
- fill: 'none',
319
- stroke: '#565656',
320
- strokeWidth: 2,
321
- strokeLinecap: 'round',
322
- strokeMiterlimit: 10
323
- }}
324
- x1='266.9'
325
- y1={134}
326
- x2='243.9'
327
- y2='126.1'
328
- />
329
- <path
330
- style={{ fill: '#EAC3A0' }}
331
- 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'
332
- />
333
- <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' />
334
- <path
335
- style={{ fill: '#EAC3A0' }}
336
- d='M332.2 95.6s-16.1-1-21.5.2c-2.6.6-4-4.6-2.1-6.2l23.6 6z'
337
- />
338
- <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' />
339
- <path
340
- style={{
341
- fill: '#FFEAD4',
342
- stroke: '#565656',
343
- strokeWidth: 2,
344
- strokeLinecap: 'round',
345
- strokeLinejoin: 'round'
346
- }}
347
- 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'
348
- />
349
- <path
350
- style={{
351
- fill: '#FFEAD4',
352
- stroke: '#565656',
353
- strokeWidth: 2,
354
- strokeLinecap: 'round',
355
- strokeLinejoin: 'round'
356
- }}
357
- d='M356.6 81.3s-4.2.6-4.3 3.8 4.9 7.9 3.3 17.3'
358
- />
359
- <path
360
- style={{ fill: '#EAC3A0' }}
361
- 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'
362
- />
363
- <path
364
- style={{
365
- fill: '#F0FDFF',
366
- stroke: '#BADBDD',
367
- strokeMiterlimit: 10
368
- }}
369
- 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'
370
- />
371
- <path
372
- style={{ fill: '#C96169' }}
373
- 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'
374
- />
375
- <circle
376
- style={{
377
- fill: 'none',
378
- stroke: '#444444',
379
- strokeWidth: 2,
380
- strokeMiterlimit: 10
381
- }}
382
- cx='320.7'
383
- cy='115.3'
384
- r='16.5'
385
- />
386
- <circle
387
- style={{
388
- fill: 'none',
389
- stroke: '#444444',
390
- strokeWidth: 2,
391
- strokeMiterlimit: 10
392
- }}
393
- cx='283.4'
394
- cy='130.2'
395
- r='16.5'
396
- />
397
- <circle
398
- style={{
399
- opacity: '0.25',
400
- fill: '#F0FAFC',
401
- stroke: '#606060',
402
- strokeWidth: 2,
403
- strokeMiterlimit: 10,
404
- enableBackground: 'new'
405
- }}
406
- cx='320.7'
407
- cy='115.3'
408
- r='16.5'
409
- />
410
- <circle
411
- style={{
412
- opacity: '0.25',
413
- fill: '#F0FAFC',
414
- stroke: '#606060',
415
- strokeWidth: 2,
416
- strokeMiterlimit: 10,
417
- enableBackground: 'new'
418
- }}
419
- cx='283.4'
420
- cy='130.2'
421
- r='16.5'
422
- />
423
- <path
424
- style={{
425
- fill: '#B6936B',
426
- stroke: '#3A3A3A',
427
- strokeWidth: 2,
428
- strokeLinecap: 'round',
429
- strokeLinejoin: 'round'
430
- }}
431
- d='M34 298.7l6.3 77s62.7 19.1 70.1 30.6l-2-76C82.5 322.6 57.5 312 34 298.7z'
432
- />
433
- <path
434
- style={{
435
- fill: '#DBB88E',
436
- stroke: '#3A3A3A',
437
- strokeWidth: 2,
438
- strokeLinecap: 'round',
439
- strokeLinejoin: 'round'
440
- }}
441
- 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'
442
- />
443
- <path
444
- style={{
445
- fill: '#DBB88E',
446
- stroke: '#3A3A3A',
447
- strokeWidth: 2,
448
- strokeLinecap: 'round',
449
- strokeLinejoin: 'round'
450
- }}
451
- 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'
452
- />
453
- <path
454
- style={{
455
- fill: '#8C694D',
456
- stroke: '#3A3A3A',
457
- strokeWidth: 2,
458
- strokeLinecap: 'round',
459
- strokeLinejoin: 'round'
460
- }}
461
- 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'
462
- />
463
- <path
464
- style={{
465
- fill: '#B6936B',
466
- stroke: '#3A3A3A',
467
- strokeWidth: 2,
468
- strokeLinecap: 'round',
469
- strokeLinejoin: 'round'
470
- }}
471
- 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'
472
- />
473
- <path
474
- style={{ fill: '#8C694D' }}
475
- 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'
476
- />
477
- <polyline
478
- style={{
479
- fill: 'none',
480
- stroke: '#3A3A3A',
481
- strokeWidth: 2,
482
- strokeLinecap: 'round',
483
- strokeLinejoin: 'round'
484
- }}
485
- points='40.8,375
486
- 92.5,339.2 108.6,347.8 '
487
- />
488
- <line
489
- style={{
490
- fill: 'none',
491
- stroke: '#3A3A3A',
492
- strokeWidth: 2,
493
- strokeLinecap: 'round',
494
- strokeLinejoin: 'round'
495
- }}
496
- x1={91}
497
- y1='325.7'
498
- x2='92.5'
499
- y2='339.2'
500
- />
501
- <path
502
- style={{
503
- fill: '#DBB88E',
504
- stroke: '#3A3A3A',
505
- strokeWidth: 2,
506
- strokeLinecap: 'round',
507
- strokeLinejoin: 'round'
508
- }}
509
- 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'
510
- />
511
- <path
512
- style={{
513
- fill: '#DBB88E',
514
- stroke: '#3A3A3A',
515
- strokeWidth: 2,
516
- strokeLinecap: 'round',
517
- strokeLinejoin: 'round'
518
- }}
519
- 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'
520
- />
521
- <path
522
- style={{
523
- fill: '#B6936B',
524
- stroke: '#3A3A3A',
525
- strokeWidth: 2,
526
- strokeLinecap: 'round',
527
- strokeLinejoin: 'round'
528
- }}
529
- 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'
530
- />
531
- <path
532
- style={{
533
- fill: '#8C694D',
534
- stroke: '#3A3A3A',
535
- strokeWidth: 2,
536
- strokeLinecap: 'round',
537
- strokeLinejoin: 'round'
538
- }}
539
- d='M360.8 302.6s11 78.2 5.3 85.5l84 33.1-1.4-76.7-87.9-41.9z'
540
- />
541
- <path
542
- style={{ fill: '#664E2A' }}
543
- 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'
544
- />
545
- <path
546
- style={{
547
- fill: '#B6936B',
548
- stroke: '#3A3A3A',
549
- strokeWidth: 2,
550
- strokeLinecap: 'round',
551
- strokeLinejoin: 'round'
552
- }}
553
- 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'
554
- />
555
- <path
556
- style={{
557
- fill: '#DBB88E',
558
- stroke: '#3A3A3A',
559
- strokeWidth: 2,
560
- strokeLinecap: 'round',
561
- strokeLinejoin: 'round'
562
- }}
563
- 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'
564
- />
565
- <path
566
- style={{
567
- fill: '#DBB88E',
568
- stroke: '#3A3A3A',
569
- strokeWidth: 2,
570
- strokeLinecap: 'round',
571
- strokeLinejoin: 'round'
572
- }}
573
- 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'
574
- />
575
- <path
576
- style={{
577
- fill: '#DBB88E',
578
- stroke: '#3A3A3A',
579
- strokeWidth: 2,
580
- strokeLinecap: 'round',
581
- strokeLinejoin: 'round'
582
- }}
583
- 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'
584
- />
585
- <path
586
- style={{
587
- fill: '#DBB88E',
588
- stroke: '#3A3A3A',
589
- strokeWidth: 2,
590
- strokeLinecap: 'round',
591
- strokeLinejoin: 'round'
592
- }}
593
- 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'
594
- />
595
- <path
596
- style={{
597
- fill: '#8C694D',
598
- stroke: '#3A3A3A',
599
- strokeWidth: 2,
600
- strokeLinecap: 'round',
601
- strokeLinejoin: 'round'
602
- }}
603
- 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'
604
- />
605
- <path
606
- style={{
607
- fill: '#B6936B',
608
- stroke: '#3A3A3A',
609
- strokeWidth: 2,
610
- strokeLinecap: 'round',
611
- strokeLinejoin: 'round'
612
- }}
613
- 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'
614
- />
615
- <path
616
- style={{ fill: '#8C694D' }}
617
- 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'
618
- />
619
- <polyline
620
- style={{
621
- fill: 'none',
622
- stroke: '#3A3A3A',
623
- strokeWidth: 2,
624
- strokeLinecap: 'round',
625
- strokeLinejoin: 'round'
626
- }}
627
- points='289.7,333.7
628
- 297.1,372.4 286.2,376.7 '
629
- />
630
- <line
631
- style={{
632
- fill: 'none',
633
- stroke: '#3A3A3A',
634
- strokeWidth: 2,
635
- strokeLinecap: 'round',
636
- strokeLinejoin: 'round'
637
- }}
638
- x1='307.7'
639
- y1='375.9'
640
- x2='297.1'
641
- y2='372.4'
642
- />
643
- <ellipse
644
- transform='matrix(0.9967 -8.106875e-02 8.106875e-02 0.9967 -33.306 46.0282)'
645
- style={{
646
- fill: '#F2FCFB',
647
- stroke: '#000000',
648
- strokeWidth: 3,
649
- strokeLinecap: 'round',
650
- strokeLinejoin: 'round'
651
- }}
652
- cx='550.2'
653
- cy='433.2'
654
- rx='16.7'
655
- ry='8.1'
656
- />
657
- <path
658
- style={{
659
- fill: '#212121',
660
- stroke: '#000000',
661
- strokeWidth: 2,
662
- strokeLinecap: 'round',
663
- strokeLinejoin: 'round'
664
- }}
665
- 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'
666
- />
667
- <path
668
- style={{ fill: '#FFFFFF' }}
669
- d='M565.8 431.9s-6.8-8.9-24.3-1.4c-.1 0 13.1-4.9 24.3 1.4z'
670
- />
671
- <line
672
- style={{
673
- fill: 'none',
674
- stroke: '#000000',
675
- strokeWidth: 3,
676
- strokeLinecap: 'round',
677
- strokeLinejoin: 'round'
678
- }}
679
- x1='522.7'
680
- y1='435.7'
681
- x2='532.6'
682
- y2='434.8'
683
- />
684
- <ellipse
685
- transform='matrix(0.9967 -8.106875e-02 8.106875e-02 0.9967 -33.0638 45.9963)'
686
- style={{
687
- fill: '#F2FCFB',
688
- stroke: '#000000',
689
- strokeWidth: 3,
690
- strokeLinecap: 'round',
691
- strokeLinejoin: 'round'
692
- }}
693
- cx='549.9'
694
- cy='430.2'
695
- rx='16.7'
696
- ry='8.1'
697
- />
698
- <path
699
- style={{
700
- fill: '#212121',
701
- stroke: '#000000',
702
- strokeWidth: 2,
703
- strokeLinecap: 'round',
704
- strokeLinejoin: 'round'
705
- }}
706
- 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'
707
- />
708
- <path
709
- style={{ fill: '#FFFFFF' }}
710
- d='M563.5 429.1s-6.8-8.9-24.3-1.4c0 0 13.1-4.9 24.3 1.4z'
711
- />
712
- <line
713
- style={{
714
- fill: 'none',
715
- stroke: '#000000',
716
- strokeWidth: 3,
717
- strokeLinecap: 'round',
718
- strokeLinejoin: 'round'
719
- }}
720
- x1='522.4'
721
- y1='432.7'
722
- x2='532.4'
723
- y2='431.8'
724
- />
725
- <path
726
- style={{
727
- fill: '#F0FCFF',
728
- stroke: '#3A3A3A',
729
- strokeWidth: 2,
730
- strokeLinecap: 'round',
731
- strokeLinejoin: 'round'
732
- }}
733
- 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'
734
- />
735
- </g>
736
- </SVG>
737
- );
738
- }
739
- }
740
-
741
- InvalidUrl.propTypes = {
742
- alignHorizontal: PropTypes.bool,
743
- className: PropTypes.string,
744
- isFluid: PropTypes.bool
745
- };
746
- InvalidUrl.defaultProps = {
747
- alignHorizontal: true,
748
- className: ''
749
- };
750
-
751
- if (__DOCS__) {
752
- InvalidUrl.docs = {
753
- componentGroup: 'SVG'
754
- };
755
- }