@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
|
@@ -1,75 +1,83 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
3
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0
|
|
4
|
+
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
|
|
5
5
|
<style type="text/css">
|
|
6
|
-
.st0{opacity:
|
|
7
|
-
.st1{fill:#
|
|
8
|
-
.st2{fill:#
|
|
9
|
-
.st3{fill:#
|
|
10
|
-
.st4{
|
|
11
|
-
.st5{
|
|
12
|
-
.st6{fill:#
|
|
6
|
+
.st0{opacity:5.000000e-02;fill:#3F70B7;enable-background:new ;}
|
|
7
|
+
.st1{fill:none;stroke:#E56471;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:none;stroke:#5CC1A5;stroke-miterlimit:10;}
|
|
9
|
+
.st3{fill:none;stroke:#3F70B7;stroke-linecap:round;stroke-linejoin:round;}
|
|
10
|
+
.st4{fill:none;stroke:#010101;stroke-linecap:round;stroke-linejoin:round;}
|
|
11
|
+
.st5{fill:none;stroke:#000000;stroke-miterlimit:10;}
|
|
12
|
+
.st6{opacity:0.25;fill:#3F70B7;enable-background:new ;}
|
|
13
|
+
.st7{opacity:0.25;}
|
|
14
|
+
.st8{clip-path:url(#SVGID_2_);}
|
|
15
|
+
.st9{fill:none;stroke:#3F70B7;stroke-width:0.5;stroke-miterlimit:10;}
|
|
16
|
+
.st10{clip-path:url(#SVGID_4_);}
|
|
13
17
|
</style>
|
|
14
|
-
<title>
|
|
15
|
-
<
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
<
|
|
47
|
-
<
|
|
48
|
-
|
|
18
|
+
<title>ReactEmpty</title>
|
|
19
|
+
<path class="st0" d="M86.5,62.5c0,0,46.9-30.9,70.7-21.5s40,87.4-26.1,122.4S35.2,122.2,35,108.7C34.7,95.6,35,64.4,86.5,62.5z"/>
|
|
20
|
+
<ellipse class="st1" cx="156" cy="31.7" rx="3.5" ry="3.5"/>
|
|
21
|
+
<ellipse class="st2" cx="79.6" cy="29.6" rx="2.1" ry="2.1"/>
|
|
22
|
+
<line class="st3" x1="23.3" y1="100.9" x2="22.9" y2="107"/>
|
|
23
|
+
<line class="st3" x1="20" y1="103.8" x2="26.2" y2="104.1"/>
|
|
24
|
+
<ellipse class="st4" cx="165.9" cy="154.1" rx="2.4" ry="2.4"/>
|
|
25
|
+
<line class="st2" x1="175.6" y1="117.2" x2="179.8" y2="121.8"/>
|
|
26
|
+
<line class="st2" x1="175.4" y1="121.6" x2="180" y2="117.4"/>
|
|
27
|
+
<path class="st5" d="M25.9,124.2c0,0,28.6-2.9,35.8-25.2s29.5-22.8,35.6-24.2l0.7-0.2c6.6-2.4,11.3-8.9,11.3-16.3
|
|
28
|
+
c0-9.5-7.7-17.2-17.2-17.2s-17.1,7.7-17.1,17.2c0,8.2,5.7,15,13.4,16.7l0,0c2.1,0.7,4.5,1.6,7.3,1.9c2.2,0.2,4.5,0.3,6.8,0.2
|
|
29
|
+
c5.3-0.2,18.5,2.2,23.3,13.8c6.3,15.4,16.9,30.2,36.4,30.2c0,0-44.3,6.3-51.1-23c0,0,3.2,1.1,0,15.1s-18.7,28.8-44.6,14.8
|
|
30
|
+
s-30.6,18.7-5,22.3s58.3-18.4,72.7-22s24.1,5,24.1,12.2c0,20.2-79.2,33.1-83.2-42.5"/>
|
|
31
|
+
<circle class="st6" cx="97.2" cy="58.1" r="17.1"/>
|
|
32
|
+
<g class="st7">
|
|
33
|
+
<g>
|
|
34
|
+
<defs>
|
|
35
|
+
<circle id="SVGID_1_" cx="147.6" cy="58.7" r="12.7"/>
|
|
36
|
+
</defs>
|
|
37
|
+
<clipPath id="SVGID_2_">
|
|
38
|
+
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
|
39
|
+
</clipPath>
|
|
40
|
+
<g class="st8">
|
|
41
|
+
<line class="st9" x1="162.5" y1="47.7" x2="158.4" y2="73.7"/>
|
|
42
|
+
<line class="st9" x1="160.9" y1="47.5" x2="156.8" y2="73.5"/>
|
|
43
|
+
<line class="st9" x1="159.3" y1="47.2" x2="155.2" y2="73.2"/>
|
|
44
|
+
<line class="st9" x1="157.7" y1="47" x2="153.6" y2="73"/>
|
|
45
|
+
<line class="st9" x1="156.1" y1="46.7" x2="151.9" y2="72.7"/>
|
|
46
|
+
<line class="st9" x1="154.5" y1="46.5" x2="150.4" y2="72.4"/>
|
|
47
|
+
<line class="st9" x1="152.9" y1="46.2" x2="148.7" y2="72.2"/>
|
|
48
|
+
<line class="st9" x1="151.3" y1="45.9" x2="147.1" y2="71.9"/>
|
|
49
|
+
<line class="st9" x1="149.7" y1="45.7" x2="145.5" y2="71.7"/>
|
|
50
|
+
<line class="st9" x1="148.1" y1="45.4" x2="143.9" y2="71.4"/>
|
|
51
|
+
<line class="st9" x1="146.5" y1="45.2" x2="142.3" y2="71.2"/>
|
|
52
|
+
<line class="st9" x1="144.9" y1="44.9" x2="140.7" y2="70.9"/>
|
|
53
|
+
<line class="st9" x1="143.2" y1="44.7" x2="139.1" y2="70.7"/>
|
|
54
|
+
<line class="st9" x1="141.6" y1="44.4" x2="137.5" y2="70.4"/>
|
|
55
|
+
<line class="st9" x1="140" y1="44.2" x2="135.9" y2="70.2"/>
|
|
56
|
+
<line class="st9" x1="138.4" y1="43.9" x2="134.3" y2="69.9"/>
|
|
57
|
+
<line class="st9" x1="136.8" y1="43.6" x2="132.7" y2="69.6"/>
|
|
49
58
|
</g>
|
|
50
|
-
<path class="st1" d="M126.5,69.5C126.5,69.5,126.5,69.5,126.5,69.5c-0.6,3.9-4.2,6.6-8,6c-0.3,0-0.5-0.1-0.8-0.2
|
|
51
|
-
c-1.5,1.4-3.6,2.1-5.7,1.8c-3.3-0.5-5.8-3.4-5.9-6.7c-2.7,3.8-8.1,4.7-11.9,2c-1-0.7-1.9-1.7-2.5-2.8c-1.6,1.3-4,1.1-5.4-0.5
|
|
52
|
-
c-0.6-0.8-0.9-1.8-0.8-2.8c-1.9,2.9-5.4,4.5-8.9,4c-5.1-0.8-8.5-5.6-7.7-10.6c0.5-3.1,2.5-5.7,5.3-7c-0.8-3.3,1.2-6.7,4.5-7.5
|
|
53
|
-
c0.7-0.2,1.5-0.2,2.3-0.1c0.5,0.1,1,0.2,1.5,0.4c0.4-0.8,0.8-1.5,1.4-2.2c3.2-3.8,8.9-4.3,12.7-1.1c0.4,0.4,0.8,0.8,1.2,1.2
|
|
54
|
-
c0.7-0.9,1.5-1.8,2.4-2.4c1.9-1.3,4.1-1.8,6.4-1.5c5,0.8,8.4,5.5,7.7,10.5c0,0.1,0,0.2,0,0.2c0.6-0.1,1.2-0.1,1.9,0
|
|
55
|
-
c3.8,0.6,6.5,4.1,5.9,8c0,0,0,0,0,0c-0.1,0.4-0.2,0.8-0.3,1.2c-0.2,0.7-0.6,1.4-1,2C124.7,62.2,127.1,65.7,126.5,69.5z"/>
|
|
56
|
-
<path class="st5" d="M122.2,58.3c-0.1,0.4-0.2,0.8-0.3,1.2c-9.7-2.4-17.7-9.2-21.4-18.5c1.9-1.3,4.1-1.8,6.4-1.5
|
|
57
|
-
c5,0.8,8.4,5.5,7.7,10.5c0,0.1,0,0.2,0,0.2c0.6-0.1,1.2-0.1,1.9,0C120.2,50.9,122.8,54.4,122.2,58.3
|
|
58
|
-
C122.2,58.3,122.2,58.3,122.2,58.3z"/>
|
|
59
|
-
<path class="st1" d="M20.3,3c-4.2,0-7.5,3.4-7.6,7.6c0,0.6,0.1,1.2,0.2,1.8v0.1c0.9,3.8,7.3,11.9,7.3,11.9l0,0
|
|
60
|
-
c0,0,6.5-8.1,7.3-11.9v-0.1c0.1-0.6,0.2-1.2,0.2-1.8C27.8,6.4,24.4,3,20.3,3z M20.3,13c-1.5,0-2.8-1.2-2.8-2.8
|
|
61
|
-
c0-1.5,1.2-2.8,2.8-2.8c1.5,0,2.8,1.2,2.8,2.8c0,0,0,0,0,0c0.1,1.5-1.1,2.8-2.7,2.9C20.3,13.1,20.3,13.1,20.3,13L20.3,13z"/>
|
|
62
|
-
<path class="st1" d="M193.7,58h-14.8c-0.4,0-0.7,0.3-0.7,0.7v9.4h-9.4c-0.4,0-0.7,0.3-0.7,0.7v14.8c0,0.4,0.3,0.7,0.7,0.7h14.8
|
|
63
|
-
c0.4,0,0.7-0.3,0.7-0.7l0,0v-9.3h9.4c0.4,0,0.7-0.3,0.7-0.7l0,0V58.8C194.4,58.3,194.1,58,193.7,58C193.7,58,193.7,58,193.7,58z
|
|
64
|
-
M193,72.8h-13.4V59.5H193V72.8z"/>
|
|
65
|
-
<path class="st6" d="M176,71L176,71c-0.3,0-0.6,0.2-0.7,0.5l-2.3,5.7l0,0l-1.4,3.5c-0.1,0.4,0,0.8,0.4,0.9c0.4,0.1,0.8,0,0.9-0.4
|
|
66
|
-
c0,0,0,0,0,0l1.2-3h3.3l1.1,3c0.1,0.3,0.4,0.5,0.7,0.5c0.1,0,0.2,0,0.2,0c0.4-0.1,0.6-0.5,0.4-0.9l-3.3-9.2
|
|
67
|
-
C176.5,71.2,176.3,71,176,71z M174.8,76.7l1.2-3l1.1,3H174.8z"/>
|
|
68
|
-
<path class="st1" d="M181.8,63.5h0.6c0.5,1.7,1.3,3.2,2.5,4.4c-0.6,0.3-1.2,0.6-1.9,0.8c-0.4,0.1-0.6,0.5-0.5,0.9
|
|
69
|
-
c0.1,0.3,0.4,0.5,0.7,0.5c0.1,0,0.1,0,0.2,0c0.9-0.3,1.7-0.7,2.5-1.1c1.3,1.1,2.7,2,4.2,2.6c0.1,0,0.2,0,0.3,0
|
|
70
|
-
c0.3,0,0.6-0.2,0.7-0.4c0.1-0.4,0-0.8-0.4-0.9c-1.3-0.5-2.5-1.2-3.5-2c1.1-0.8,2-1.9,2.6-3.2c0.1-0.4-0.1-0.8-0.4-0.9
|
|
71
|
-
c-0.4-0.1-0.8,0-0.9,0.4c0,0,0,0,0,0c-0.5,1.1-1.3,2-2.3,2.7c-1-1.1-1.8-2.3-2.2-3.7h6.9c0.4,0,0.7-0.3,0.7-0.7
|
|
72
|
-
c0-0.4-0.3-0.7-0.7-0.7h-9.1c-0.4,0-0.7,0.3-0.7,0.7C181,63.2,181.4,63.5,181.8,63.5L181.8,63.5z"/>
|
|
73
59
|
</g>
|
|
60
|
+
<circle class="st9" cx="147.6" cy="58.7" r="12.7"/>
|
|
61
|
+
</g>
|
|
62
|
+
<g class="st7">
|
|
63
|
+
<g>
|
|
64
|
+
<defs>
|
|
65
|
+
<circle id="SVGID_3_" cx="34.3" cy="61.8" r="12.7"/>
|
|
66
|
+
</defs>
|
|
67
|
+
<clipPath id="SVGID_4_">
|
|
68
|
+
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
|
69
|
+
</clipPath>
|
|
70
|
+
<g class="st10">
|
|
71
|
+
<line class="st9" x1="47.7" y1="50.6" x2="43.5" y2="76.6"/>
|
|
72
|
+
<line class="st9" x1="44.5" y1="50.1" x2="40.3" y2="76.1"/>
|
|
73
|
+
<line class="st9" x1="41.2" y1="49.6" x2="37.1" y2="75.6"/>
|
|
74
|
+
<line class="st9" x1="38" y1="49" x2="33.9" y2="75.1"/>
|
|
75
|
+
<line class="st9" x1="34.8" y1="48.5" x2="30.7" y2="74.5"/>
|
|
76
|
+
<line class="st9" x1="31.6" y1="48" x2="27.5" y2="74"/>
|
|
77
|
+
<line class="st9" x1="28.4" y1="47.5" x2="24.2" y2="73.5"/>
|
|
78
|
+
<line class="st9" x1="25.2" y1="47" x2="21" y2="73"/>
|
|
79
|
+
</g>
|
|
80
|
+
</g>
|
|
81
|
+
<circle class="st9" cx="34.3" cy="61.8" r="12.7"/>
|
|
74
82
|
</g>
|
|
75
83
|
</svg>
|
package/src/svg/utils.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import PropTypes from 'prop-types';
|
|
2
|
+
export const emptyStatePropTypes = {
|
|
3
|
+
size: PropTypes.oneOf(['small', 'large']),
|
|
4
|
+
className: PropTypes.string,
|
|
5
|
+
alignHorizontal: PropTypes.bool,
|
|
6
|
+
dataId: PropTypes.string,
|
|
7
|
+
isRender: PropTypes.bool
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const emptyStateDefaultProps = {
|
|
11
|
+
size: 'large',
|
|
12
|
+
alignHorizontal: true,
|
|
13
|
+
isRender: true,
|
|
14
|
+
className: ''
|
|
15
|
+
};
|
package/.DS_Store
DELETED
|
Binary file
|
package/es/index.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export { default as React } from 'react';
|
|
2
|
-
export { default as ReactDOM } from 'react-dom';
|
|
3
|
-
export { renderToStaticMarkup } from 'react-dom/server';
|
|
4
|
-
|
|
5
|
-
export { default as SVG } from './svg/SVG';
|
|
6
|
-
export { default as SVG__default } from './svg/docs/SVG__default.docs';
|
package/es/svg/EmptyAccounts.js
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyAccounts.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyAccounts = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyAccounts, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyAccounts() {
|
|
15
|
-
_classCallCheck(this, EmptyAccounts);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyAccounts.__proto__ || _Object$getPrototypeOf(EmptyAccounts)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyAccounts, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 181.9 139.3', name: 'accounts', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyAccounts;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyAccounts;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
EmptyAccounts.propTypes = {
|
|
44
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
45
|
-
className: PropTypes.string,
|
|
46
|
-
alignHorizontal: PropTypes.bool
|
|
47
|
-
};
|
|
48
|
-
EmptyAccounts.defaultProps = {
|
|
49
|
-
size: 'large',
|
|
50
|
-
alignHorizontal: true
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
if (false) {
|
|
54
|
-
EmptyAccounts.docs = {
|
|
55
|
-
componentGroup: 'SVG'
|
|
56
|
-
};
|
|
57
|
-
}
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyActiveCalls.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyActiveCalls = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyActiveCalls, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyActiveCalls() {
|
|
15
|
-
_classCallCheck(this, EmptyActiveCalls);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyActiveCalls.__proto__ || _Object$getPrototypeOf(EmptyActiveCalls)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyActiveCalls, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
isRender = _props.isRender,
|
|
25
|
-
size = _props.size,
|
|
26
|
-
_props$className = _props.className,
|
|
27
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
28
|
-
alignHorizontal = _props.alignHorizontal;
|
|
29
|
-
|
|
30
|
-
return React.createElement(
|
|
31
|
-
SVG,
|
|
32
|
-
{
|
|
33
|
-
viewBox: '0 0 181.9 139.3',
|
|
34
|
-
name: 'ActiveCalls',
|
|
35
|
-
isRender: isRender,
|
|
36
|
-
size: size, className: className, alignHorizontal: alignHorizontal
|
|
37
|
-
},
|
|
38
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
39
|
-
);
|
|
40
|
-
}
|
|
41
|
-
}]);
|
|
42
|
-
|
|
43
|
-
return EmptyActiveCalls;
|
|
44
|
-
}(React.Component);
|
|
45
|
-
|
|
46
|
-
export default EmptyActiveCalls;
|
|
47
|
-
|
|
48
|
-
EmptyActiveCalls.propTypes = {
|
|
49
|
-
isRender: PropTypes.bool,
|
|
50
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
51
|
-
className: PropTypes.string,
|
|
52
|
-
alignHorizontal: PropTypes.bool
|
|
53
|
-
};
|
|
54
|
-
EmptyActiveCalls.defaultProps = {
|
|
55
|
-
isRender: true,
|
|
56
|
-
size: 'large',
|
|
57
|
-
alignHorizontal: true
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
if (false) {
|
|
61
|
-
EmptyActiveCalls.docs = {
|
|
62
|
-
componentGroup: 'SVG'
|
|
63
|
-
};
|
|
64
|
-
}
|
package/es/svg/EmptyActivity.js
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyActivity.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyActivity = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyActivity, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyActivity() {
|
|
15
|
-
_classCallCheck(this, EmptyActivity);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyActivity.__proto__ || _Object$getPrototypeOf(EmptyActivity)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyActivity, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
isRender = _props.isRender,
|
|
25
|
-
size = _props.size,
|
|
26
|
-
_props$className = _props.className,
|
|
27
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
28
|
-
alignHorizontal = _props.alignHorizontal;
|
|
29
|
-
|
|
30
|
-
return React.createElement(
|
|
31
|
-
SVG,
|
|
32
|
-
{ viewBox: '0 0 181.9 139.3', name: 'EmptyActivity', isRender: isRender, size: size, className: className, alignHorizontal: alignHorizontal },
|
|
33
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
34
|
-
);
|
|
35
|
-
}
|
|
36
|
-
}]);
|
|
37
|
-
|
|
38
|
-
return EmptyActivity;
|
|
39
|
-
}(React.Component);
|
|
40
|
-
|
|
41
|
-
export default EmptyActivity;
|
|
42
|
-
|
|
43
|
-
EmptyActivity.propTypes = {
|
|
44
|
-
isRender: PropTypes.bool,
|
|
45
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
46
|
-
className: PropTypes.string,
|
|
47
|
-
alignCenter: PropTypes.bool
|
|
48
|
-
};
|
|
49
|
-
EmptyActivity.defaultProps = {
|
|
50
|
-
isRender: true,
|
|
51
|
-
size: 'large',
|
|
52
|
-
alignHorizontal: true
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
if (false) {
|
|
56
|
-
EmptyActivity.docs = {
|
|
57
|
-
componentGroup: 'SVG'
|
|
58
|
-
};
|
|
59
|
-
}
|
package/es/svg/EmptyAgent.js
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyAgent.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyAgent = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyAgent, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyAgent() {
|
|
15
|
-
_classCallCheck(this, EmptyAgent);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyAgent.__proto__ || _Object$getPrototypeOf(EmptyAgent)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyAgent, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 181.9 139.3', name: 'agent', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyAgent;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyAgent;
|
|
41
|
-
|
|
42
|
-
EmptyAgent.propTypes = {
|
|
43
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
44
|
-
className: PropTypes.string,
|
|
45
|
-
alignHorizontal: PropTypes.bool
|
|
46
|
-
};
|
|
47
|
-
EmptyAgent.defaultProps = {
|
|
48
|
-
size: 'large',
|
|
49
|
-
alignHorizontal: true
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
if (false) {
|
|
53
|
-
EmptyAgent.docs = {
|
|
54
|
-
componentGroup: 'SVG'
|
|
55
|
-
};
|
|
56
|
-
}
|
package/es/svg/EmptyArchived.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyArchived.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyArchived = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyArchived, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyArchived() {
|
|
15
|
-
_classCallCheck(this, EmptyArchived);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyArchived.__proto__ || _Object$getPrototypeOf(EmptyArchived)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyArchived, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 181.9 139.3', name: 'archived', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyArchived;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyArchived;
|
|
41
|
-
|
|
42
|
-
EmptyArchived.propTypes = {
|
|
43
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
44
|
-
className: PropTypes.string,
|
|
45
|
-
alignHorizontal: PropTypes.bool
|
|
46
|
-
};
|
|
47
|
-
EmptyArchived.defaultProps = {
|
|
48
|
-
size: 'large',
|
|
49
|
-
alignHorizontal: true
|
|
50
|
-
};
|
|
51
|
-
if (false) {
|
|
52
|
-
EmptyArchived.docs = {
|
|
53
|
-
componentGroup: 'SVG'
|
|
54
|
-
};
|
|
55
|
-
}
|
package/es/svg/EmptyAttach.js
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyAttach.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyAttach = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyAttach, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyAttach() {
|
|
15
|
-
_classCallCheck(this, EmptyAttach);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyAttach.__proto__ || _Object$getPrototypeOf(EmptyAttach)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyAttach, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 181.9 139.3', name: 'attach', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyAttach;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyAttach;
|
|
41
|
-
|
|
42
|
-
EmptyAttach.propTypes = {
|
|
43
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
44
|
-
className: PropTypes.string,
|
|
45
|
-
alignHorizontal: PropTypes.bool
|
|
46
|
-
};
|
|
47
|
-
EmptyAttach.defaultProps = {
|
|
48
|
-
size: 'large',
|
|
49
|
-
alignHorizontal: true
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
if (false) {
|
|
53
|
-
EmptyAttach.docs = {
|
|
54
|
-
componentGroup: 'SVG'
|
|
55
|
-
};
|
|
56
|
-
}
|
package/es/svg/EmptyBlueprint.js
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyBlueprint.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyBlueprint = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyBlueprint, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyBlueprint() {
|
|
15
|
-
_classCallCheck(this, EmptyBlueprint);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyBlueprint.__proto__ || _Object$getPrototypeOf(EmptyBlueprint)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyBlueprint, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 298 123.5', name: 'blueprint', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyBlueprint;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyBlueprint;
|
|
41
|
-
|
|
42
|
-
EmptyBlueprint.propTypes = {
|
|
43
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
44
|
-
className: PropTypes.string,
|
|
45
|
-
alignHorizontal: PropTypes.bool
|
|
46
|
-
};
|
|
47
|
-
EmptyBlueprint.defaultProps = {
|
|
48
|
-
size: 'large',
|
|
49
|
-
alignHorizontal: true
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
if (false) {
|
|
53
|
-
EmptyBlueprint.docs = {
|
|
54
|
-
componentGroup: 'SVG'
|
|
55
|
-
};
|
|
56
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
|
|
2
|
-
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
|
|
3
|
-
import _createClass from 'babel-runtime/helpers/createClass';
|
|
4
|
-
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
|
|
5
|
-
import _inherits from 'babel-runtime/helpers/inherits';
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import SVG from './SVG';
|
|
9
|
-
import image from './images/EmptyBusinessHoliday.svg';
|
|
10
|
-
|
|
11
|
-
var EmptyBusinessHoliday = function (_React$Component) {
|
|
12
|
-
_inherits(EmptyBusinessHoliday, _React$Component);
|
|
13
|
-
|
|
14
|
-
function EmptyBusinessHoliday() {
|
|
15
|
-
_classCallCheck(this, EmptyBusinessHoliday);
|
|
16
|
-
|
|
17
|
-
return _possibleConstructorReturn(this, (EmptyBusinessHoliday.__proto__ || _Object$getPrototypeOf(EmptyBusinessHoliday)).apply(this, arguments));
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
_createClass(EmptyBusinessHoliday, [{
|
|
21
|
-
key: 'render',
|
|
22
|
-
value: function render() {
|
|
23
|
-
var _props = this.props,
|
|
24
|
-
size = _props.size,
|
|
25
|
-
_props$className = _props.className,
|
|
26
|
-
className = _props$className === undefined ? '' : _props$className,
|
|
27
|
-
alignHorizontal = _props.alignHorizontal;
|
|
28
|
-
|
|
29
|
-
return React.createElement(
|
|
30
|
-
SVG,
|
|
31
|
-
{ viewBox: '0 0 181.9 139.3', name: 'businessholiday', size: size, className: className, alignHorizontal: alignHorizontal },
|
|
32
|
-
React.createElement('image', { xlinkHref: image, height: '100%', width: '100%' })
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
}]);
|
|
36
|
-
|
|
37
|
-
return EmptyBusinessHoliday;
|
|
38
|
-
}(React.Component);
|
|
39
|
-
|
|
40
|
-
export default EmptyBusinessHoliday;
|
|
41
|
-
|
|
42
|
-
EmptyBusinessHoliday.propTypes = {
|
|
43
|
-
size: PropTypes.oneOf('small', 'large'),
|
|
44
|
-
className: PropTypes.string,
|
|
45
|
-
alignHorizontal: PropTypes.bool
|
|
46
|
-
};
|
|
47
|
-
EmptyBusinessHoliday.defaultProps = {
|
|
48
|
-
size: 'large',
|
|
49
|
-
alignHorizontal: true
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
if (false) {
|
|
53
|
-
EmptyBusinessHoliday.docs = {
|
|
54
|
-
componentGroup: 'SVG'
|
|
55
|
-
};
|
|
56
|
-
}
|