@leapdev/gui-icons 3.0.20 → 3.0.22
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/CHANGELOG.md +491 -471
- package/dist/app.js +285 -76
- package/dist/icons/.DS_Store +0 -0
- package/dist/icons/leap-web/accounting-24.svg +5 -0
- package/dist/icons/leap-web/apps-24.svg +4 -0
- package/dist/icons/leap-web/bell-unread-20.svg +3 -3
- package/dist/icons/leap-web/browse-16.svg +3 -4
- package/dist/icons/leap-web/browse-20.svg +4 -0
- package/dist/icons/leap-web/filled-pin-16.svg +1 -1
- package/dist/icons/leap-web/grey-excel-20.svg +22 -0
- package/dist/icons/leap-web/grey-lawconnect-20.svg +11 -0
- package/dist/icons/leap-web/grey-leads-20.svg +3 -0
- package/dist/icons/leap-web/grey-legal-aid-20.svg +3 -0
- package/dist/icons/leap-web/grey-myob-20.svg +3 -0
- package/dist/icons/leap-web/grey-office365-20.svg +39 -0
- package/dist/icons/leap-web/grey-outlook-20.svg +36 -0
- package/dist/icons/leap-web/grey-quickbooks-20.svg +11 -0
- package/dist/icons/leap-web/grey-rapidpay-20.svg +3 -0
- package/dist/icons/leap-web/grey-word-20.svg +35 -0
- package/dist/icons/leap-web/grey-xero-20.svg +11 -0
- package/dist/icons/leap-web/help-24.svg +4 -0
- package/dist/icons/leap-web/home-24.svg +3 -0
- package/dist/icons/leap-web/lock-16.svg +2 -1
- package/dist/icons/leap-web/lock-20.svg +3 -1
- package/dist/icons/leap-web/other-24.svg +4 -0
- package/dist/icons/leap-web/pin-10.svg +1 -1
- package/dist/icons/leap-web/reports-24.svg +3 -0
- package/dist/icons/leap-web/rgb-excel-20.svg +20 -0
- package/dist/icons/leap-web/rgb-office365-20.svg +37 -0
- package/dist/icons/leap-web/rgb-outlook-20.svg +34 -0
- package/dist/icons/leap-web/rgb-word-20.svg +33 -0
- package/dist/icons/leap-web/settings-24.svg +4 -0
- package/dist/icons/leap-web/swap-16.svg +5 -0
- package/dist/icons/leap-web/swap-20.svg +5 -0
- package/dist/icons/leap-web/two-tone-pdf-20.svg +3 -3
- package/dist/icons/leap-web/two-tone-pdf-24.svg +3 -3
- package/dist/icons/sprite-leap-web.svg +1 -1
- package/dist/index.html +40 -20
- package/dist/index.js +28 -9
- package/package.json +1 -1
- package/dist/icons/leap-web/add-circle.svg +0 -3
- package/dist/icons/leap-web/excel-20.svg +0 -24
- package/dist/icons/leap-web/more-horiz-20-1.svg +0 -3
- package/dist/icons/leap-web/office365-20.svg +0 -39
- package/dist/icons/leap-web/outlook-20.svg +0 -36
- package/dist/icons/leap-web/word-20.svg +0 -35
- /package/dist/icons/leap-web/{rgb-teams-logo-20.svg → open-teams-20.svg} +0 -0
- /package/dist/icons/leap-web/{two-tone-open-teams-24.svg → open-teams-24.svg} +0 -0
- /package/dist/icons/leap-web/{two-tone-journal-credit20.svg → two-tone-journal-credit-20.svg} +0 -0
package/dist/index.html
CHANGED
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
.form-control::placeholder {
|
|
50
50
|
color: #afb4bc;
|
|
51
51
|
}
|
|
52
|
+
.original-size svg {
|
|
53
|
+
height: auto;
|
|
54
|
+
width: auto;
|
|
55
|
+
}
|
|
52
56
|
</style>
|
|
53
57
|
</head>
|
|
54
58
|
<body class="bg-light">
|
|
@@ -72,12 +76,9 @@
|
|
|
72
76
|
<select v-model="selected" class="form-control">
|
|
73
77
|
<option value="doctype">Doctype</option>
|
|
74
78
|
<option value="desktop">Desktop</option>
|
|
75
|
-
<option value="web
|
|
76
|
-
<option value="web-two-tone">Web Two Tone</option>
|
|
77
|
-
<option value="web-multi-tone">Web Multi Tone</option>
|
|
79
|
+
<option value="leap-web">LEAP Web</option>
|
|
78
80
|
<option value="two-tone">Two Tone</option>
|
|
79
81
|
<option value="filled">Filled</option>
|
|
80
|
-
<option value="two-tone">Two Tone</option>
|
|
81
82
|
<option value="social">Social</option>
|
|
82
83
|
<option value="content-app">SAS</option>
|
|
83
84
|
<option value="empty-states">Empty States</option>
|
|
@@ -92,11 +93,11 @@
|
|
|
92
93
|
<div class="row">
|
|
93
94
|
<div class="col-6 col-md-3 col-lg-3" v-for="icon in filteredList" :key="icon.id">
|
|
94
95
|
<div class="card bg-white mb-3">
|
|
95
|
-
<div class="card-body text-center">
|
|
96
|
-
<svg class="x-icon x-icon-xxl
|
|
96
|
+
<div class="card-body text-center" :class="{ 'original-size': selected === 'leap-web' }">
|
|
97
|
+
<svg :class="selected !== 'leap-web' ? 'x-icon x-icon-xxl' : ''" :style="selected === 'leap-web' ? getSvgStyle(icon.id) : {}">
|
|
97
98
|
<use :xlink:href="icon.url"></use>
|
|
98
99
|
</svg>
|
|
99
|
-
<p class="card-text">#{{ icon.id }}</p>
|
|
100
|
+
<p class="card-text mt-3">#{{ icon.id }}</p>
|
|
100
101
|
</div>
|
|
101
102
|
</div>
|
|
102
103
|
</div>
|
|
@@ -118,9 +119,7 @@
|
|
|
118
119
|
const categories = [
|
|
119
120
|
{ name: 'doctype', file: 'sprite-doctype.svg' },
|
|
120
121
|
{ name: 'desktop', file: 'sprite-desktop.svg' },
|
|
121
|
-
{ name: 'web
|
|
122
|
-
{ name: 'web-two-tone', file: 'sprite-web-two-tone.svg' },
|
|
123
|
-
{ name: 'web-multi-tone', file: 'sprite-web-multi-tone.svg' },
|
|
122
|
+
{ name: 'leap-web', file: 'sprite-leap-web.svg' },
|
|
124
123
|
{ name: 'two-tone', file: 'sprite-two-tone.svg' },
|
|
125
124
|
{ name: 'filled', file: 'sprite-filled.svg' },
|
|
126
125
|
{ name: 'social', file: 'sprite-social.svg' },
|
|
@@ -129,15 +128,20 @@
|
|
|
129
128
|
];
|
|
130
129
|
|
|
131
130
|
for (const category of categories) {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
131
|
+
try {
|
|
132
|
+
const response = await fetch(`./${category.path || 'icons/'}${category.file}`);
|
|
133
|
+
const text = await response.text();
|
|
134
|
+
const parser = new DOMParser();
|
|
135
|
+
const svg = parser.parseFromString(text, 'image/svg+xml');
|
|
136
|
+
const symbols = svg.querySelectorAll('symbol');
|
|
137
|
+
icons.value[category.name] = Array.from(symbols).map(symbol => ({
|
|
138
|
+
id: symbol.id,
|
|
139
|
+
url: `./${category.path || 'icons/'}${category.file}#${symbol.id}`
|
|
140
|
+
}));
|
|
141
|
+
} catch (error) {
|
|
142
|
+
console.error(`Error loading ${category.name} icons:`, error);
|
|
143
|
+
icons.value[category.name] = [];
|
|
144
|
+
}
|
|
141
145
|
}
|
|
142
146
|
};
|
|
143
147
|
|
|
@@ -148,12 +152,28 @@
|
|
|
148
152
|
);
|
|
149
153
|
});
|
|
150
154
|
|
|
155
|
+
// Extract size from icon name and apply it as style
|
|
156
|
+
const getSvgStyle = (iconId) => {
|
|
157
|
+
let size = '20px';
|
|
158
|
+
// Check if the icon name contains a number (size) at the end
|
|
159
|
+
const sizeMatch = iconId.match(/-(\d+)$/);
|
|
160
|
+
if (sizeMatch && sizeMatch[1]) {
|
|
161
|
+
size = `${sizeMatch[1]}px`;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
return {
|
|
165
|
+
width: size,
|
|
166
|
+
height: size
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
|
|
151
170
|
loadIcons();
|
|
152
171
|
|
|
153
172
|
return {
|
|
154
173
|
search,
|
|
155
174
|
selected,
|
|
156
|
-
filteredList
|
|
175
|
+
filteredList,
|
|
176
|
+
getSvgStyle
|
|
157
177
|
};
|
|
158
178
|
}
|
|
159
179
|
}).mount('#app');
|
package/dist/index.js
CHANGED
|
@@ -600,15 +600,16 @@ export { default as FilledVisibleGrid20 } from './icons/filled/visible-grid-20.s
|
|
|
600
600
|
export { default as FilledWarningTriangleOutline } from './icons/filled/warning-triangle-outline.svg';
|
|
601
601
|
export { default as FilledXero } from './icons/filled/xero.svg';
|
|
602
602
|
export { default as LeapWebAccounting20 } from './icons/leap-web/accounting-20.svg';
|
|
603
|
+
export { default as LeapWebAccounting24 } from './icons/leap-web/accounting-24.svg';
|
|
603
604
|
export { default as LeapWebAdd16 } from './icons/leap-web/add-16.svg';
|
|
604
605
|
export { default as LeapWebAddCircle16 } from './icons/leap-web/add-circle-16.svg';
|
|
605
606
|
export { default as LeapWebAddCircle20 } from './icons/leap-web/add-circle-20.svg';
|
|
606
|
-
export { default as LeapWebAddCircle } from './icons/leap-web/add-circle.svg';
|
|
607
607
|
export { default as LeapWebAlignCenter20 } from './icons/leap-web/align-center-20.svg';
|
|
608
608
|
export { default as LeapWebAlignJustify20 } from './icons/leap-web/align-justify-20.svg';
|
|
609
609
|
export { default as LeapWebAlignLeft20 } from './icons/leap-web/align-left-20.svg';
|
|
610
610
|
export { default as LeapWebAlignRight20 } from './icons/leap-web/align-right-20.svg';
|
|
611
611
|
export { default as LeapWebApps20 } from './icons/leap-web/apps-20.svg';
|
|
612
|
+
export { default as LeapWebApps24 } from './icons/leap-web/apps-24.svg';
|
|
612
613
|
export { default as LeapWebArrowDotDown16 } from './icons/leap-web/arrow-dot-down-16.svg';
|
|
613
614
|
export { default as LeapWebArrowDotDown20 } from './icons/leap-web/arrow-dot-down-20.svg';
|
|
614
615
|
export { default as LeapWebArrowDotLeft16 } from './icons/leap-web/arrow-dot-left-16.svg';
|
|
@@ -637,6 +638,7 @@ export { default as LeapWebBlock16 } from './icons/leap-web/block-16.svg';
|
|
|
637
638
|
export { default as LeapWebBlock20 } from './icons/leap-web/block-20.svg';
|
|
638
639
|
export { default as LeapWebBold20 } from './icons/leap-web/bold-20.svg';
|
|
639
640
|
export { default as LeapWebBrowse16 } from './icons/leap-web/browse-16.svg';
|
|
641
|
+
export { default as LeapWebBrowse20 } from './icons/leap-web/browse-20.svg';
|
|
640
642
|
export { default as LeapWebBuild16 } from './icons/leap-web/build-16.svg';
|
|
641
643
|
export { default as LeapWebBuild20 } from './icons/leap-web/build-20.svg';
|
|
642
644
|
export { default as LeapWebBusiness20 } from './icons/leap-web/business-20.svg';
|
|
@@ -699,7 +701,6 @@ export { default as LeapWebEnvelopeWarning20 } from './icons/leap-web/envelope-w
|
|
|
699
701
|
export { default as LeapWebError12 } from './icons/leap-web/error-12.svg';
|
|
700
702
|
export { default as LeapWebError16 } from './icons/leap-web/error-16.svg';
|
|
701
703
|
export { default as LeapWebError20 } from './icons/leap-web/error-20.svg';
|
|
702
|
-
export { default as LeapWebExcel20 } from './icons/leap-web/excel-20.svg';
|
|
703
704
|
export { default as LeapWebExpand16 } from './icons/leap-web/expand-16.svg';
|
|
704
705
|
export { default as LeapWebExpandLessHoriz16 } from './icons/leap-web/expand-less-horiz-16.svg';
|
|
705
706
|
export { default as LeapWebExpandLessHoriz20 } from './icons/leap-web/expand-less-horiz-20.svg';
|
|
@@ -726,15 +727,28 @@ export { default as LeapWebFolderMatter20 } from './icons/leap-web/folder-matter
|
|
|
726
727
|
export { default as LeapWebFolderNew16 } from './icons/leap-web/folder-new-16.svg';
|
|
727
728
|
export { default as LeapWebFolderNew20 } from './icons/leap-web/folder-new-20.svg';
|
|
728
729
|
export { default as LeapWebForms20 } from './icons/leap-web/forms-20.svg';
|
|
730
|
+
export { default as LeapWebGreyExcel20 } from './icons/leap-web/grey-excel-20.svg';
|
|
731
|
+
export { default as LeapWebGreyLawconnect20 } from './icons/leap-web/grey-lawconnect-20.svg';
|
|
732
|
+
export { default as LeapWebGreyLeads20 } from './icons/leap-web/grey-leads-20.svg';
|
|
733
|
+
export { default as LeapWebGreyLegalAid20 } from './icons/leap-web/grey-legal-aid-20.svg';
|
|
734
|
+
export { default as LeapWebGreyMyob20 } from './icons/leap-web/grey-myob-20.svg';
|
|
735
|
+
export { default as LeapWebGreyOffice36520 } from './icons/leap-web/grey-office365-20.svg';
|
|
736
|
+
export { default as LeapWebGreyOutlook20 } from './icons/leap-web/grey-outlook-20.svg';
|
|
737
|
+
export { default as LeapWebGreyQuickbooks20 } from './icons/leap-web/grey-quickbooks-20.svg';
|
|
738
|
+
export { default as LeapWebGreyRapidpay20 } from './icons/leap-web/grey-rapidpay-20.svg';
|
|
739
|
+
export { default as LeapWebGreyWord20 } from './icons/leap-web/grey-word-20.svg';
|
|
740
|
+
export { default as LeapWebGreyXero20 } from './icons/leap-web/grey-xero-20.svg';
|
|
729
741
|
export { default as LeapWebGrid16 } from './icons/leap-web/grid-16.svg';
|
|
730
742
|
export { default as LeapWebGrid20 } from './icons/leap-web/grid-20.svg';
|
|
731
743
|
export { default as LeapWebGroup16 } from './icons/leap-web/group-16.svg';
|
|
732
744
|
export { default as LeapWebGroup20 } from './icons/leap-web/group-20.svg';
|
|
733
745
|
export { default as LeapWebHelp20 } from './icons/leap-web/help-20.svg';
|
|
746
|
+
export { default as LeapWebHelp24 } from './icons/leap-web/help-24.svg';
|
|
734
747
|
export { default as LeapWebHistory16 } from './icons/leap-web/history-16.svg';
|
|
735
748
|
export { default as LeapWebHistory20 } from './icons/leap-web/history-20.svg';
|
|
736
749
|
export { default as LeapWebHome16 } from './icons/leap-web/home-16.svg';
|
|
737
750
|
export { default as LeapWebHome20 } from './icons/leap-web/home-20.svg';
|
|
751
|
+
export { default as LeapWebHome24 } from './icons/leap-web/home-24.svg';
|
|
738
752
|
export { default as LeapWebIdea16 } from './icons/leap-web/idea-16.svg';
|
|
739
753
|
export { default as LeapWebIdea20 } from './icons/leap-web/idea-20.svg';
|
|
740
754
|
export { default as LeapWebImage20 } from './icons/leap-web/image-20.svg';
|
|
@@ -768,7 +782,6 @@ export { default as LeapWebMinus12 } from './icons/leap-web/minus-12.svg';
|
|
|
768
782
|
export { default as LeapWebMinus16 } from './icons/leap-web/minus-16.svg';
|
|
769
783
|
export { default as LeapWebMinusCircle16 } from './icons/leap-web/minus-circle-16.svg';
|
|
770
784
|
export { default as LeapWebMoreHoriz16 } from './icons/leap-web/more-horiz-16.svg';
|
|
771
|
-
export { default as LeapWebMoreHoriz201 } from './icons/leap-web/more-horiz-20-1.svg';
|
|
772
785
|
export { default as LeapWebMoreHoriz20 } from './icons/leap-web/more-horiz-20.svg';
|
|
773
786
|
export { default as LeapWebMoreVert16 } from './icons/leap-web/more-vert-16.svg';
|
|
774
787
|
export { default as LeapWebMoreVert20 } from './icons/leap-web/more-vert-20.svg';
|
|
@@ -776,10 +789,11 @@ export { default as LeapWebMove20 } from './icons/leap-web/move-20.svg';
|
|
|
776
789
|
export { default as LeapWebMultipleFlag16 } from './icons/leap-web/multiple-flag-16.svg';
|
|
777
790
|
export { default as LeapWebMultipleFlag20 } from './icons/leap-web/multiple-flag-20.svg';
|
|
778
791
|
export { default as LeapWebMyob20 } from './icons/leap-web/myob-20.svg';
|
|
779
|
-
export { default as
|
|
792
|
+
export { default as LeapWebOpenTeams20 } from './icons/leap-web/open-teams-20.svg';
|
|
793
|
+
export { default as LeapWebOpenTeams24 } from './icons/leap-web/open-teams-24.svg';
|
|
780
794
|
export { default as LeapWebOptions16 } from './icons/leap-web/options-16.svg';
|
|
781
795
|
export { default as LeapWebOther20 } from './icons/leap-web/other-20.svg';
|
|
782
|
-
export { default as
|
|
796
|
+
export { default as LeapWebOther24 } from './icons/leap-web/other-24.svg';
|
|
783
797
|
export { default as LeapWebPacket20 } from './icons/leap-web/packet-20.svg';
|
|
784
798
|
export { default as LeapWebPackets20 } from './icons/leap-web/packets-20.svg';
|
|
785
799
|
export { default as LeapWebPaneCombined16 } from './icons/leap-web/pane-combined-16.svg';
|
|
@@ -817,11 +831,16 @@ export { default as LeapWebRename20 } from './icons/leap-web/rename-20.svg';
|
|
|
817
831
|
export { default as LeapWebReply16 } from './icons/leap-web/reply-16.svg';
|
|
818
832
|
export { default as LeapWebReply20 } from './icons/leap-web/reply-20.svg';
|
|
819
833
|
export { default as LeapWebReports20 } from './icons/leap-web/reports-20.svg';
|
|
820
|
-
export { default as
|
|
834
|
+
export { default as LeapWebReports24 } from './icons/leap-web/reports-24.svg';
|
|
835
|
+
export { default as LeapWebRgbExcel20 } from './icons/leap-web/rgb-excel-20.svg';
|
|
836
|
+
export { default as LeapWebRgbOffice36520 } from './icons/leap-web/rgb-office365-20.svg';
|
|
837
|
+
export { default as LeapWebRgbOutlook20 } from './icons/leap-web/rgb-outlook-20.svg';
|
|
838
|
+
export { default as LeapWebRgbWord20 } from './icons/leap-web/rgb-word-20.svg';
|
|
821
839
|
export { default as LeapWebSearch16 } from './icons/leap-web/search-16.svg';
|
|
822
840
|
export { default as LeapWebSearch20 } from './icons/leap-web/search-20.svg';
|
|
823
841
|
export { default as LeapWebSettings16 } from './icons/leap-web/settings-16.svg';
|
|
824
842
|
export { default as LeapWebSettings20 } from './icons/leap-web/settings-20.svg';
|
|
843
|
+
export { default as LeapWebSettings24 } from './icons/leap-web/settings-24.svg';
|
|
825
844
|
export { default as LeapWebShare16 } from './icons/leap-web/share-16.svg';
|
|
826
845
|
export { default as LeapWebShare20 } from './icons/leap-web/share-20.svg';
|
|
827
846
|
export { default as LeapWebShieldCheck16 } from './icons/leap-web/shield-check-16.svg';
|
|
@@ -843,6 +862,8 @@ export { default as LeapWebStop20 } from './icons/leap-web/stop-20.svg';
|
|
|
843
862
|
export { default as LeapWebStopCircle16 } from './icons/leap-web/stop-circle-16.svg';
|
|
844
863
|
export { default as LeapWebStopCircle20 } from './icons/leap-web/stop-circle-20.svg';
|
|
845
864
|
export { default as LeapWebStrike20 } from './icons/leap-web/strike-20.svg';
|
|
865
|
+
export { default as LeapWebSwap16 } from './icons/leap-web/swap-16.svg';
|
|
866
|
+
export { default as LeapWebSwap20 } from './icons/leap-web/swap-20.svg';
|
|
846
867
|
export { default as LeapWebTemplates20 } from './icons/leap-web/templates-20.svg';
|
|
847
868
|
export { default as LeapWebTextStroke20 } from './icons/leap-web/text-stroke-20.svg';
|
|
848
869
|
export { default as LeapWebTick16 } from './icons/leap-web/tick-16.svg';
|
|
@@ -943,7 +964,7 @@ export { default as LeapWebTwoToneInvoice20 } from './icons/leap-web/two-tone-in
|
|
|
943
964
|
export { default as LeapWebTwoToneInvoice24 } from './icons/leap-web/two-tone-invoice-24.svg';
|
|
944
965
|
export { default as LeapWebTwoToneJournal20 } from './icons/leap-web/two-tone-journal-20.svg';
|
|
945
966
|
export { default as LeapWebTwoToneJournal24 } from './icons/leap-web/two-tone-journal-24.svg';
|
|
946
|
-
export { default as LeapWebTwoToneJournalCredit20 } from './icons/leap-web/two-tone-journal-
|
|
967
|
+
export { default as LeapWebTwoToneJournalCredit20 } from './icons/leap-web/two-tone-journal-credit-20.svg';
|
|
947
968
|
export { default as LeapWebTwoToneJournalCredit24 } from './icons/leap-web/two-tone-journal-credit24.svg';
|
|
948
969
|
export { default as LeapWebTwoToneJournalRefund20 } from './icons/leap-web/two-tone-journal-refund-20.svg';
|
|
949
970
|
export { default as LeapWebTwoToneJournalRefund24 } from './icons/leap-web/two-tone-journal-refund-24.svg';
|
|
@@ -962,7 +983,6 @@ export { default as LeapWebTwoToneNewAccount20 } from './icons/leap-web/two-tone
|
|
|
962
983
|
export { default as LeapWebTwoToneNewAccount24 } from './icons/leap-web/two-tone-new-account-24.svg';
|
|
963
984
|
export { default as LeapWebTwoToneNewAnticipated20 } from './icons/leap-web/two-tone-new-anticipated-20.svg';
|
|
964
985
|
export { default as LeapWebTwoToneNewAnticipated24 } from './icons/leap-web/two-tone-new-anticipated-24.svg';
|
|
965
|
-
export { default as LeapWebTwoToneOpenTeams24 } from './icons/leap-web/two-tone-open-teams-24.svg';
|
|
966
986
|
export { default as LeapWebTwoToneOther24 } from './icons/leap-web/two-tone-other-24.svg';
|
|
967
987
|
export { default as LeapWebTwoTonePacket20 } from './icons/leap-web/two-tone-packet-20.svg';
|
|
968
988
|
export { default as LeapWebTwoTonePacket24 } from './icons/leap-web/two-tone-packet-24.svg';
|
|
@@ -1065,7 +1085,6 @@ export { default as LeapWebVisible20 } from './icons/leap-web/visible-20.svg';
|
|
|
1065
1085
|
export { default as LeapWebWarning12 } from './icons/leap-web/warning-12.svg';
|
|
1066
1086
|
export { default as LeapWebWarning16 } from './icons/leap-web/warning-16.svg';
|
|
1067
1087
|
export { default as LeapWebWarning20 } from './icons/leap-web/warning-20.svg';
|
|
1068
|
-
export { default as LeapWebWord20 } from './icons/leap-web/word-20.svg';
|
|
1069
1088
|
export { default as LeapWebXero20 } from './icons/leap-web/xero-20.svg';
|
|
1070
1089
|
export { default as MiscFacebook } from './icons/misc/facebook.svg';
|
|
1071
1090
|
export { default as MiscGoogle } from './icons/misc/google.svg';
|
package/package.json
CHANGED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
|
|
2
|
-
<path fill="currentColor" fill-rule="evenodd" d="M17 10a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm1 0a8 8 0 1 1-16 0 8 8 0 0 1 16 0ZM9.993 6.25a.5.5 0 0 1 .5.5v2.757h2.756a.5.5 0 1 1 0 1h-2.756v2.742a.5.5 0 1 1-1 0v-2.742H6.75a.5.5 0 1 1 0-1h2.742V6.751a.5.5 0 0 1 .5-.5Z" clip-rule="evenodd"/>
|
|
3
|
-
</svg>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g style="mix-blend-mode:luminosity">
|
|
3
|
-
<path d="M11.5693 2.50005H5.73921C5.64702 2.49893 5.55555 2.51627 5.47016 2.55103C5.38478 2.58579 5.30721 2.63728 5.24202 2.70247C5.17683 2.76766 5.12534 2.84523 5.09058 2.93061C5.05582 3.016 5.03848 3.10747 5.0396 3.19966V6.24794H11.6026L11.5693 2.50005Z" fill="#21A366"/>
|
|
4
|
-
<path d="M16.9663 2.50005H11.5693V6.24794H17.6742V3.19133C17.6731 3.09945 17.654 3.00869 17.6178 2.92423C17.5816 2.83976 17.5292 2.76325 17.4634 2.69906C17.3977 2.63486 17.32 2.58425 17.2347 2.5501C17.1494 2.51596 17.0582 2.49895 16.9663 2.50005Z" fill="#33C481"/>
|
|
5
|
-
<path d="M17.6659 9.99585H11.5693V13.7521H17.6659V9.99585Z" fill="#107C41"/>
|
|
6
|
-
<path d="M11.5694 13.7521V9.99585H5.0064V16.8003C5.00528 16.8925 5.02261 16.984 5.05738 17.0694C5.09214 17.1548 5.14363 17.2323 5.20882 17.2975C5.27401 17.3627 5.35158 17.4142 5.43696 17.449C5.52234 17.4837 5.61382 17.5011 5.706 17.5H16.9663C17.0589 17.5011 17.1508 17.4838 17.2366 17.4491C17.3225 17.4144 17.4006 17.3631 17.4664 17.298C17.5323 17.2329 17.5845 17.1554 17.6202 17.07C17.6559 16.9846 17.6743 16.8929 17.6743 16.8003V13.7521H11.5694Z" fill="#185C37"/>
|
|
7
|
-
<path d="M11.5776 6.2395H5.00635V9.99572H11.5776V6.2395Z" fill="#107C41"/>
|
|
8
|
-
<path d="M17.6659 6.2395H11.5693V9.99572H17.6659V6.2395Z" fill="#21A366"/>
|
|
9
|
-
<path opacity="0.05" d="M9.33913 5.40991H5.03955V15.4099H9.33913C10.1862 15.4099 10.8729 14.7232 10.8729 13.8762V6.94366C10.8729 6.09658 10.1862 5.40991 9.33913 5.40991Z" fill="black"/>
|
|
10
|
-
<path opacity="0.07" d="M9.29497 14.9934H5.03955V5.54883H9.29497C10.0133 5.54883 10.5954 6.13091 10.5954 6.84924V13.693C10.595 14.4113 10.0129 14.9934 9.29497 14.9934Z" fill="black"/>
|
|
11
|
-
<path opacity="0.09" d="M9.25038 14.5767H5.03955V5.68799H9.25038C9.83955 5.68799 10.3171 6.16549 10.3171 6.75465V13.5101C10.3175 14.0992 9.83955 14.5767 9.25038 14.5767Z" fill="black"/>
|
|
12
|
-
<path d="M8.98731 5.77319H1.95793C1.56695 5.77319 1.25 6.09015 1.25 6.48113V13.5105C1.25 13.9015 1.56695 14.2184 1.95793 14.2184H8.98731C9.37829 14.2184 9.69524 13.9015 9.69524 13.5105V6.48113C9.69524 6.09015 9.37829 5.77319 8.98731 5.77319Z" fill="#107C41"/>
|
|
13
|
-
<path d="M3.43213 12.2863L4.9063 9.99594L3.55706 7.7139H4.64811L5.38103 9.16308C5.43681 9.26452 5.48416 9.37037 5.52262 9.47957C5.56868 9.36816 5.62152 9.25969 5.68086 9.15475L6.51373 7.70557H7.51316L6.08897 9.99594L7.51316 12.303H6.4471L5.61423 10.6955C5.56989 10.6308 5.53353 10.5608 5.50596 10.4873C5.47827 10.5593 5.44485 10.6289 5.40602 10.6955L4.52318 12.303L3.43213 12.2863Z" fill="white"/>
|
|
14
|
-
<g style="mix-blend-mode:soft-light" opacity="0.5">
|
|
15
|
-
<path style="mix-blend-mode:soft-light" opacity="0.5" d="M8.98731 5.77319H1.95793C1.56695 5.77319 1.25 6.09015 1.25 6.48113V13.5105C1.25 13.9015 1.56695 14.2184 1.95793 14.2184H8.98731C9.37829 14.2184 9.69524 13.9015 9.69524 13.5105V6.48113C9.69524 6.09015 9.37829 5.77319 8.98731 5.77319Z" fill="url(#paint0_linear_924_1471)"/>
|
|
16
|
-
</g>
|
|
17
|
-
</g>
|
|
18
|
-
<defs>
|
|
19
|
-
<linearGradient id="paint0_linear_924_1471" x1="2.71584" y1="5.2235" x2="8.2294" y2="14.7681" gradientUnits="userSpaceOnUse">
|
|
20
|
-
<stop stop-color="white" stop-opacity="0.5"/>
|
|
21
|
-
<stop offset="1" stop-opacity="0.7"/>
|
|
22
|
-
</linearGradient>
|
|
23
|
-
</defs>
|
|
24
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.25 10C6.25 10.6904 5.69036 11.25 5 11.25C4.30964 11.25 3.75 10.6904 3.75 10C3.75 9.30964 4.30964 8.75 5 8.75C5.69036 8.75 6.25 9.30964 6.25 10ZM11.25 10C11.25 10.6904 10.6904 11.25 10 11.25C9.30964 11.25 8.75 10.6904 8.75 10C8.75 9.30964 9.30964 8.75 10 8.75C10.6904 8.75 11.25 9.30964 11.25 10ZM15 11.25C15.6904 11.25 16.25 10.6904 16.25 10C16.25 9.30964 15.6904 8.75 15 8.75C14.3096 8.75 13.75 9.30964 13.75 10C13.75 10.6904 14.3096 11.25 15 11.25Z" fill="currentColor"/>
|
|
3
|
-
</svg>
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g style="mix-blend-mode:luminosity">
|
|
3
|
-
<path d="M14.951 3.05877C15.7189 3.27085 16.2498 3.96168 16.2498 4.74877V15.2329C16.2498 16.0271 15.7077 16.7204 14.9298 16.9267L10.1206 18.2763L11.6664 15V4.58335L10.3548 1.7146L14.951 3.05877Z" fill="url(#paint0_linear_924_1485)"/>
|
|
4
|
-
<path d="M11.6666 14.5833V16.2195C11.6666 17.8041 10.0733 18.8233 8.742 18.0908L5.852 16.2387C5.51784 16.0445 5.337 15.6295 5.45034 15.2149C5.55575 14.8291 5.91742 14.5833 6.29784 14.5833H11.6666Z" fill="url(#paint1_linear_924_1485)"/>
|
|
5
|
-
<path d="M9.14433 1.88578L4.176 4.71328C3.65516 5.00995 3.3335 5.56287 3.3335 6.16203V13.8408C3.3335 14.4062 3.94141 14.7637 4.43558 14.4883L6.29891 13.4504C6.526 13.3241 6.66683 13.0841 6.66683 12.8241V7.39287C6.66683 6.84828 6.99183 6.35953 7.48475 6.16412L11.6668 4.71162V3.42412C11.6668 2.08912 10.2789 1.24287 9.14433 1.88578Z" fill="url(#paint2_linear_924_1485)"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<linearGradient id="paint0_linear_924_1485" x1="13.1852" y1="2.8496" x2="13.1852" y2="16.9229" gradientUnits="userSpaceOnUse">
|
|
9
|
-
<stop stop-color="#E68E00"/>
|
|
10
|
-
<stop offset="0.036" stop-color="#E38400"/>
|
|
11
|
-
<stop offset="0.171" stop-color="#DB6200"/>
|
|
12
|
-
<stop offset="0.299" stop-color="#D44A00"/>
|
|
13
|
-
<stop offset="0.417" stop-color="#D03B00"/>
|
|
14
|
-
<stop offset="0.515" stop-color="#CF3600"/>
|
|
15
|
-
<stop offset="0.878" stop-color="#D22900"/>
|
|
16
|
-
<stop offset="1" stop-color="#D42400"/>
|
|
17
|
-
</linearGradient>
|
|
18
|
-
<linearGradient id="paint1_linear_924_1485" x1="5.80075" y1="14.5628" x2="12.1045" y2="17.1137" gradientUnits="userSpaceOnUse">
|
|
19
|
-
<stop stop-color="#F52537"/>
|
|
20
|
-
<stop offset="0.293" stop-color="#F32536"/>
|
|
21
|
-
<stop offset="0.465" stop-color="#EA2434"/>
|
|
22
|
-
<stop offset="0.605" stop-color="#DC2231"/>
|
|
23
|
-
<stop offset="0.729" stop-color="#C8202C"/>
|
|
24
|
-
<stop offset="0.841" stop-color="#AE1E25"/>
|
|
25
|
-
<stop offset="0.944" stop-color="#8F1A1D"/>
|
|
26
|
-
<stop offset="1" stop-color="#7A1818"/>
|
|
27
|
-
</linearGradient>
|
|
28
|
-
<linearGradient id="paint2_linear_924_1485" x1="2.24266" y1="13.4537" x2="10.781" y2="0.741617" gradientUnits="userSpaceOnUse">
|
|
29
|
-
<stop stop-color="#D96AB1"/>
|
|
30
|
-
<stop offset="0.137" stop-color="#D9538B"/>
|
|
31
|
-
<stop offset="0.495" stop-color="#D91A2A"/>
|
|
32
|
-
<stop offset="0.575" stop-color="#D31A29"/>
|
|
33
|
-
<stop offset="0.68" stop-color="#C21926"/>
|
|
34
|
-
<stop offset="0.8" stop-color="#A71821"/>
|
|
35
|
-
<stop offset="0.929" stop-color="#811619"/>
|
|
36
|
-
<stop offset="1" stop-color="#691515"/>
|
|
37
|
-
</linearGradient>
|
|
38
|
-
</defs>
|
|
39
|
-
</svg>
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g style="mix-blend-mode:luminosity">
|
|
3
|
-
<path d="M18.7499 10.4063C18.7509 10.2697 18.6802 10.1426 18.5635 10.0712H18.5615L18.5542 10.0671L12.4902 6.48399C12.464 6.46633 12.4369 6.45019 12.4088 6.43565C12.1747 6.31507 11.8966 6.31507 11.6624 6.43565C11.6344 6.4502 11.6072 6.46633 11.581 6.48399L5.51711 10.0671L5.50979 10.0712C5.32445 10.1862 5.26764 10.4295 5.38289 10.6145C5.41684 10.669 5.46362 10.7144 5.51914 10.7468L11.5831 14.3299C11.6094 14.3474 11.6365 14.3635 11.6645 14.3782C11.8986 14.4988 12.1767 14.4988 12.4109 14.3782C12.4388 14.3635 12.466 14.3474 12.4923 14.3299L18.5562 10.7468C18.6774 10.6763 18.7513 10.5463 18.7499 10.4063Z" fill="#0A2767"/>
|
|
4
|
-
<path d="M6.22385 8.01384H10.2033V11.655H6.22385V8.01384ZM17.9358 4.3125V2.64687C17.9454 2.23043 17.6152 1.88498 17.198 1.875H6.87135C6.45417 1.88498 6.12395 2.23043 6.1335 2.64687V4.3125L12.2381 5.93749L17.9358 4.3125Z" fill="#0364B8"/>
|
|
5
|
-
<path d="M6.13379 4.3125H10.2035V7.96874H6.13379V4.3125Z" fill="#0078D4"/>
|
|
6
|
-
<path d="M14.2734 4.3125H10.2036V7.96874L14.2734 11.625H17.9362V7.96874L14.2734 4.3125Z" fill="#28A8EA"/>
|
|
7
|
-
<path d="M10.2036 7.96875H14.2734V11.625H10.2036V7.96875Z" fill="#0078D4"/>
|
|
8
|
-
<path d="M10.2036 11.625H14.2734V15.2812H10.2036V11.625Z" fill="#0364B8"/>
|
|
9
|
-
<path d="M6.22412 11.655H10.2035V14.9652H6.22412V11.655Z" fill="#14447D"/>
|
|
10
|
-
<path d="M14.2734 11.625H17.9362V15.2812H14.2734V11.625Z" fill="#0078D4"/>
|
|
11
|
-
<path d="M18.5636 10.7243L18.5559 10.7284L12.492 14.1328C12.4655 14.149 12.4387 14.1645 12.4106 14.1783C12.3076 14.2272 12.1957 14.2549 12.0817 14.2595L11.7505 14.0661C11.7225 14.0521 11.6953 14.0365 11.6691 14.0194L5.52372 10.5184H5.52087L5.31982 10.4062V17.2979C5.32296 17.7577 5.69879 18.1279 6.15941 18.125H17.9235C17.9304 18.125 17.9365 18.1217 17.9438 18.1217C18.0411 18.1155 18.137 18.0956 18.2287 18.0624C18.2683 18.0457 18.3066 18.0258 18.3431 18.0031C18.3703 17.9877 18.4171 17.954 18.4171 17.954C18.6256 17.8 18.749 17.5568 18.75 17.2979V10.4062C18.7499 10.5381 18.6787 10.6596 18.5636 10.7243Z" fill="url(#paint0_linear_924_1489)"/>
|
|
12
|
-
<path opacity="0.5" d="M18.4242 10.3789V10.8014L12.0835 15.1592L5.51899 10.5211C5.51899 10.5188 5.51717 10.517 5.51492 10.517L4.9126 10.1554V9.85074L5.16085 9.84668L5.68585 10.1473L5.69805 10.1514L5.74282 10.1798C5.74282 10.1798 11.9126 13.6939 11.9289 13.702L12.1649 13.8401C12.1853 13.832 12.2056 13.8239 12.23 13.8157C12.2422 13.8076 18.355 10.3748 18.355 10.3748L18.4242 10.3789Z" fill="#0A2767"/>
|
|
13
|
-
<path d="M18.5636 10.7243L18.5559 10.7288L12.492 14.1332C12.4655 14.1494 12.4386 14.1649 12.4106 14.1787C12.1751 14.2935 11.8997 14.2935 11.6642 14.1787C11.6363 14.1649 11.6091 14.1497 11.5828 14.1332L5.51883 10.7288L5.51151 10.7243C5.39444 10.661 5.32104 10.5392 5.31982 10.4062V17.2979C5.32274 17.7576 5.69844 18.1279 6.15897 18.125C6.15898 18.125 6.15899 18.125 6.15901 18.125H17.9109C18.3714 18.1279 18.7471 17.7576 18.75 17.2979C18.75 17.2979 18.75 17.2979 18.75 17.2979V10.4062C18.7499 10.5381 18.6787 10.6596 18.5636 10.7243Z" fill="#1490DF"/>
|
|
14
|
-
<path opacity="0.1" d="M12.5804 14.0828L12.4897 14.1335C12.4634 14.1503 12.4362 14.1656 12.4083 14.1795C12.3083 14.2284 12.1995 14.2572 12.0884 14.2639L14.3955 16.9874L18.4201 17.9555C18.5304 17.8724 18.6181 17.763 18.6753 17.6374L12.5804 14.0828Z" fill="black"/>
|
|
15
|
-
<path opacity="0.05" d="M12.9915 13.8521L12.4897 14.1336C12.4634 14.1503 12.4362 14.1656 12.4083 14.1795C12.3083 14.2285 12.1995 14.2572 12.0884 14.264L13.1693 17.2389L18.4213 17.9544C18.6282 17.7993 18.75 17.5561 18.7502 17.2979V17.2089L12.9915 13.8521Z" fill="black"/>
|
|
16
|
-
<path d="M6.1704 18.125H17.9096C18.0903 18.1259 18.2664 18.0689 18.4122 17.9625L11.75 14.067C11.7221 14.0529 11.6949 14.0373 11.6686 14.0203L5.52331 10.5192H5.52046L5.31982 10.4062V17.2743C5.31937 17.7437 5.70018 18.1245 6.1704 18.125C6.17039 18.125 6.17039 18.125 6.1704 18.125Z" fill="#28A8EA"/>
|
|
17
|
-
<path d="M14.2734 4.3125H17.9362V7.96874H14.2734V4.3125Z" fill="#50D9FF"/>
|
|
18
|
-
<path opacity="0.1" d="M11.0175 5.86965V14.535C11.0168 14.8388 10.8317 15.1119 10.5495 15.2256C10.462 15.2631 10.3679 15.2824 10.2727 15.2825H5.31982V5.53125H6.13378V5.125H10.2727C10.6839 5.12656 11.0166 5.45924 11.0175 5.86965Z" fill="black"/>
|
|
19
|
-
<path opacity="0.2" d="M10.6105 6.27594V14.9412C10.6115 15.0394 10.5907 15.1365 10.5495 15.2256C10.4364 15.5037 10.1664 15.6861 9.86575 15.6875H5.31982V5.53128H9.86575C9.98384 5.5301 10.1002 5.5595 10.2035 5.6166C10.453 5.74206 10.6104 5.99709 10.6105 6.27594Z" fill="black"/>
|
|
20
|
-
<path opacity="0.2" d="M10.6105 6.27594V14.1287C10.6085 14.539 10.2767 14.8715 9.86576 14.875H5.31982V5.53128H9.86575C9.98384 5.5301 10.1002 5.5595 10.2035 5.6166C10.453 5.74206 10.6104 5.99709 10.6105 6.27594Z" fill="black"/>
|
|
21
|
-
<path opacity="0.2" d="M10.2035 6.2759V14.1287C10.2031 14.5396 9.87037 14.873 9.45878 14.875H5.31982V5.53125H9.45877C9.87032 5.53147 10.2038 5.86469 10.2035 6.2755C10.2035 6.27564 10.2035 6.27577 10.2035 6.2759Z" fill="black"/>
|
|
22
|
-
<path d="M1.99599 5.53125H9.45749C9.86949 5.53125 10.2035 5.86465 10.2035 6.2759V13.7241C10.2035 14.1353 9.86949 14.4687 9.45749 14.4687H1.99599C1.58398 14.4687 1.25 14.1353 1.25 13.7241V6.2759C1.25 5.86465 1.58399 5.53125 1.99599 5.53125Z" fill="url(#paint1_linear_924_1489)"/>
|
|
23
|
-
<path d="M3.58135 8.65453C3.76521 8.2635 4.06198 7.93627 4.43356 7.71488C4.84506 7.47971 5.31359 7.36247 5.78757 7.37606C6.22687 7.36655 6.66034 7.47771 7.04065 7.6974C7.39822 7.91026 7.68621 8.22215 7.86966 8.59521C8.06944 9.00629 8.16901 9.4587 8.16025 9.91552C8.16993 10.3929 8.06748 10.866 7.86112 11.2968C7.6733 11.6832 7.37618 12.0062 7.00647 12.2259C6.6115 12.4523 6.16193 12.5664 5.70659 12.5557C5.2579 12.5665 4.81487 12.4541 4.42583 12.2307C4.06516 12.0176 3.77356 11.7054 3.58583 11.3313C3.38486 10.9262 3.28411 10.4788 3.29199 10.0268C3.28362 9.55348 3.38254 9.08436 3.58135 8.65453ZM4.48972 10.8605C4.58775 11.1077 4.75398 11.3221 4.96913 11.4788C5.18828 11.6317 5.45069 11.7105 5.71797 11.7038C6.00261 11.7151 6.28318 11.6335 6.51727 11.4715C6.7297 11.3152 6.89157 11.1003 6.98285 10.8531C7.08489 10.5772 7.13525 10.2848 7.1314 9.99068C7.13455 9.69372 7.08721 9.39839 6.99139 9.11724C6.90677 8.86341 6.75011 8.63958 6.54047 8.47294C6.31224 8.30322 6.03243 8.21714 5.74808 8.22919C5.47501 8.22213 5.20673 8.30162 4.98175 8.45628C4.76296 8.61365 4.59357 8.82994 4.49338 9.07987C4.27113 9.65274 4.26997 10.2876 4.49012 10.8613L4.48972 10.8605Z" fill="white"/>
|
|
24
|
-
</g>
|
|
25
|
-
<defs>
|
|
26
|
-
<linearGradient id="paint0_linear_924_1489" x1="12.0349" y1="10.4063" x2="12.0349" y2="18.125" gradientUnits="userSpaceOnUse">
|
|
27
|
-
<stop stop-color="#35B8F1"/>
|
|
28
|
-
<stop offset="1" stop-color="#28A8EA"/>
|
|
29
|
-
</linearGradient>
|
|
30
|
-
<linearGradient id="paint1_linear_924_1489" x1="2.8054" y1="4.94939" x2="8.63243" y2="15.0596" gradientUnits="userSpaceOnUse">
|
|
31
|
-
<stop stop-color="#1784D9"/>
|
|
32
|
-
<stop offset="0.5" stop-color="#107AD5"/>
|
|
33
|
-
<stop offset="1" stop-color="#0A63C9"/>
|
|
34
|
-
</linearGradient>
|
|
35
|
-
</defs>
|
|
36
|
-
</svg>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g style="mix-blend-mode:luminosity">
|
|
3
|
-
<path d="M17.5 2.5H5.83333C5.37292 2.5 5 2.87292 5 3.33333V6.25125H18.3333V3.33333C18.3333 2.87292 17.9604 2.5 17.5 2.5Z" fill="url(#paint0_linear_924_1281)"/>
|
|
4
|
-
<path d="M5 13.7725V16.6666C5 17.127 5.37292 17.5 5.83333 17.5H17.5C17.9604 17.5 18.3333 17.127 18.3333 16.6666V13.7725H5Z" fill="url(#paint1_linear_924_1281)"/>
|
|
5
|
-
<path d="M5 6.25122H18.3333V10.0021H5V6.25122Z" fill="url(#paint2_linear_924_1281)"/>
|
|
6
|
-
<path d="M5 10.0022H18.3333V13.773H5V10.0022Z" fill="url(#paint3_linear_924_1281)"/>
|
|
7
|
-
<path opacity="0.05" d="M9.29958 5.41675H5V15.4167H9.29958C10.1467 15.4167 10.8333 14.7301 10.8333 13.883V6.9505C10.8333 6.10341 10.1467 5.41675 9.29958 5.41675Z" fill="black"/>
|
|
8
|
-
<path opacity="0.07" d="M9.25542 15H5V5.55542H9.25542C9.97375 5.55542 10.5558 6.1375 10.5558 6.85584V13.6996C10.5554 14.4179 9.97333 15 9.25542 15Z" fill="black"/>
|
|
9
|
-
<path opacity="0.09" d="M9.21083 14.5833H5V5.69458H9.21083C9.8 5.69458 10.2775 6.17208 10.2775 6.76125V13.5167C10.2779 14.1058 9.8 14.5833 9.21083 14.5833Z" fill="black"/>
|
|
10
|
-
<path d="M9.1665 14.1666H2.49984C2.03942 14.1666 1.6665 13.7937 1.6665 13.3333V6.66659C1.6665 6.20617 2.03942 5.83325 2.49984 5.83325H9.1665C9.62692 5.83325 9.99984 6.20617 9.99984 6.66659V13.3333C9.99984 13.7937 9.62692 14.1666 9.1665 14.1666Z" fill="url(#paint4_linear_924_1281)"/>
|
|
11
|
-
<path d="M7.66776 7.91675L7.02359 10.9434L6.30984 7.91675H5.39859L4.66234 11.0372L3.99859 7.91675H3.18359L4.16026 12.0834H5.14026L5.85401 8.87967L6.56818 12.0834H7.50609L8.48276 7.91675H7.66776Z" fill="white"/>
|
|
12
|
-
</g>
|
|
13
|
-
<defs>
|
|
14
|
-
<linearGradient id="paint0_linear_924_1281" x1="11.6667" y1="6.23583" x2="11.6667" y2="2.6875" gradientUnits="userSpaceOnUse">
|
|
15
|
-
<stop stop-color="#42A3F2"/>
|
|
16
|
-
<stop offset="1" stop-color="#42A4EB"/>
|
|
17
|
-
</linearGradient>
|
|
18
|
-
<linearGradient id="paint1_linear_924_1281" x1="11.6667" y1="17.5" x2="11.6667" y2="13.7725" gradientUnits="userSpaceOnUse">
|
|
19
|
-
<stop stop-color="#11408A"/>
|
|
20
|
-
<stop offset="1" stop-color="#103F8F"/>
|
|
21
|
-
</linearGradient>
|
|
22
|
-
<linearGradient id="paint2_linear_924_1281" x1="11.6667" y1="-6.44169" x2="11.6667" y2="-6.46711" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#3079D6"/>
|
|
24
|
-
<stop offset="1" stop-color="#297CD2"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
<linearGradient id="paint3_linear_924_1281" x1="5" y1="11.8876" x2="18.3333" y2="11.8876" gradientUnits="userSpaceOnUse">
|
|
27
|
-
<stop stop-color="#1D59B3"/>
|
|
28
|
-
<stop offset="1" stop-color="#195BBC"/>
|
|
29
|
-
</linearGradient>
|
|
30
|
-
<linearGradient id="paint4_linear_924_1281" x1="1.9765" y1="6.14325" x2="9.789" y2="13.9553" gradientUnits="userSpaceOnUse">
|
|
31
|
-
<stop stop-color="#256AC2"/>
|
|
32
|
-
<stop offset="1" stop-color="#1247AD"/>
|
|
33
|
-
</linearGradient>
|
|
34
|
-
</defs>
|
|
35
|
-
</svg>
|
|
File without changes
|
|
File without changes
|
/package/dist/icons/leap-web/{two-tone-journal-credit20.svg → two-tone-journal-credit-20.svg}
RENAMED
|
File without changes
|