@zohodesk/svg 1.0.0-beta.4 → 1.0.0-beta.40
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.
- package/README.md +142 -1
- package/lib/Provider.js +213 -0
- package/lib/index.js +48 -27
- package/lib/svg/EmptyAccounts.js +108 -36
- package/lib/svg/EmptyActiveCalls.js +79 -43
- package/lib/svg/EmptyActivity.js +79 -38
- package/lib/svg/EmptyAgent.js +79 -35
- package/lib/svg/EmptyAgentQueue.js +128 -0
- package/lib/svg/EmptyApproval.js +128 -0
- package/lib/svg/EmptyArchived.js +88 -35
- package/lib/svg/EmptyAttach.js +79 -35
- package/lib/svg/EmptyBlueprint.js +94 -35
- package/lib/svg/EmptyBusinessHoliday.js +47 -35
- package/lib/svg/EmptyBusinessHour.js +47 -35
- package/lib/svg/EmptyCallHistory.js +81 -43
- package/lib/svg/EmptyCollision.js +122 -0
- package/lib/svg/EmptyColumn.js +128 -0
- package/lib/svg/EmptyContact.js +79 -36
- package/lib/svg/EmptyContract.js +118 -0
- package/lib/svg/EmptyConversation.js +79 -35
- package/lib/svg/EmptyCrm.js +122 -0
- package/lib/svg/EmptyCrmNotes.js +133 -0
- package/lib/svg/EmptyCrmPotential.js +136 -0
- package/lib/svg/EmptyCustomDomain.js +90 -0
- package/lib/svg/EmptyDashboard.js +86 -36
- package/lib/svg/EmptyDepartment.js +122 -0
- package/lib/svg/EmptyError.js +144 -0
- package/lib/svg/EmptyFeed.js +125 -0
- package/lib/svg/EmptyFollowers.js +123 -0
- package/lib/svg/EmptyFrame.js +121 -0
- package/lib/svg/EmptyFromAddress.js +47 -35
- package/lib/svg/EmptyHappiness.js +79 -35
- package/lib/svg/EmptyHistory.js +79 -42
- package/lib/svg/EmptyImportHistory.js +47 -35
- package/lib/svg/EmptyInconvenience.js +91 -0
- package/lib/svg/EmptyInvoice.js +84 -35
- package/lib/svg/EmptyNetwork.js +47 -35
- package/lib/svg/EmptyNotification.js +79 -35
- package/lib/svg/EmptyProducts.js +82 -35
- package/lib/svg/EmptyRecycleBin.js +47 -35
- package/lib/svg/EmptyReply.js +117 -0
- package/lib/svg/EmptyReports.js +85 -35
- package/lib/svg/EmptyRoles.js +47 -35
- package/lib/svg/EmptySchedule.js +164 -0
- package/lib/svg/EmptySearch.js +89 -35
- package/lib/svg/EmptySkills.js +127 -41
- package/lib/svg/EmptySla.js +117 -0
- package/lib/svg/EmptySnippet.js +98 -50
- package/lib/svg/EmptyStateVariables.module.css +39 -0
- package/lib/svg/EmptyTag.js +82 -35
- package/lib/svg/EmptyTask.js +95 -35
- package/lib/svg/EmptyTeams.js +79 -35
- package/lib/svg/EmptyTemplate.js +91 -36
- package/lib/svg/EmptyTicket.js +82 -35
- package/lib/svg/EmptyTimeEntry.js +85 -35
- package/lib/svg/EmptyTimeline.js +122 -0
- package/lib/svg/EmptyTopic.js +85 -35
- package/lib/svg/EmptyUnauthorizedLogin.js +97 -0
- package/lib/svg/EmptyWebhook.js +47 -35
- package/lib/svg/EmptyWillBeRightBack.js +92 -0
- package/lib/svg/ErrorInconvenience.js +163 -0
- package/lib/svg/ErrorOopsSomethingMiss.js +164 -0
- package/lib/svg/ErrorUnableToProcessRequest.js +164 -0
- package/lib/svg/ErrorUnauthorizedLogin.js +163 -0
- package/lib/svg/ErrorUrlNotFound.js +164 -0
- package/lib/svg/ErrorWillBeRightBack.js +163 -0
- package/lib/svg/Extractor.js +116 -0
- package/lib/svg/FailureLog.js +47 -35
- package/lib/svg/Import.js +132 -0
- package/lib/svg/Loader.js +77 -33
- package/lib/svg/NoRequestFound.js +47 -43
- package/lib/svg/NotImpossible.js +129 -0
- package/lib/svg/PageNotFound.js +49 -44
- package/lib/svg/Predictor.js +123 -0
- package/lib/svg/SVG.js +88 -81
- package/lib/svg/SVG.module.css +9 -2
- package/lib/svg/SvgLoader.js +66 -0
- package/lib/svg/UnableToProcessRequest.js +48 -43
- package/lib/svg/UnauthorizedLogin.js +48 -43
- package/lib/svg/UrlNotFound.js +49 -44
- package/lib/svg/WillBeRightBack.js +49 -44
- package/lib/svg/ZiaAnamoly.js +117 -0
- package/lib/svg/docs/SVG__common.docs.js +98 -0
- package/lib/svg/docs/SVG__default.docs.js +327 -657
- package/lib/svg/docs/SVG__errorstate.docs.js +129 -0
- package/lib/svg/docs/SVGdocstyle.module.css +8 -0
- package/lib/svg/images/EmptyCustomDomain.svg +85 -0
- package/lib/svg/images/EmptySkills.svg +75 -67
- package/lib/svg/utils.js +26 -0
- package/package.json +20 -6
- package/preprocess/index.js +2 -0
- package/preprocess/json/svgAppearanceVariableJson.js +151 -0
- package/preprocess/json/svgThemeVariableJson.js +71 -0
- package/preprocess/svgAppearanceColors.js +63 -0
- package/preprocess/svgThemeColors.js +92 -0
- package/src/Provider.js +141 -0
- package/src/index.js +5 -1
- package/src/svg/EmptyAccounts.js +100 -9
- package/src/svg/EmptyActiveCalls.js +63 -14
- package/src/svg/EmptyActivity.js +63 -9
- package/src/svg/EmptyAgent.js +65 -9
- package/src/svg/EmptyAgentQueue.js +94 -0
- package/src/svg/EmptyApproval.js +85 -0
- package/src/svg/EmptyArchived.js +74 -8
- package/src/svg/EmptyAttach.js +65 -9
- package/src/svg/EmptyBlueprint.js +85 -8
- package/src/svg/EmptyBusinessHoliday.js +11 -6
- package/src/svg/EmptyBusinessHour.js +11 -6
- package/src/svg/EmptyCallHistory.js +60 -14
- package/src/svg/EmptyCollision.js +85 -0
- package/src/svg/EmptyColumn.js +91 -0
- package/src/svg/EmptyContact.js +64 -9
- package/src/svg/EmptyContract.js +81 -0
- package/src/svg/EmptyConversation.js +65 -9
- package/src/svg/EmptyCrm.js +84 -0
- package/src/svg/EmptyCrmNotes.js +96 -0
- package/src/svg/EmptyCrmPotential.js +100 -0
- package/src/svg/EmptyCustomDomain.js +33 -0
- package/src/svg/EmptyDashboard.js +71 -10
- package/src/svg/EmptyDepartment.js +87 -0
- package/src/svg/EmptyError.js +42 -0
- package/src/svg/EmptyFeed.js +87 -0
- package/src/svg/EmptyFollowers.js +85 -0
- package/src/svg/EmptyFrame.js +83 -0
- package/src/svg/EmptyFromAddress.js +11 -8
- package/src/svg/EmptyHappiness.js +65 -9
- package/src/svg/EmptyHistory.js +63 -15
- package/src/svg/EmptyImportHistory.js +11 -8
- package/src/svg/{Inconvenience.js → EmptyInconvenience.js} +7 -8
- package/src/svg/EmptyInvoice.js +70 -9
- package/src/svg/EmptyNetwork.js +11 -8
- package/src/svg/EmptyNotification.js +65 -10
- package/src/svg/EmptyProducts.js +68 -9
- package/src/svg/EmptyRecycleBin.js +10 -7
- package/src/svg/EmptyReply.js +81 -0
- package/src/svg/EmptyReports.js +70 -9
- package/src/svg/EmptyRoles.js +11 -8
- package/src/svg/EmptySchedule.js +131 -0
- package/src/svg/EmptySearch.js +75 -9
- package/src/svg/EmptySkills.js +95 -14
- package/src/svg/EmptySla.js +81 -0
- package/src/svg/EmptySnippet.js +78 -17
- package/src/svg/EmptyStateVariables.module.css +39 -0
- package/src/svg/EmptyTag.js +67 -8
- package/src/svg/EmptyTask.js +78 -10
- package/src/svg/EmptyTeams.js +65 -9
- package/src/svg/EmptyTemplate.js +69 -11
- package/src/svg/EmptyTicket.js +69 -10
- package/src/svg/EmptyTimeEntry.js +72 -10
- package/src/svg/EmptyTimeline.js +85 -0
- package/src/svg/EmptyTopic.js +72 -9
- package/src/svg/EmptyUnauthorizedLogin.js +44 -0
- package/src/svg/EmptyWebhook.js +11 -8
- package/src/svg/EmptyWillBeRightBack.js +44 -0
- package/src/svg/ErrorInconvenience.js +128 -0
- package/src/svg/ErrorOopsSomethingMiss.js +128 -0
- package/src/svg/ErrorUnableToProcessRequest.js +128 -0
- package/src/svg/ErrorUnauthorizedLogin.js +127 -0
- package/src/svg/ErrorUrlNotFound.js +128 -0
- package/src/svg/ErrorWillBeRightBack.js +127 -0
- package/src/svg/Extractor.js +76 -0
- package/src/svg/FailureLog.js +11 -8
- package/src/svg/Import.js +85 -0
- package/src/svg/Loader.js +63 -9
- package/src/svg/NoRequestFound.js +7 -8
- package/src/svg/NotImpossible.js +80 -0
- package/src/svg/PageNotFound.js +8 -8
- package/src/svg/Predictor.js +78 -0
- package/src/svg/SVG.js +36 -17
- package/src/svg/SVG.module.css +9 -2
- package/src/svg/SvgLoader.js +21 -0
- package/src/svg/UnableToProcessRequest.js +8 -9
- package/src/svg/UnauthorizedLogin.js +7 -8
- package/src/svg/UrlNotFound.js +9 -10
- package/src/svg/WillBeRightBack.js +9 -10
- package/src/svg/ZiaAnamoly.js +76 -0
- package/src/svg/docs/SVG__common.docs.js +47 -0
- package/src/svg/docs/SVG__default.docs.js +172 -228
- package/src/svg/docs/SVG__errorstate.docs.js +75 -0
- package/src/svg/docs/SVGdocstyle.module.css +8 -0
- package/src/svg/images/EmptyCustomDomain.svg +85 -0
- package/src/svg/images/EmptySkills.svg +75 -67
- package/src/svg/utils.js +15 -0
- package/.DS_Store +0 -0
- package/es/index.js +0 -6
- package/es/svg/EmptyAccounts.js +0 -57
- package/es/svg/EmptyActiveCalls.js +0 -64
- package/es/svg/EmptyActivity.js +0 -59
- package/es/svg/EmptyAgent.js +0 -56
- package/es/svg/EmptyArchived.js +0 -55
- package/es/svg/EmptyAttach.js +0 -56
- package/es/svg/EmptyBlueprint.js +0 -56
- package/es/svg/EmptyBusinessHoliday.js +0 -56
- package/es/svg/EmptyBusinessHour.js +0 -56
- package/es/svg/EmptyCallHistory.js +0 -64
- package/es/svg/EmptyCloud.js +0 -55
- package/es/svg/EmptyCloudDanger.js +0 -131
- package/es/svg/EmptyContact.js +0 -57
- package/es/svg/EmptyConversation.js +0 -56
- package/es/svg/EmptyDashboard.js +0 -56
- package/es/svg/EmptyEdition.js +0 -56
- package/es/svg/EmptyFromAddress.js +0 -56
- package/es/svg/EmptyHappiness.js +0 -56
- package/es/svg/EmptyHistory.js +0 -63
- package/es/svg/EmptyImportHistory.js +0 -56
- package/es/svg/EmptyInvoice.js +0 -56
- package/es/svg/EmptyNetwork.js +0 -56
- package/es/svg/EmptyNotification.js +0 -56
- package/es/svg/EmptyProducts.js +0 -56
- package/es/svg/EmptyRecycleBin.js +0 -56
- package/es/svg/EmptyReports.js +0 -56
- package/es/svg/EmptyRoles.js +0 -56
- package/es/svg/EmptySearch.js +0 -56
- package/es/svg/EmptySkills.js +0 -62
- package/es/svg/EmptySnippet.js +0 -62
- package/es/svg/EmptyTag.js +0 -56
- package/es/svg/EmptyTask.js +0 -56
- package/es/svg/EmptyTeams.js +0 -56
- package/es/svg/EmptyTemplate.js +0 -57
- package/es/svg/EmptyTicket.js +0 -56
- package/es/svg/EmptyTimeEntry.js +0 -56
- package/es/svg/EmptyTopic.js +0 -56
- package/es/svg/EmptyWebhook.js +0 -56
- package/es/svg/FailureLog.js +0 -56
- package/es/svg/Inconvenience.js +0 -65
- package/es/svg/InvalidUrl.js +0 -780
- package/es/svg/Loader.js +0 -50
- package/es/svg/NoRequestFound.js +0 -65
- package/es/svg/PageNotFound.js +0 -65
- package/es/svg/SVG.js +0 -102
- package/es/svg/SVG.module.css +0 -19
- package/es/svg/SitBack.js +0 -54
- package/es/svg/UnableToProcessRequest.js +0 -65
- package/es/svg/UnauthorizedLogin.js +0 -65
- package/es/svg/UrlNotFound.js +0 -65
- package/es/svg/WillBeRightBack.js +0 -65
- package/es/svg/docs/SVG__default.docs.js +0 -605
- package/es/svg/images/EmptyAccounts.svg +0 -55
- package/es/svg/images/EmptyActiveCalls.svg +0 -57
- package/es/svg/images/EmptyActivity.svg +0 -85
- package/es/svg/images/EmptyAgent.svg +0 -52
- package/es/svg/images/EmptyArchived.svg +0 -38
- package/es/svg/images/EmptyAttach.svg +0 -39
- package/es/svg/images/EmptyBlueprint.svg +0 -78
- package/es/svg/images/EmptyBusinessHoliday.svg +0 -50
- package/es/svg/images/EmptyBusinessHour.svg +0 -42
- package/es/svg/images/EmptyCallHistory.svg +0 -46
- package/es/svg/images/EmptyCloud.svg +0 -38
- package/es/svg/images/EmptyContact.svg +0 -33
- package/es/svg/images/EmptyContactInfo.svg +0 -27
- package/es/svg/images/EmptyConversation.svg +0 -38
- package/es/svg/images/EmptyDashboard.svg +0 -42
- package/es/svg/images/EmptyEdition.svg +0 -76
- package/es/svg/images/EmptyFilter.svg +0 -62
- package/es/svg/images/EmptyFromAddress.svg +0 -41
- package/es/svg/images/EmptyHappiness.svg +0 -58
- package/es/svg/images/EmptyHistory.svg +0 -44
- package/es/svg/images/EmptyImportHistory.svg +0 -43
- package/es/svg/images/EmptyInvoice.svg +0 -45
- package/es/svg/images/EmptyNetwork.svg +0 -50
- package/es/svg/images/EmptyNotification.svg +0 -38
- package/es/svg/images/EmptyProducts.svg +0 -57
- package/es/svg/images/EmptyRecycleBin.svg +0 -58
- package/es/svg/images/EmptyReports.svg +0 -39
- package/es/svg/images/EmptyRoles.svg +0 -30
- package/es/svg/images/EmptySearch.svg +0 -37
- package/es/svg/images/EmptySkills.svg +0 -75
- package/es/svg/images/EmptySnippet.svg +0 -46
- package/es/svg/images/EmptyTag.svg +0 -43
- package/es/svg/images/EmptyTask.svg +0 -42
- package/es/svg/images/EmptyTeams.svg +0 -39
- package/es/svg/images/EmptyTemplate.svg +0 -39
- package/es/svg/images/EmptyTicket.svg +0 -33
- package/es/svg/images/EmptyTimeEntry.svg +0 -96
- package/es/svg/images/EmptyTopic.svg +0 -41
- package/es/svg/images/EmptyWebhook.svg +0 -44
- package/es/svg/images/FailureLog.svg +0 -46
- package/es/svg/images/Inconvenience.svg +0 -719
- package/es/svg/images/Loader.svg +0 -62
- package/es/svg/images/NoRequestFound.svg +0 -247
- package/es/svg/images/PageNotFound.svg +0 -405
- package/es/svg/images/ReguestUrlNotFound.svg +0 -267
- package/es/svg/images/SitBack.svg +0 -464
- package/es/svg/images/UnableToProcess.svg +0 -752
- package/es/svg/images/UnauthorizedLogin.svg +0 -1047
- package/es/svg/images/WillBack.svg +0 -633
- package/lib/svg/EmptyCloud.js +0 -77
- package/lib/svg/EmptyCloudDanger.js +0 -147
- package/lib/svg/EmptyEdition.js +0 -78
- package/lib/svg/Inconvenience.js +0 -87
- package/lib/svg/InvalidUrl.js +0 -799
- package/lib/svg/SitBack.js +0 -76
- package/lib/svg/images/EmptyAccounts.svg +0 -55
- package/lib/svg/images/EmptyActiveCalls.svg +0 -57
- package/lib/svg/images/EmptyActivity.svg +0 -85
- package/lib/svg/images/EmptyAgent.svg +0 -52
- package/lib/svg/images/EmptyArchived.svg +0 -38
- package/lib/svg/images/EmptyAttach.svg +0 -39
- package/lib/svg/images/EmptyBlueprint.svg +0 -78
- package/lib/svg/images/EmptyCallHistory.svg +0 -46
- package/lib/svg/images/EmptyCloud.svg +0 -38
- package/lib/svg/images/EmptyContact.svg +0 -33
- package/lib/svg/images/EmptyConversation.svg +0 -38
- package/lib/svg/images/EmptyDashboard.svg +0 -42
- package/lib/svg/images/EmptyEdition.svg +0 -76
- package/lib/svg/images/EmptyHappiness.svg +0 -58
- package/lib/svg/images/EmptyHistory.svg +0 -44
- package/lib/svg/images/EmptyInvoice.svg +0 -45
- package/lib/svg/images/EmptyNotification.svg +0 -38
- package/lib/svg/images/EmptyProducts.svg +0 -57
- package/lib/svg/images/EmptyReports.svg +0 -39
- package/lib/svg/images/EmptySearch.svg +0 -37
- package/lib/svg/images/EmptySnippet.svg +0 -46
- package/lib/svg/images/EmptyTag.svg +0 -43
- package/lib/svg/images/EmptyTask.svg +0 -42
- package/lib/svg/images/EmptyTeams.svg +0 -39
- package/lib/svg/images/EmptyTemplate.svg +0 -39
- package/lib/svg/images/EmptyTicket.svg +0 -33
- package/lib/svg/images/EmptyTimeEntry.svg +0 -96
- package/lib/svg/images/EmptyTopic.svg +0 -41
- package/lib/svg/images/Loader.svg +0 -62
- package/lib/svg/images/SitBack.svg +0 -464
- package/src/.DS_Store +0 -0
- package/src/svg/.DS_Store +0 -0
- package/src/svg/EmptyCloud.js +0 -28
- package/src/svg/EmptyCloudDanger.js +0 -104
- package/src/svg/EmptyEdition.js +0 -29
- package/src/svg/InvalidUrl.js +0 -755
- package/src/svg/SitBack.js +0 -29
- package/src/svg/images/EmptyAccounts.svg +0 -55
- package/src/svg/images/EmptyActiveCalls.svg +0 -57
- package/src/svg/images/EmptyActivity.svg +0 -85
- package/src/svg/images/EmptyAgent.svg +0 -52
- package/src/svg/images/EmptyArchived.svg +0 -38
- package/src/svg/images/EmptyAttach.svg +0 -39
- package/src/svg/images/EmptyBlueprint.svg +0 -78
- package/src/svg/images/EmptyCallHistory.svg +0 -46
- package/src/svg/images/EmptyCloud.svg +0 -38
- package/src/svg/images/EmptyContact.svg +0 -33
- package/src/svg/images/EmptyConversation.svg +0 -38
- package/src/svg/images/EmptyDashboard.svg +0 -42
- package/src/svg/images/EmptyEdition.svg +0 -76
- package/src/svg/images/EmptyHappiness.svg +0 -58
- package/src/svg/images/EmptyHistory.svg +0 -44
- package/src/svg/images/EmptyInvoice.svg +0 -45
- package/src/svg/images/EmptyNotification.svg +0 -38
- package/src/svg/images/EmptyProducts.svg +0 -57
- package/src/svg/images/EmptyReports.svg +0 -39
- package/src/svg/images/EmptySearch.svg +0 -37
- package/src/svg/images/EmptySnippet.svg +0 -46
- package/src/svg/images/EmptyTag.svg +0 -43
- package/src/svg/images/EmptyTask.svg +0 -42
- package/src/svg/images/EmptyTeams.svg +0 -39
- package/src/svg/images/EmptyTemplate.svg +0 -39
- package/src/svg/images/EmptyTicket.svg +0 -33
- package/src/svg/images/EmptyTimeEntry.svg +0 -96
- package/src/svg/images/EmptyTopic.svg +0 -41
- package/src/svg/images/Loader.svg +0 -62
- package/src/svg/images/SitBack.svg +0 -464
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
18
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var UnauthorizedLogin = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(UnauthorizedLogin, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(UnauthorizedLogin);
|
|
44
|
+
|
|
45
|
+
function UnauthorizedLogin() {
|
|
46
|
+
_classCallCheck(this, UnauthorizedLogin);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(UnauthorizedLogin, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 -40 500 500",
|
|
56
|
+
name: "UnauthorizedLogin"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".ErrorUnauthorizedLogin_svg__cls-1,.ErrorUnauthorizedLogin_svg__cls-2{fill:var(--zd_emptysvg_primary_fill)}.ErrorUnauthorizedLogin_svg__cls-1{opacity:.05}.ErrorUnauthorizedLogin_svg__cls-2{opacity:.2}.ErrorUnauthorizedLogin_svg__cls-10,.ErrorUnauthorizedLogin_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorUnauthorizedLogin_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorUnauthorizedLogin_svg__cls-8{stroke:var(--zd_emptysvg_plus)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
59
|
+
d: "M135.58 156.52s33.78-54.78 54.78-11 32.86 82.17 94 33.78 86.73-55.69 109.55-25.56S438.22 440.44 215 387.49c0 0-176.65-66.64-79.42-230.97z"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
61
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
62
|
+
cx: 92.57,
|
|
63
|
+
cy: 364.54,
|
|
64
|
+
r: 25.39
|
|
65
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
66
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
67
|
+
cx: 75.88,
|
|
68
|
+
cy: 120.98,
|
|
69
|
+
r: 25.39
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
71
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
72
|
+
cx: 293.35,
|
|
73
|
+
cy: 73.62,
|
|
74
|
+
r: 12.74
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
76
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
77
|
+
cx: 141.83,
|
|
78
|
+
cy: 409.84,
|
|
79
|
+
r: 12.74
|
|
80
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
81
|
+
className: "ErrorUnauthorizedLogin_svg__cls-1",
|
|
82
|
+
cx: 376.13,
|
|
83
|
+
cy: 397.82,
|
|
84
|
+
r: 12.74
|
|
85
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
86
|
+
className: "ErrorUnauthorizedLogin_svg__cls-2",
|
|
87
|
+
d: "M220.15 211.69s-4.35-10 3-21.2c0 0 20.88 28.8 57.64 2.26 0 0 8.15 1.69 4 22.05 0 0 15.34-15.48 6.28-32.53 0 0 2.56-7.53-3.29-16.29s-13.24-19-28-20.74c0 0 4.07-2.48 3-4.5s-2.26-4.94-8.37-6.24-10.64 6.11-7.13 10.68c0 0-18.13.71-29.39 22.64A33.72 33.72 0 00215 176c-2 8.74-5.24 29 5.15 35.69zM201.67 235.61s-5.82 38.09 46 37.56 58.71-31.74 58.71-36.5-59.77-3.7-63.48 13.25-29.62-12.17-33.85-14.81a6 6 0 00-7.38.5z"
|
|
88
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
89
|
+
d: "M196.6 377.4c-2 0-57.79 11-52.29 0s53.69-15.82 52.29-13.76-44.72 11.69-45.41-3.45 12.39-89.42 25.46-112.13c0 0-8.25 0-10.31 4.14s-10 25.67-6.2 28.88S198 328.56 269.52 320.3v-35.78H240s-2 46.79 1.37 48.84 32.33.7 32.33.7v-15.92s64.09-11 76.61-35.53c0 0-3.06 1-2 8.15s10.72 45.16 9.71 71c0 0-30.14 12.52-33.21 11.5s32.51-14.19 35.65-9 7.31 10.66 5 12.12-49.15 6.35-50.46-1.38-1.67-14.84-6.26-18.19-30.85-21.19-30.85-21.19l-4.08-52.84s50.6-11.2 62.13-29.39c0 0-12.65-50.23-10-47.63s2.61 42.45 5.58 42.05 24.93 4.82 25.67 12.22c0 0 6.7-3 7.07-4.07s-12.65 8.14-13 12.65 13-3 14.86-1.5 5.2 8.57 0 9.68-10.76-1.49-11.51 1.12 10 11.9 14.26 11.9 17-.37 18.83-9.67-8.94-5.22-8.94-5.22 8.24 1.5 9.17-3.72-4.69-19.72-8.77-21.95-5.9.52-5.9.52 5.7-1.81 5.82-2.42-27-41-54.66-55.46c0 0-23.17-12.76-30.55-11.63s10.73 22.6-9.05 34.46c0 0 4.52-18.07-4-22 0 0-29.95 27.13-57.64-2.26 0 0-7.91 10.74-2.83 19.78 0 0 19.35 33.15 61.57 5.32 0 0 10.64-7.48 11.39-17.32s-4.49-12.69-1.12-20.43c0 0-5.78-28.52-30.93-32.36s-9.22-11.29-6.83-11 8.81 3.06 8.49 7.67-9.84 3.84-15.65 3-31.93 10.85-33.7 38.38 6.58 28.18 6.58 28.18S212 201.39 215 181.4c0 0-26.33 7.13-30.67 13.24s-6.11 32.53-5.78 35.43 5.78-28.92 1.08-34.35c0 0-39.41 27.5-48.45 50.26 0 0 14.82 12.74 17 12.34s-15.91-12-18.8-9.09-10.85 19.53-10.48 23.87 5.42 14.82 9.4 15.54 13.38 2.53 14.82 1.8 11.57-11.92 10.13-12.65-7.24.73-10.85-3.25 1.81-9.4 4-8 5.09 6.87 6.11 6.87 5.09-.36 5.43-2.9-5.09-10.51-5.09-10.51 11.53-13.12 25.46-14.57c0 0 3.54 27.28 57.33 39.35l3 47.81s-19.4 13.66-27.8 17.41-13.8 16.82-14.26 23.13c0 0-1.1-17.6 15.08-25.41s24.73-15.81 24.73-15.81l-1.39-25.5s-44.1-11.35-59.52-32.13l1.39-4.49s56.68 61.87 162.11-.35c0 0 .11-10.36-1.49-13.24s11.34 23.19 11.5 24.37",
|
|
90
|
+
strokeWidth: 1.5,
|
|
91
|
+
strokeLinecap: "round",
|
|
92
|
+
strokeLinejoin: "round",
|
|
93
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
94
|
+
fill: "none"
|
|
95
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
96
|
+
cx: 319.44,
|
|
97
|
+
cy: 65.07,
|
|
98
|
+
rx: 3.54,
|
|
99
|
+
ry: 3.51,
|
|
100
|
+
strokeMiterlimit: 10,
|
|
101
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
102
|
+
fill: "none"
|
|
103
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
104
|
+
cx: 254.71,
|
|
105
|
+
cy: 426.04,
|
|
106
|
+
rx: 3.54,
|
|
107
|
+
ry: 3.51,
|
|
108
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
109
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
110
|
+
cx: 60.28,
|
|
111
|
+
cy: 276.06,
|
|
112
|
+
rx: 3.31,
|
|
113
|
+
ry: 3.28,
|
|
114
|
+
stroke: "var(--zd_emptysvg_tiny_circle)",
|
|
115
|
+
strokeMiterlimit: 10,
|
|
116
|
+
fill: "none"
|
|
117
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
118
|
+
cx: 434.38,
|
|
119
|
+
cy: 281.34,
|
|
120
|
+
rx: 3.31,
|
|
121
|
+
ry: 3.28,
|
|
122
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
123
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
124
|
+
className: "ErrorUnauthorizedLogin_svg__cls-8",
|
|
125
|
+
d: "M111.78 165.79l-.35 6.17M108.49 168.7l6.23.35"
|
|
126
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
127
|
+
cx: 392.54,
|
|
128
|
+
cy: 383.2,
|
|
129
|
+
rx: 2.46,
|
|
130
|
+
ry: 2.44,
|
|
131
|
+
strokeLinecap: "round",
|
|
132
|
+
strokeLinejoin: "round",
|
|
133
|
+
stroke: "var(--zd_emptysvg_small_circle)",
|
|
134
|
+
fill: "none"
|
|
135
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
136
|
+
className: "ErrorUnauthorizedLogin_svg__cls-10",
|
|
137
|
+
d: "M391.61 121.34l4.15 4.62M391.36 125.71l4.65-4.12"
|
|
138
|
+
}));
|
|
139
|
+
}
|
|
140
|
+
}]);
|
|
141
|
+
|
|
142
|
+
return UnauthorizedLogin;
|
|
143
|
+
}(_react["default"].Component);
|
|
144
|
+
|
|
145
|
+
exports["default"] = UnauthorizedLogin;
|
|
146
|
+
UnauthorizedLogin.propTypes = {
|
|
147
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
148
|
+
className: _propTypes["default"].string,
|
|
149
|
+
dataId: _propTypes["default"].string,
|
|
150
|
+
isRender: _propTypes["default"].bool
|
|
151
|
+
};
|
|
152
|
+
UnauthorizedLogin.defaultProps = {
|
|
153
|
+
alignHorizontal: true,
|
|
154
|
+
isRender: true,
|
|
155
|
+
className: '',
|
|
156
|
+
dataId: 'unauthorizedlogin'
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
if (false) {
|
|
160
|
+
UnauthorizedLogin.docs = {
|
|
161
|
+
componentGroup: 'SVG'
|
|
162
|
+
};
|
|
163
|
+
}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
18
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var UrlNotFound = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(UrlNotFound, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(UrlNotFound);
|
|
44
|
+
|
|
45
|
+
function UrlNotFound() {
|
|
46
|
+
_classCallCheck(this, UrlNotFound);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(UrlNotFound, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 500 500",
|
|
56
|
+
name: "UrlNotFound"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".ErrorUrlNotFound_svg__cls-1{fill:var(--zd_emptysvg_primary_fill);opacity:.05}.ErrorUrlNotFound_svg__cls-10,.ErrorUrlNotFound_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorUrlNotFound_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorUrlNotFound_svg__cls-8{stroke:var(--zd_emptysvg_cross)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
59
|
+
d: "M148.89 174.69s33.77-54.78 54.77-11 32.87 82.17 94 33.78 86.77-55.65 109.59-25.47 44.28 286.67-178.94 233.72c0-.05-176.65-66.72-79.42-231.03z"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
61
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
62
|
+
cx: 105.87,
|
|
63
|
+
cy: 382.71,
|
|
64
|
+
r: 25.39
|
|
65
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
66
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
67
|
+
cx: 89.18,
|
|
68
|
+
cy: 139.16,
|
|
69
|
+
r: 25.39
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
71
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
72
|
+
cx: 306.65,
|
|
73
|
+
cy: 91.79,
|
|
74
|
+
r: 12.74
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
76
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
77
|
+
cx: 155.14,
|
|
78
|
+
cy: 428.01,
|
|
79
|
+
r: 12.74
|
|
80
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
81
|
+
className: "ErrorUrlNotFound_svg__cls-1",
|
|
82
|
+
cx: 389.43,
|
|
83
|
+
cy: 415.99,
|
|
84
|
+
r: 12.74
|
|
85
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
86
|
+
d: "M147.26 384.22l22.71 7s.88-5.55.16-15.67 7.59-17.34 7.59-17.34 15.89-17.34 15.89-19.14-21.31-58.52-23.12-69.72 7.59-50.94 7.59-50.94l2.53 27.46s17.7 1.8 21.67-1.09.72-24.92.72-24.92l-20.95-.73s-4 14.09-14.09 36.85c-8.26 18.59-19.65 95.5-23.75 126.21-.92 6.89-1.47 11.45-1.53 12.51-.37 5.78-10.48 12.28-10.48 12.28s6.86.72 9.39-4.33 14.81-14.45 19.15-7.95-6.14 13.36-11.2 18.49-15.9 2.82-18.79 0-.72-12.71-.72-12.71c-11.2-22-13-151.72-13-151.72l1.8 23.48-15.17.36 25.65-65c56-40.46 93.92 10.12 93.92 10.12l1.09 78.75 2.53-81.28c-5.28-13.48-27.46-22-27.46-22-55.63-21.67-80.56 22.76-80.56 22.76s18.79-40.82 71.53-44.43 76.94 44.43 75.86 40.46-23.48-24.57-23.48-24.57l72.26 7.48s-41.18 17.7-44.43 22.76-41.91 11.56-41.91 11.56l15.17 6.86-6 64.58-14.33.35s-6.23 46.52-6.23 49.66-16.94 13.41-22.38 17.34-3.56 25.73-3.56 25.73-.21-15.48 0-23.64-7.53-9.41-7.53-9.41c-9.62 0-10.75 8.58-10.75 8.58v23.11c0 3.49 3.22 9.67 8.6 10.08s10.87-5.17 10.87-5.17l53.77 15.83s-.13-165.23.13-174.77-3.22-8.37-2.52-6 53.46 52.51 54 54 77-45.15 77-45.15l-52-42c-4.13.17-74.75 31.47-72.94 33.73s69.49-36.1 69.49-36.1l1.91 168.32-72.06 48.33",
|
|
87
|
+
strokeLinecap: "round",
|
|
88
|
+
strokeLinejoin: "round",
|
|
89
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
90
|
+
strokeWidth: 1.5,
|
|
91
|
+
fill: "none"
|
|
92
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
93
|
+
d: "M129.31 207.53s-8.67 115.3 1.13 176.69c0 0 7 4 9-5.4 6.74-31.64 17.12-114.22 30.21-147.44 0 0 32.66 101.9 30.7 105.82s-6.8 22.07-3.92 21.55c13.22-2.4 35.92-69.89 20.9-133.25-.02 0-22.53-45.08-88.02-17.97z",
|
|
94
|
+
opacity: 0.2,
|
|
95
|
+
fill: "var(--zd_emptysvg_primary_fill)"
|
|
96
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
97
|
+
cx: 263.83,
|
|
98
|
+
cy: 122.29,
|
|
99
|
+
rx: 3.54,
|
|
100
|
+
ry: 3.51,
|
|
101
|
+
strokeMiterlimit: 10,
|
|
102
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
103
|
+
fill: "none"
|
|
104
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
105
|
+
cx: 269.1,
|
|
106
|
+
cy: 423.25,
|
|
107
|
+
rx: 3.54,
|
|
108
|
+
ry: 3.51,
|
|
109
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
110
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
111
|
+
cx: 74.67,
|
|
112
|
+
cy: 273.28,
|
|
113
|
+
rx: 3.31,
|
|
114
|
+
ry: 3.28,
|
|
115
|
+
stroke: "var(--zd_emptysvg_tiny_circle)",
|
|
116
|
+
strokeMiterlimit: 10,
|
|
117
|
+
fill: "none"
|
|
118
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
119
|
+
cx: 448.76,
|
|
120
|
+
cy: 278.55,
|
|
121
|
+
rx: 3.31,
|
|
122
|
+
ry: 3.28,
|
|
123
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
124
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
125
|
+
className: "ErrorUrlNotFound_svg__cls-8",
|
|
126
|
+
d: "M126.16 163.01l-.35 6.17M122.87 165.92l6.23.35"
|
|
127
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
128
|
+
cx: 406.93,
|
|
129
|
+
cy: 380.42,
|
|
130
|
+
rx: 2.46,
|
|
131
|
+
ry: 2.44,
|
|
132
|
+
stroke: "var(--zd_emptysvg_small_circle)",
|
|
133
|
+
strokeLinecap: "round",
|
|
134
|
+
strokeLinejoin: "round",
|
|
135
|
+
fill: "none"
|
|
136
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
137
|
+
className: "ErrorUrlNotFound_svg__cls-10",
|
|
138
|
+
d: "M405.99 118.56l4.16 4.61M405.75 122.93l4.65-4.12"
|
|
139
|
+
}));
|
|
140
|
+
}
|
|
141
|
+
}]);
|
|
142
|
+
|
|
143
|
+
return UrlNotFound;
|
|
144
|
+
}(_react["default"].Component);
|
|
145
|
+
|
|
146
|
+
exports["default"] = UrlNotFound;
|
|
147
|
+
UrlNotFound.propTypes = {
|
|
148
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
149
|
+
className: _propTypes["default"].string,
|
|
150
|
+
dataId: _propTypes["default"].string,
|
|
151
|
+
isRender: _propTypes["default"].bool
|
|
152
|
+
};
|
|
153
|
+
UrlNotFound.defaultProps = {
|
|
154
|
+
alignHorizontal: true,
|
|
155
|
+
isRender: true,
|
|
156
|
+
className: '',
|
|
157
|
+
dataId: 'urlnotfound'
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
if (false) {
|
|
161
|
+
UrlNotFound.docs = {
|
|
162
|
+
componentGroup: 'SVG'
|
|
163
|
+
};
|
|
164
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
18
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var WillBeRightBack = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(WillBeRightBack, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(WillBeRightBack);
|
|
44
|
+
|
|
45
|
+
function WillBeRightBack() {
|
|
46
|
+
_classCallCheck(this, WillBeRightBack);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(WillBeRightBack, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 695.38 500",
|
|
56
|
+
name: "WillBeRightBack"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("defs", null, /*#__PURE__*/_react["default"].createElement("style", null, ".ErrorWillBeRightBack_svg__cls-1,.ErrorWillBeRightBack_svg__cls-2{fill:var(--zd_emptysvg_primary_fill)}.ErrorWillBeRightBack_svg__cls-1{opacity:.05}.ErrorWillBeRightBack_svg__cls-2{opacity:.2}.ErrorWillBeRightBack_svg__cls-10,.ErrorWillBeRightBack_svg__cls-8{fill:none;stroke-linecap:round;stroke-linejoin:round}.ErrorWillBeRightBack_svg__cls-10{stroke:var(--zd_emptysvg_cross)}.ErrorWillBeRightBack_svg__cls-8{stroke:var(--zd_emptysvg_plus)}")), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
59
|
+
d: "M138.24 163.53S172 108.75 193 152.58s32.87 82.16 94 33.77 86.73-55.69 109.55-25.56 44.28 286.67-178.94 233.72c.05 0-176.61-66.65-79.37-230.98z"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
61
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
62
|
+
cx: 95.22,
|
|
63
|
+
cy: 371.55,
|
|
64
|
+
r: 25.39
|
|
65
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
66
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
67
|
+
cx: 78.54,
|
|
68
|
+
cy: 128,
|
|
69
|
+
r: 25.39
|
|
70
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
71
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
72
|
+
cx: 296,
|
|
73
|
+
cy: 80.64,
|
|
74
|
+
r: 12.74
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
76
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
77
|
+
cx: 144.49,
|
|
78
|
+
cy: 416.85,
|
|
79
|
+
r: 12.74
|
|
80
|
+
}), /*#__PURE__*/_react["default"].createElement("circle", {
|
|
81
|
+
className: "ErrorWillBeRightBack_svg__cls-1",
|
|
82
|
+
cx: 378.78,
|
|
83
|
+
cy: 404.83,
|
|
84
|
+
r: 12.74
|
|
85
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
86
|
+
className: "ErrorWillBeRightBack_svg__cls-2",
|
|
87
|
+
d: "M197.65 260.2s-37.79 13.9-26.82 41.53 35.49 2.54 38.75 54 31.65 15.7 31.65 15.7 10.64-19.9 13-20.31 11.67-25 11.22-32.18 19.17 3.75 26.77-12.33 9.16-17.33 7.1-31.18c-3.93-26.43-54.27-38.22-101.67-15.23zM514.22 175.75s20.76-5.5 39.38 4.1l71.4-23.68zM563.61 183.49s24.11 3.37 35.52 18.67l30.51-46z"
|
|
88
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
89
|
+
d: "M197.52 185.74s-94.89 36.5-76.24 144.37 156.79 96.51 190.24 61.54c0 0 36.18-27.27 40.1-95.61h0c0-41.67-50.39-112.71-109.2-115.31a35.36 35.36 0 00-20.37 5c-7 4.39-13.45 12.08-6.06 24.33 13.14 21.78 31.17-5.26 30.42-9.39-.68-3.73-12.1-7.16-24 14.42a13.31 13.31 0 01-14 6.59c-4.57-.82-9.39-2.18-11.45-4.41-4.41-4.8-16.32 4.61-7.87 10.75s10.95 6.72 6.34 11.14-18 13.44-9.22 17.47 66.44 18.44 76.23 1.54-81.78-10.97-92.15 30.83c0 0-7.29 20.07 20.93 27.17s8.64 72.2 34.95 68c0 0 12.29-2.88 19.39-21.32 4.18-10.82 14.62-16.32 20.85-17.78a5.87 5.87 0 017.19 6.64c-.85 5.12-5.06 13-10.56 16.33-10 5.95-10.23-15.56-5.69-22.85s15.82-33.94 0-46.45-18-5.79-17.93-3.29c.19 8.84 23.62 29.57 38.21 23.43s21.32-22.08 19.2-29-18.05-14.21-20.93-9 11 12.86 26.89 9.22c14.34-3.29 30.86-1.13 32.34 15.44a19.31 19.31 0 0022.05 17.11c12.4-1.83 31.36-11.52 60-39.05h0s11.21-5.87 19.05-39.19 77.44-.66 108.15-23.85 75.34-57.78 75.34-57.78l-56.11 20.79s25.28 3.19 35.52 18.67l30.51-46L558.38 183l-3 20.26-1.82-23.45s-14.53-8.56-39.38-4.1L625 156.17l-77.77 27.55s16.92 22.63-8 34.15-75-30.34-100.53-22.46-27.81 29.21-27.81 29.21",
|
|
90
|
+
strokeLinecap: "round",
|
|
91
|
+
strokeLinejoin: "round",
|
|
92
|
+
stroke: "var(--zd_emptysvg_primary_stroke)",
|
|
93
|
+
strokeWidth: 1.5,
|
|
94
|
+
fill: "none"
|
|
95
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
96
|
+
cx: 253.18,
|
|
97
|
+
cy: 132.09,
|
|
98
|
+
rx: 3.54,
|
|
99
|
+
ry: 3.51,
|
|
100
|
+
strokeMiterlimit: 10,
|
|
101
|
+
stroke: "var(--zd_emptysvg_medium_circle)",
|
|
102
|
+
fill: "none"
|
|
103
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
104
|
+
cx: 258.45,
|
|
105
|
+
cy: 433.05,
|
|
106
|
+
rx: 3.54,
|
|
107
|
+
ry: 3.51,
|
|
108
|
+
fill: "var(--zd_emptysvg_medium_circle)"
|
|
109
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
110
|
+
cx: 64.02,
|
|
111
|
+
cy: 283.08,
|
|
112
|
+
rx: 3.31,
|
|
113
|
+
ry: 3.28,
|
|
114
|
+
stroke: "var(--zd_emptysvg_tiny_circle)",
|
|
115
|
+
strokeMiterlimit: 10,
|
|
116
|
+
fill: "none"
|
|
117
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
118
|
+
cx: 438.12,
|
|
119
|
+
cy: 288.35,
|
|
120
|
+
rx: 3.31,
|
|
121
|
+
ry: 3.28,
|
|
122
|
+
fill: "var(--zd_emptysvg_tiny_circle)"
|
|
123
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
124
|
+
className: "ErrorWillBeRightBack_svg__cls-8",
|
|
125
|
+
d: "M115.52 172.8l-.36 6.18M112.23 175.72l6.22.34"
|
|
126
|
+
}), /*#__PURE__*/_react["default"].createElement("ellipse", {
|
|
127
|
+
cx: 396.28,
|
|
128
|
+
cy: 390.22,
|
|
129
|
+
rx: 2.46,
|
|
130
|
+
ry: 2.44,
|
|
131
|
+
stroke: "var(--zd_emptysvg_small_circle)",
|
|
132
|
+
strokeLinecap: "round",
|
|
133
|
+
strokeLinejoin: "round",
|
|
134
|
+
fill: "none"
|
|
135
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
136
|
+
className: "ErrorWillBeRightBack_svg__cls-10",
|
|
137
|
+
d: "M395.35 128.36l4.15 4.61M395.1 132.72l4.65-4.12"
|
|
138
|
+
}));
|
|
139
|
+
}
|
|
140
|
+
}]);
|
|
141
|
+
|
|
142
|
+
return WillBeRightBack;
|
|
143
|
+
}(_react["default"].Component);
|
|
144
|
+
|
|
145
|
+
exports["default"] = WillBeRightBack;
|
|
146
|
+
WillBeRightBack.propTypes = {
|
|
147
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
148
|
+
className: _propTypes["default"].string,
|
|
149
|
+
dataId: _propTypes["default"].string,
|
|
150
|
+
isRender: _propTypes["default"].bool
|
|
151
|
+
};
|
|
152
|
+
WillBeRightBack.defaultProps = {
|
|
153
|
+
alignHorizontal: true,
|
|
154
|
+
isRender: true,
|
|
155
|
+
className: '',
|
|
156
|
+
dataId: 'willberightback'
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
if (false) {
|
|
160
|
+
WillBeRightBack.docs = {
|
|
161
|
+
componentGroup: 'SVG'
|
|
162
|
+
};
|
|
163
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _SVG = _interopRequireDefault(require("./SVG"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
|
+
|
|
18
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var Extractor = /*#__PURE__*/function (_React$Component) {
|
|
41
|
+
_inherits(Extractor, _React$Component);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(Extractor);
|
|
44
|
+
|
|
45
|
+
function Extractor() {
|
|
46
|
+
_classCallCheck(this, Extractor);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(Extractor, [{
|
|
52
|
+
key: "render",
|
|
53
|
+
value: function render() {
|
|
54
|
+
return /*#__PURE__*/_react["default"].createElement(_SVG["default"], _extends({
|
|
55
|
+
viewBox: "0 0 200 200",
|
|
56
|
+
name: "extractor"
|
|
57
|
+
}, this.props), /*#__PURE__*/_react["default"].createElement("style", null, ".Extractor_svg__st1{opacity:.1;fill:var(--zd_emptysvg_primary_fill);enable-background:new}.Extractor_svg__st2{fill:var(--zd_emptysvg_plus)}.Extractor_svg__st3{fill:var(--zd_emptysvg_medium_circle)}.Extractor_svg__st4{fill:var(--zd_emptysvg_cross)}.Extractor_svg__st6{fill:none;stroke:var(--zd_emptysvg_primary_stroke);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}"), /*#__PURE__*/_react["default"].createElement("path", {
|
|
58
|
+
fill: "none",
|
|
59
|
+
d: "M10 22h180v160H10z"
|
|
60
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
61
|
+
className: "Extractor_svg__st1",
|
|
62
|
+
d: "M80.2 58.2s46.7-31.2 70.3-21.8 39.7 88.3-25.9 123.7c-65.6 35.4-95.4-41.6-95.7-55.2-.2-13.3 0-44.7 51.3-46.7z"
|
|
63
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
64
|
+
className: "Extractor_svg__st2",
|
|
65
|
+
d: "M14 119.3s-.1 0 0 0c-.3 0-.5-.3-.5-.5l.4-7.5c0-.3.2-.5.5-.5s.5.2.5.5l-.4 7.5c-.1.3-.3.5-.5.5z"
|
|
66
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
67
|
+
className: "Extractor_svg__st2",
|
|
68
|
+
d: "M17.8 115.8l-7.4-.4c-.3 0-.5-.3-.5-.5 0-.3.3-.5.5-.5l7.3.4c.3 0 .5.3.5.5.1.3-.1.5-.4.5z"
|
|
69
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
70
|
+
className: "Extractor_svg__st3",
|
|
71
|
+
d: "M171.2 22.8c-2.6 0-4.7 2.1-4.7 4.7s2.1 4.7 4.7 4.7 4.7-2.1 4.7-4.7-2.2-4.7-4.7-4.7zm0 8.5c-2 0-3.7-1.7-3.7-3.8s1.7-3.8 3.7-3.8 3.7 1.7 3.7 3.8-1.7 3.8-3.7 3.8zM34.4 175.1c-1.9 0-3.4 1.5-3.4 3.4s1.5 3.4 3.4 3.4 3.4-1.5 3.4-3.4c0-1.8-1.5-3.4-3.4-3.4zm0 5.9c-1.3 0-2.4-1.1-2.4-2.5s1.1-2.5 2.4-2.5c1.3 0 2.4 1.1 2.4 2.5s-1.1 2.5-2.4 2.5z"
|
|
72
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
73
|
+
className: "Extractor_svg__st4",
|
|
74
|
+
d: "M50.9 22c-1.7 0-3 1.4-3 3s1.3 3 3 3 3-1.4 3-3-1.3-3-3-3zm0 5.1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM189.8 131.8c-.2-.2-.5-.2-.7 0l-2.4 2.2-2.1-2.4c-.2-.2-.5-.2-.7 0-.2.2-.2.5 0 .7l2.1 2.4-2.4 2.2c-.2.2-.2.5 0 .7.1.1.2.2.4.2.1 0 .2 0 .3-.1l2.4-2.2 2.1 2.4c.1.1.2.2.4.2.1 0 .2 0 .3-.1.2-.2.2-.5 0-.7l-2.1-2.4 2.4-2.2c.2-.3.2-.7 0-.9z"
|
|
75
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
76
|
+
className: "Extractor_svg__st1",
|
|
77
|
+
d: "M115.8 67S78.5 42.1 59.6 49.6s-31.8 70.6 20.7 98.9c52.5 28.3 76.3-33.3 76.5-44.2.2-10.6 0-35.8-41-37.3z"
|
|
78
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
79
|
+
d: "M71.4 78.3s-11.7 4.5.5 6 68.4.3 64.2-3.2c-4.3-3.3-64.7-2.8-64.7-2.8zm-.8 23.1s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9-2.4-3.3-36.5-2.7-36.5-2.7zm0 20s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9-2.4-3.2-36.5-2.7-36.5-2.7zm-.8 15.5s-8.1 4.5.3 6 47.6.3 44.7-3.2c-3-3.3-45-2.8-45-2.8zm.8 16.7s-6.6 4.2.3 5.6c6.9 1.3 38.6.3 36.2-2.9s-36.5-2.7-36.5-2.7zm42.3-118l-5.4-.1c0-1.7-.1-2.9-.7-4.5-1.3-4.2-5.2-5.8-9.1-4.9-4.4.9-6.4 6.5-6.6 9.7l-8.2.1c-1.3 0-2.8.4-2.8 1.7V41c0 1.5 1.1 2.5 2.5 2.5l30.5.5c1.5 0 2.5-1.1 2.7-2.5l.1-4c-.4-1.2-1.7-1.9-3-1.9z",
|
|
80
|
+
fill: "var(--zd_emptysvg_secondary_fill)"
|
|
81
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
82
|
+
className: "Extractor_svg__st6",
|
|
83
|
+
d: "M152.5 87.7c-.7-13.3-.4-43.7-2.7-45.5-2.7-1.9-71.5.4-71.5.4S78 31.1 90.5 31.7c0 0-2.3-5.8 4.6-7.6 3.8-.9 8-.3 11 2.3 1.2.9 2.1 2.1 2.4 3.6.1.9 13.1-.9 13.1 14.6 0 0-78.2-3.6-77.8-.9.4 2.7-2.5 133.2.3 134.9 2.8 1.7 108.3 2 109.4-1.1-.1.2-.8-87.5-1-89.8z"
|
|
84
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
85
|
+
className: "Extractor_svg__st6",
|
|
86
|
+
d: "M72.7 35.4s1.9 33.3-.8 34.1c-2.7.8-17.5 1.6-17.5-.8 0-2.4 18-19.1 21.3-18.6 3.3.5 66.5.8 68.5 2.4 1.1.8 1.6 13.5 1.7 26.2.1 12.7.5 89.7.5 89.7l-11.4.4c-10.2 0-80.2 2-80.9-.7s-.7-60.8-.7-60.8v-30s80.7-2.5 82.3 3.8c1.6 6.4-66.8 5.4-67.1 4-.4-1.5-.1-9.7-.1-9.7s49.8-3.2 65.9 2.1"
|
|
87
|
+
}));
|
|
88
|
+
}
|
|
89
|
+
}]);
|
|
90
|
+
|
|
91
|
+
return Extractor;
|
|
92
|
+
}(_react["default"].Component);
|
|
93
|
+
|
|
94
|
+
exports["default"] = Extractor;
|
|
95
|
+
Extractor.propTypes = {
|
|
96
|
+
alignHorizontal: _propTypes["default"].bool,
|
|
97
|
+
className: _propTypes["default"].string,
|
|
98
|
+
dataId: _propTypes["default"].string,
|
|
99
|
+
isRender: _propTypes["default"].bool,
|
|
100
|
+
size: _propTypes["default"].oneOf(['small', 'large']),
|
|
101
|
+
palette: _propTypes["default"].oneOf(['default', 'dark'])
|
|
102
|
+
};
|
|
103
|
+
Extractor.defaultProps = {
|
|
104
|
+
size: 'large',
|
|
105
|
+
alignHorizontal: true,
|
|
106
|
+
isRender: true,
|
|
107
|
+
className: '',
|
|
108
|
+
dataId: 'extractor',
|
|
109
|
+
palette: 'default'
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
if (false) {
|
|
113
|
+
Extractor.docs = {
|
|
114
|
+
componentGroup: 'SVG'
|
|
115
|
+
};
|
|
116
|
+
}
|