@cashub/ui 0.48.30 → 0.49.0-beta.1
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/assets/images/bg-aside.png +0 -0
- package/assets/images/bg-main-vivid.png +0 -0
- package/assets/images/bg-main.png +0 -0
- package/button/IconButton.js +5 -7
- package/icon/assets/android.jsx +10 -0
- package/icon/assets/app-management.jsx +10 -0
- package/icon/assets/appStore.jsx +6 -0
- package/icon/assets/battery.jsx +15 -0
- package/icon/assets/bill.jsx +10 -0
- package/icon/assets/campaign.jsx +9 -0
- package/icon/assets/casstore.jsx +8 -0
- package/icon/assets/dashboard.jsx +6 -0
- package/icon/assets/enterprise.jsx +15 -0
- package/icon/assets/firmware.jsx +8 -0
- package/icon/assets/folder.jsx +8 -0
- package/icon/assets/group.jsx +18 -0
- package/icon/assets/heartbeats.jsx +9 -0
- package/icon/assets/invite-user.jsx +9 -0
- package/icon/assets/log.jsx +9 -0
- package/icon/assets/manufacturer.jsx +7 -0
- package/icon/assets/merchant.jsx +16 -0
- package/icon/assets/package-collection.jsx +8 -0
- package/icon/assets/report.jsx +11 -0
- package/icon/assets/resource.jsx +9 -0
- package/icon/assets/role.jsx +7 -0
- package/icon/assets/shield-lock.jsx +202 -0
- package/icon/assets/shield-no-signal.jsx +195 -0
- package/icon/assets/shield-unsafe.jsx +191 -0
- package/icon/assets/shield.jsx +186 -0
- package/icon/assets/statistics.jsx +9 -0
- package/icon/assets/tag.jsx +14 -0
- package/icon/assets/template-management.jsx +8 -0
- package/icon/assets/terminal.jsx +7 -0
- package/icon/assets/tradeye.jsx +7 -0
- package/icon/registry.js +70 -0
- package/iconbox/IconBox.js +46 -10
- package/iconbox/assets/bg-enterprise.png +0 -0
- package/iconbox/assets/bg-merchant.png +0 -0
- package/iconbox/assets/bg-terminal.png +0 -0
- package/iconbox/assets/bg-user.png +0 -0
- package/iconbox/bgImageRegistry.js +18 -0
- package/iconbox/subComponent/IconBoxImage.js +57 -14
- package/layout/Aside.js +17 -7
- package/layout/Container.js +20 -3
- package/layout/Header.jsx +5 -12
- package/layout/Layout.jsx +0 -15
- package/layout/Logo.jsx +5 -5
- package/layout/MenuIcon.jsx +23 -5
- package/layout/Sidebar.jsx +38 -48
- package/layout/assets/burger-modern.jsx +9 -0
- package/layout/bgMainRegistry.js +14 -0
- package/package.json +2 -2
- package/styles/GlobalStyle.js +101 -79
- package/styles/theme/dark.theme.js +4 -1
- package/styles/theme/ember.theme.js +100 -0
- package/styles/theme/light.theme.js +1 -0
- package/styles/theme/midnight.theme.js +99 -0
- package/styles/theme/white.theme.js +6 -1
- package/styles/themes.js +5 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/button/IconButton.js
CHANGED
|
@@ -20,9 +20,12 @@ const IconButton = _styledComponents.default.div.attrs(() => ({
|
|
|
20
20
|
border-radius: var(--border-radius-l);
|
|
21
21
|
color: ${_ref => {
|
|
22
22
|
let {
|
|
23
|
-
disabled
|
|
23
|
+
disabled,
|
|
24
|
+
onHeader
|
|
24
25
|
} = _ref;
|
|
25
|
-
|
|
26
|
+
if (disabled) return 'var(--color-grey)';
|
|
27
|
+
if (onHeader) return 'var(--color-icon-header)';
|
|
28
|
+
return 'var(--font-on-background)';
|
|
26
29
|
}};
|
|
27
30
|
cursor: ${_ref2 => {
|
|
28
31
|
let {
|
|
@@ -31,7 +34,6 @@ const IconButton = _styledComponents.default.div.attrs(() => ({
|
|
|
31
34
|
return disabled ? 'no-drop' : 'pointer';
|
|
32
35
|
}};
|
|
33
36
|
margin: auto;
|
|
34
|
-
|
|
35
37
|
${_ref3 => {
|
|
36
38
|
let {
|
|
37
39
|
size
|
|
@@ -41,7 +43,6 @@ const IconButton = _styledComponents.default.div.attrs(() => ({
|
|
|
41
43
|
height: 32px;
|
|
42
44
|
`;
|
|
43
45
|
}}
|
|
44
|
-
|
|
45
46
|
&:hover {
|
|
46
47
|
${_ref4 => {
|
|
47
48
|
let {
|
|
@@ -50,17 +51,14 @@ const IconButton = _styledComponents.default.div.attrs(() => ({
|
|
|
50
51
|
return !disabled && 'background: var(--color-hover)';
|
|
51
52
|
}}
|
|
52
53
|
}
|
|
53
|
-
|
|
54
54
|
> svg {
|
|
55
55
|
font-size: 1.5rem;
|
|
56
|
-
|
|
57
56
|
${_ref5 => {
|
|
58
57
|
let {
|
|
59
58
|
size
|
|
60
59
|
} = _ref5;
|
|
61
60
|
return size === 'small' && 'font-size: 1rem;';
|
|
62
61
|
}}
|
|
63
|
-
|
|
64
62
|
${_ref6 => {
|
|
65
63
|
let {
|
|
66
64
|
size
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
const AndroidIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M20.3793 17.6569H3.62069C3.45607 17.6569 3.2982 17.5915 3.1818 17.4751C3.06539 17.3587 3 17.2008 3 17.0362C3 11.059 6.70241 6.88171 12 6.88171C17.2976 6.88171 21 11.059 21 17.0362C21 17.2008 20.9346 17.3587 20.8182 17.4751C20.7018 17.5915 20.5439 17.6569 20.3793 17.6569ZM4.26 16.4155H19.7586C19.5103 11.4314 16.4566 8.12309 12 8.12309C7.54345 8.12309 4.48966 11.4314 4.2569 16.4155H4.26Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
4
|
+
<path d="M17.1145 9.85791C16.9547 9.85728 16.8013 9.79502 16.6862 9.68412C16.5664 9.57198 16.4959 9.41695 16.49 9.25294C16.4842 9.08893 16.5436 8.92929 16.6552 8.80895L19.1597 6.19584C19.2737 6.07526 19.4309 6.0049 19.5968 6.00025C19.7626 5.99559 19.9236 6.05702 20.0441 6.17102C20.1647 6.28501 20.2351 6.44224 20.2397 6.60811C20.2444 6.77399 20.183 6.93492 20.069 7.0555L17.5645 9.65929C17.507 9.72131 17.4374 9.77093 17.36 9.80508C17.2826 9.83924 17.1991 9.85721 17.1145 9.85791Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
5
|
+
<path d="M6.88553 9.8579C6.80094 9.8572 6.71739 9.83923 6.64001 9.80507C6.56263 9.77092 6.49304 9.7213 6.43552 9.65928L3.93104 7.05549C3.81704 6.93655 3.75496 6.7772 3.75846 6.61249C3.76195 6.44779 3.83073 6.29121 3.94966 6.17721C4.0686 6.06322 4.22795 6.00113 4.39266 6.00463C4.55737 6.00812 4.71394 6.0769 4.82794 6.19583L7.34484 8.80894C7.458 8.92767 7.51956 9.08638 7.51607 9.25036C7.51259 9.41435 7.44433 9.57029 7.32621 9.68411C7.20807 9.79802 7.04962 9.86051 6.88553 9.8579Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
6
|
+
<path d="M9.04864 13.3493C8.88402 13.3493 8.72615 13.2839 8.60974 13.1675C8.49334 13.0511 8.42795 12.8932 8.42795 12.7286V12.2693C8.42795 12.1047 8.49334 11.9468 8.60974 11.8304C8.72615 11.714 8.88402 11.6486 9.04864 11.6486C9.21325 11.6486 9.37113 11.714 9.48753 11.8304C9.60393 11.9468 9.66933 12.1047 9.66933 12.2693V12.7286C9.66933 12.8932 9.60393 13.0511 9.48753 13.1675C9.37113 13.2839 9.21325 13.3493 9.04864 13.3493Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
7
|
+
<path d="M14.9514 13.3493C14.7868 13.3493 14.6289 13.2839 14.5125 13.1675C14.3961 13.0511 14.3307 12.8932 14.3307 12.7286V12.2693C14.3307 12.1047 14.3961 11.9468 14.5125 11.8304C14.6289 11.714 14.7868 11.6486 14.9514 11.6486C15.116 11.6486 15.2739 11.714 15.3903 11.8304C15.5067 11.9468 15.5721 12.1047 15.5721 12.2693V12.7286C15.5721 12.8932 15.5067 13.0511 15.3903 13.1675C15.2739 13.2839 15.116 13.3493 14.9514 13.3493Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
8
|
+
</svg>
|
|
9
|
+
);
|
|
10
|
+
export default AndroidIcon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
const AppManagementIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9.375 18H5C3.89543 18 3 17.1046 3 16V6C3 4.89543 3.89543 4 5 4H18C19.1046 4 20 4.89543 20 6V8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M3 8H20" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M4.0442 13H9.2652" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<path d="M10.7494 16.5954C10.3643 15.9588 10.3643 15.1612 10.7494 14.5246L11.445 13.375L12.2608 12.1225C12.6242 11.5645 13.2415 11.224 13.9073 11.2143L15.5615 11.19L17.2156 11.2143C17.8814 11.224 18.4987 11.5645 18.8621 12.1225L19.6779 13.375L20.3735 14.5246C20.7587 15.1612 20.7587 15.9588 20.3735 16.5954L19.6779 17.745L18.8621 18.9975C18.4987 19.5555 17.8814 19.896 17.2156 19.9057L15.5615 19.93L13.9073 19.9057C13.2415 19.896 12.6242 19.5555 12.2608 18.9975L11.445 17.745L10.7494 16.5954Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
<ellipse cx="17.2707" cy="16" rx="1.08771" ry="1" fill="currentColor"/>
|
|
8
|
+
</svg>
|
|
9
|
+
);
|
|
10
|
+
export default AppManagementIcon;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const AppStoreIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M16.3529 14.2308V20M19 16.5385H13.2308M6.30769 10.7692H7.46154C8.54939 10.7692 9.09332 10.7692 9.43128 10.4313C9.76923 10.0933 9.76923 9.54939 9.76923 8.46154V7.30769C9.76923 6.21984 9.76923 5.67591 9.43128 5.33795C9.09332 5 8.54939 5 7.46154 5H6.30769C5.21984 5 4.67591 5 4.33795 5.33795C4 5.67591 4 6.21984 4 7.30769V8.46154C4 9.54939 4 10.0933 4.33795 10.4313C4.67591 10.7692 5.21984 10.7692 6.30769 10.7692ZM6.30769 20H7.46154C8.54939 20 9.09332 20 9.43128 19.662C9.76923 19.3241 9.76923 18.7802 9.76923 17.6923V16.5385C9.76923 15.4506 9.76923 14.9067 9.43128 14.5687C9.09332 14.2308 8.54939 14.2308 7.46154 14.2308H6.30769C5.21984 14.2308 4.67591 14.2308 4.33795 14.5687C4 14.9067 4 15.4506 4 16.5385V17.6923C4 18.7802 4 19.3241 4.33795 19.662C4.67591 20 5.21984 20 6.30769 20ZM15.5385 10.7692H16.6923C17.7802 10.7692 18.3241 10.7692 18.662 10.4313C19 10.0933 19 9.54939 19 8.46154V7.30769C19 6.21984 19 5.67591 18.662 5.33795C18.3241 5 17.7802 5 16.6923 5H15.5385C14.4506 5 13.9067 5 13.5687 5.33795C13.2308 5.67591 13.2308 6.21984 13.2308 7.30769V8.46154C13.2308 9.54939 13.2308 10.0933 13.5687 10.4313C13.9067 10.7692 14.4506 10.7692 15.5385 10.7692Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
</svg>
|
|
5
|
+
);
|
|
6
|
+
export default AppStoreIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const TradeyeIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g clip-path="url(#clip0_50_590)">
|
|
4
|
+
<rect x="8" y="7" width="8" height="13" rx="1" stroke="currentColor" stroke-width="1.5"/>
|
|
5
|
+
<rect x="10" y="16" width="4" height="2" rx="0.8" fill="currentColor"/>
|
|
6
|
+
<path d="M13 3C13.9428 3 14.4141 3.00008 14.707 3.29297C14.9999 3.58586 15 4.05719 15 5H9C9 4.05719 9.00008 3.58586 9.29297 3.29297C9.58586 3.00008 10.0572 3 11 3H13Z" fill="currentColor"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_50_590">
|
|
10
|
+
<rect width="24" height="24" fill="currentColor"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
export default TradeyeIcon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
const BillIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect x="3" y="6" width="18" height="12" rx="2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M6 9H8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M16 15H18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<circle cx="12" cy="12" r="3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
);
|
|
9
|
+
|
|
10
|
+
export default BillIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const CampaignIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M4.625 15H9V19.375M9 15L4.625 19.375" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M12.5 19.375H16.375C18.5841 19.375 20.375 17.5841 20.375 15.375V7.625C20.375 5.41586 18.5841 3.625 16.375 3.625H8.625C6.41586 3.625 4.625 5.41586 4.625 7.625V11.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M9.4375 8.4375L12.1716 12.3866C12.8251 13.3306 14.1375 13.5317 15.0438 12.8269L15.9189 12.1463C16.715 11.5271 17.8477 11.5976 18.5609 12.3108L20.375 14.1248" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<circle cx="16.4375" cy="7.5625" r="1.3125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
);
|
|
9
|
+
export default CampaignIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const casstore = () => (
|
|
2
|
+
<svg viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M4.6875 9.0236C4.6875 8.42248 4.6875 8.12191 4.77332 7.83848C4.85913 7.55505 5.02585 7.30497 5.3593 6.8048L5.58337 6.4687C6.16465 5.59677 6.4553 5.1608 6.89748 4.92415C7.33967 4.6875 7.86364 4.6875 8.91157 4.6875H16.0884C17.1364 4.6875 17.6603 4.6875 18.1025 4.92415C18.5447 5.1608 18.8353 5.59677 19.4166 6.4687L19.6407 6.8048C19.9741 7.30497 20.1409 7.55505 20.2267 7.83848C20.3125 8.12191 20.3125 8.42248 20.3125 9.0236V16.3125C20.3125 18.1981 20.3125 19.1409 19.7267 19.7267C19.1409 20.3125 18.1981 20.3125 16.3125 20.3125H8.6875C6.80188 20.3125 5.85907 20.3125 5.27329 19.7267C4.6875 19.1409 4.6875 18.1981 4.6875 16.3125V9.0236Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M4.6875 9.89584H20.3125" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M9.89575 10.0458C9.89575 9.963 9.96291 9.89584 10.0458 9.89584H14.9541C15.0369 9.89584 15.1041 9.963 15.1041 10.0458V14.3094C15.1041 14.6592 14.7225 14.8752 14.4226 14.6953L12.6285 13.6189C12.5494 13.5713 12.4505 13.5713 12.3713 13.6189L10.5773 14.6953C10.2773 14.8752 9.89575 14.6592 9.89575 14.3094V10.0458Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
);
|
|
8
|
+
export default casstore;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
const DashboardIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M7.53743 5.68697L8.02022 6.26091V6.26091L7.53743 5.68697ZM16.4626 5.68697L16.9454 5.11302V5.11302L16.4626 5.68697ZM17.6054 6.64832L18.0882 6.07438L17.6054 6.64832ZM6.39457 6.64832L5.91178 6.07438V6.07438L6.39457 6.64832ZM20 11.7577H19.25V16.5137H20H20.75V11.7577H20ZM15.4286 21V20.25H8.57143V21V21.75H15.4286V21ZM4 16.5137H4.75V11.7577H4H3.25V16.5137H4ZM6.39457 6.64832L6.87737 7.22226L8.02022 6.26091L7.53743 5.68697L7.05464 5.11302L5.91178 6.07438L6.39457 6.64832ZM16.4626 5.68697L15.9798 6.26091L17.1226 7.22226L17.6054 6.64832L18.0882 6.07438L16.9454 5.11302L16.4626 5.68697ZM7.53743 5.68697L8.02022 6.26091C9.09969 5.35288 9.85707 4.71757 10.4996 4.3011C11.1242 3.89622 11.5648 3.75 12 3.75V3V2.25C11.1669 2.25 10.4409 2.55161 9.68373 3.04238C8.94443 3.52157 8.10468 4.22974 7.05464 5.11302L7.53743 5.68697ZM16.4626 5.68697L16.9454 5.11302C15.8953 4.22974 15.0556 3.52157 14.3163 3.04238C13.5591 2.55161 12.8331 2.25 12 2.25V3V3.75C12.4352 3.75 12.8758 3.89622 13.5004 4.3011C14.1429 4.71757 14.9003 5.35288 15.9798 6.26091L16.4626 5.68697ZM8.57143 21V20.25C7.47311 20.25 6.72344 20.2485 6.16149 20.1743C5.61968 20.1028 5.36644 19.9762 5.19479 19.8077L4.66947 20.343L4.14415 20.8783C4.64197 21.3668 5.26221 21.5687 5.96527 21.6614C6.64818 21.7515 7.51475 21.75 8.57143 21.75V21ZM4 16.5137H3.25C3.25 17.5495 3.24835 18.4033 3.34062 19.0768C3.43606 19.7734 3.64436 20.3878 4.14415 20.8783L4.66947 20.343L5.19479 19.8077C5.02511 19.6412 4.89868 19.3983 4.82674 18.8732C4.75165 18.3251 4.75 17.5927 4.75 16.5137H4ZM20 16.5137H19.25C19.25 17.5927 19.2483 18.3251 19.1733 18.8732C19.1013 19.3983 18.9749 19.6412 18.8052 19.8077L19.3305 20.343L19.8559 20.8783C20.3556 20.3878 20.5639 19.7734 20.6594 19.0768C20.7517 18.4033 20.75 17.5495 20.75 16.5137H20ZM15.4286 21V21.75C16.4853 21.75 17.3518 21.7515 18.0347 21.6614C18.7378 21.5687 19.358 21.3668 19.8559 20.8783L19.3305 20.343L18.8052 19.8077C18.6336 19.9762 18.3803 20.1028 17.8385 20.1743C17.2766 20.2485 16.5269 20.25 15.4286 20.25V21ZM20 11.7577H20.75C20.75 10.3045 20.7665 9.34173 20.3654 8.48591L19.6863 8.80419L19.0072 9.12246C19.2335 9.60522 19.25 10.1653 19.25 11.7577H20ZM17.6054 6.64832L17.1226 7.22226C18.3542 8.25828 18.78 8.63772 19.0072 9.12246L19.6863 8.80419L20.3654 8.48591C19.9653 7.63207 19.2129 7.02046 18.0882 6.07438L17.6054 6.64832ZM4 11.7577H4.75C4.75 10.1653 4.76654 9.60522 4.99279 9.12246L4.31367 8.80419L3.63455 8.48591C3.23346 9.34173 3.25 10.3045 3.25 11.7577H4ZM6.39457 6.64832L5.91178 6.07438C4.78708 7.02046 4.03472 7.63207 3.63455 8.48591L4.31367 8.80419L4.99279 9.12246C5.21997 8.63772 5.64575 8.25828 6.87737 7.22226L6.39457 6.64832ZM10.3354 14.2705V15.0205H13.6646V14.2705V13.5205H10.3354V14.2705ZM14.8571 15.4409H14.1071V21H14.8571H15.6071V15.4409H14.8571ZM9.14286 15.4409H8.39286V21H9.14286H9.89286V15.4409H9.14286ZM13.6646 14.2705V15.0205C13.9224 15.0205 14.1071 15.2219 14.1071 15.4409H14.8571H15.6071C15.6071 14.3671 14.7241 13.5205 13.6646 13.5205V14.2705ZM10.3354 14.2705V13.5205C9.27591 13.5205 8.39286 14.3671 8.39286 15.4409H9.14286H9.89286C9.89286 15.2219 10.0776 15.0205 10.3354 15.0205V14.2705Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
5
|
+
);
|
|
6
|
+
export default DashboardIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const EnterpriseIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M13.7251 3.78484L13.7395 20.1898H4V3.77827C4 3.34419 4.36133 3 4.77016 3H12.9879C13.3968 3 13.7251 3.35077 13.7251 3.78484Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
4
|
+
<path d="M20.1671 8.23958V20.1876H13.7251V7.45035H19.4507C19.8595 7.45035 20.1671 7.8055 20.1671 8.23958Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
5
|
+
<path d="M6.80809 6.91689L6.80809 5.98151" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
6
|
+
<path d="M10.332 6.91689L10.332 5.98151" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
7
|
+
<path d="M6.80809 11.5938L6.80809 10.6584" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
8
|
+
<path d="M10.332 11.5938L10.332 10.6584" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
9
|
+
<path d="M6.80809 16.2707L6.80809 15.3354" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
10
|
+
<path d="M10.332 16.2707L10.332 15.3354" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
11
|
+
<path d="M16.9392 16.2707L16.9392 15.3354" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
12
|
+
<path d="M16.9392 11.5938L16.9392 10.6584" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
export default EnterpriseIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const FirmwareIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect x="3" y="5" width="17" height="14" rx="2" stroke="currentColor" stroke-width="1.5"/>
|
|
4
|
+
<path d="M7 10L9 12L7 14" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M12 14H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
);
|
|
8
|
+
export default FirmwareIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const TradeyeIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M16 20.375V19.0625C16 17.2376 16 16.3252 15.4485 15.7459C15.4259 15.7222 15.4028 15.6991 15.3791 15.6765C14.7998 15.125 13.8874 15.125 12.0625 15.125C10.2376 15.125 9.32518 15.125 8.74592 15.6765C8.72222 15.6991 8.69907 15.7222 8.67651 15.7459C8.125 16.3252 8.125 17.2376 8.125 19.0625V20.375" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M8.125 9H12.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M4.625 10.625C4.625 7.79657 4.625 6.38236 5.50368 5.50368C6.38236 4.625 7.79657 4.625 10.625 4.625H16.0466C16.4553 4.625 16.6597 4.625 16.8435 4.70112C17.0272 4.77724 17.1718 4.92176 17.4608 5.21079L19.7892 7.53921C20.0782 7.82824 20.2228 7.97276 20.2989 8.15653C20.375 8.3403 20.375 8.54468 20.375 8.95343V14.375C20.375 17.2034 20.375 18.6176 19.4963 19.4963C18.6176 20.375 17.2034 20.375 14.375 20.375H10.625C7.79657 20.375 6.38236 20.375 5.50368 19.4963C4.625 18.6176 4.625 17.2034 4.625 14.375V10.625Z" stroke="currentColor" stroke-width="1.5"/>
|
|
6
|
+
</svg>
|
|
7
|
+
);
|
|
8
|
+
export default TradeyeIcon;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const GroupIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g clip-path="url(#clip0_8_4496)">
|
|
4
|
+
<circle cx="12" cy="8" r="4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M16.2679 9C16.5332 8.54063 16.97 8.20543 17.4824 8.06815C17.9947 7.93086 18.5406 8.00273 19 8.26795C19.4594 8.53317 19.7946 8.97 19.9319 9.48236C20.0691 9.99472 19.9973 10.5406 19.7321 11C19.4668 11.4594 19.03 11.7946 18.5176 11.9319C18.0053 12.0691 17.4594 11.9973 17 11.7321C16.5406 11.4668 16.2054 11.03 16.0681 10.5176C15.9309 10.0053 16.0027 9.45937 16.2679 9L16.2679 9Z" stroke="currentColor" stroke-width="1.5"/>
|
|
6
|
+
<path d="M4.26795 9C4.53317 8.54063 4.97 8.20543 5.48236 8.06815C5.99472 7.93086 6.54063 8.00273 7 8.26795C7.45937 8.53317 7.79457 8.97 7.93185 9.48236C8.06914 9.99472 7.99727 10.5406 7.73205 11C7.46683 11.4594 7.03 11.7946 6.51764 11.9319C6.00528 12.0691 5.45937 11.9973 5 11.7321C4.54063 11.4668 4.20543 11.03 4.06815 10.5176C3.93086 10.0053 4.00273 9.45937 4.26795 9L4.26795 9Z" stroke="currentColor" stroke-width="1.5"/>
|
|
7
|
+
<path d="M16.9996 14V13.25H16.9995L16.9996 14ZM20.7203 16.9043L21.4272 16.6537L21.4271 16.6536L20.7203 16.9043ZM16.8814 18L16.1462 18.1481L16.2674 18.75H16.8814V18ZM14.7828 14.7129L14.3292 14.1156L13.4623 14.774L14.3862 15.3495L14.7828 14.7129ZM16.9996 14V14.75C18.8046 14.75 19.6272 16.066 20.0134 17.155L20.7203 16.9043L21.4271 16.6536C20.9733 15.3741 19.7847 13.25 16.9996 13.25V14ZM20.7203 16.9043L20.0134 17.1549C20.0174 17.1662 20.0183 17.1731 20.0185 17.1758C20.0187 17.1785 20.0185 17.1797 20.0185 17.1799C20.0184 17.1803 20.0182 17.1814 20.0171 17.1836C20.0161 17.1859 20.014 17.1897 20.01 17.1947C19.9932 17.2155 19.9471 17.25 19.8668 17.25V18V18.75C20.8759 18.75 21.8364 17.8081 21.4272 16.6537L20.7203 16.9043ZM19.8668 18V17.25H16.8814V18V18.75H19.8668V18ZM16.8814 18L17.6166 17.8519C17.4042 16.7971 16.8192 15.0978 15.1793 14.0763L14.7828 14.7129L14.3862 15.3495C15.5102 16.0496 15.9667 17.2568 16.1462 18.1481L16.8814 18ZM14.7828 14.7129L15.2364 15.3102C15.6652 14.9845 16.2283 14.7501 16.9996 14.75L16.9996 14L16.9995 13.25C15.8914 13.2501 15.0115 13.5974 14.3292 14.1156L14.7828 14.7129Z" fill="currentColor"/>
|
|
8
|
+
<path d="M7.00026 14L7.0003 13.25H7.00026V14ZM9.21608 14.7129L9.61277 15.3494L10.5366 14.7736L9.66954 14.1155L9.21608 14.7129ZM7.11842 18V18.75H7.73243L7.85366 18.1481L7.11842 18ZM3.27956 16.9043L2.5727 16.6536L2.57264 16.6538L3.27956 16.9043ZM7.00026 14L7.00022 14.75C7.77084 14.75 8.33353 14.9846 8.76262 15.3103L9.21608 14.7129L9.66954 14.1155C8.98767 13.5979 8.10841 13.2501 7.0003 13.25L7.00026 14ZM9.21608 14.7129L8.81939 14.0764C7.18011 15.098 6.59554 16.7975 6.38319 17.8519L7.11842 18L7.85366 18.1481C8.03317 17.2568 8.48936 16.0495 9.61277 15.3494L9.21608 14.7129ZM7.11842 18V17.25H4.13307V18V18.75H7.11842V18ZM4.13307 18V17.25C4.05279 17.25 4.00668 17.2156 3.9899 17.1947C3.98591 17.1897 3.98378 17.1859 3.98271 17.1836C3.98169 17.1814 3.98145 17.1802 3.98139 17.1799C3.98134 17.1796 3.98112 17.1785 3.98135 17.1757C3.98157 17.173 3.98245 17.1662 3.98647 17.1548L3.27956 16.9043L2.57264 16.6538C2.16355 17.808 3.12386 18.75 4.13307 18.75V18ZM3.27956 16.9043L3.98641 17.155C4.37267 16.066 5.19524 14.75 7.00026 14.75V14V13.25C4.21518 13.25 3.02654 15.3741 2.5727 16.6536L3.27956 16.9043Z" fill="currentColor"/>
|
|
9
|
+
<path d="M12 14C15.5715 14 16.5919 16.5512 16.8834 18.0089C16.9917 18.5504 16.5523 19 16 19H8C7.44772 19 7.00829 18.5504 7.11659 18.0089C7.4081 16.5512 8.42846 14 12 14Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_8_4496">
|
|
13
|
+
<rect width="24" height="24" fill="currentColor"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default GroupIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const HeartbeatsIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M15.5 10.5L12.5 13.5L10.5 11.5L7.5 14.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M14 5H7.2C6.07989 5 5.51984 5 5.09202 5.21799C4.71569 5.40973 4.40973 5.71569 4.21799 6.09202C4 6.51984 4 7.07989 4 8.2V16.8C4 17.9201 4 18.4802 4.21799 18.908C4.40973 19.2843 4.71569 19.5903 5.09202 19.782C5.51984 20 6.07989 20 7.2 20H15.8C16.9201 20 17.4802 20 17.908 19.782C18.2843 19.5903 18.5903 19.2843 18.782 18.908C19 18.4802 19 17.9201 19 16.8V10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<circle cx="18.5" cy="5.5" r="0.75" fill="currentColor" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
);
|
|
8
|
+
|
|
9
|
+
export default HeartbeatsIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const InviteUserIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<circle cx="12" cy="7" r="4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M5.33788 17.3206C5.99897 14.5269 8.77173 13 11.6426 13H12.3574C15.2283 13 18.001 14.5269 18.6621 17.3206C18.79 17.8611 18.8917 18.4268 18.9489 19.0016C19.0036 19.5512 18.5523 20 18 20H6C5.44772 20 4.99642 19.5512 5.0511 19.0016C5.1083 18.4268 5.20997 17.8611 5.33788 17.3206Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M19.5 3V6" stroke="currentColor" stroke-linecap="round"/>
|
|
6
|
+
<path d="M21 4.5L18 4.5" stroke="currentColor" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
);
|
|
9
|
+
export default InviteUserIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const LogIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M3 5H21" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M5 5H19V16.8C19 17.9201 19 18.4802 18.782 18.908C18.5903 19.2843 18.2843 19.5903 17.908 19.782C17.4802 20 16.9201 20 15.8 20H8.2C7.07989 20 6.51984 20 6.09202 19.782C5.71569 19.5903 5.40973 19.2843 5.21799 18.908C5 18.4802 5 17.9201 5 16.8V5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M12 16V10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<path d="M9 13L11.8939 10.1061C11.9525 10.0475 12.0475 10.0475 12.1061 10.1061L15 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
);
|
|
9
|
+
export default LogIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const ManufacturerIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M4.08168 13.9445C3.55298 12.9941 3.28862 12.5188 3.28862 12C3.28862 11.4812 3.55298 11.0059 4.08169 10.0555L5.18784 8.067L6.35685 6.11479C6.9156 5.18169 7.19498 4.71515 7.64431 4.45572C8.09364 4.1963 8.63737 4.18763 9.72483 4.17029L12 4.134L14.2752 4.17029C15.3626 4.18763 15.9064 4.1963 16.3557 4.45572C16.805 4.71514 17.0844 5.18169 17.6431 6.11479L18.8122 8.067L19.9183 10.0555C20.447 11.0059 20.7114 11.4812 20.7114 12C20.7114 12.5188 20.447 12.9941 19.9183 13.9445L18.8122 15.933L17.6431 17.8852C17.0844 18.8183 16.805 19.2849 16.3557 19.5443C15.9064 19.8037 15.3626 19.8124 14.2752 19.8297L12 19.866L9.72483 19.8297C8.63737 19.8124 8.09364 19.8037 7.64431 19.5443C7.19498 19.2849 6.9156 18.8183 6.35685 17.8852L5.18784 15.933L4.08168 13.9445Z" stroke="currentColor" stroke-width="1.5"/>
|
|
4
|
+
<circle cx="12" cy="12" r="3" stroke="currentColor" stroke-width="1.5"/>
|
|
5
|
+
</svg>
|
|
6
|
+
);
|
|
7
|
+
export default ManufacturerIcon;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
const MerchantIconSvg = () => (
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
viewBox="0 0 24 24"
|
|
5
|
+
fill="none"
|
|
6
|
+
stroke="currentColor"
|
|
7
|
+
strokeWidth="6"
|
|
8
|
+
strokeLinecap="round"
|
|
9
|
+
strokeLinejoin="round"
|
|
10
|
+
>
|
|
11
|
+
<path d="M5 11V17C5 18.8856 5 19.8284 5.58579 20.4142C6.17157 21 7.11438 21 9 21H15C16.8856 21 17.8284 21 18.4142 20.4142C19 19.8284 19 18.8856 19 17V11" stroke="currentColor" stroke-width="1.5"/>
|
|
12
|
+
<path d="M4.62127 4.51493C4.80316 3.78737 4.8941 3.42359 5.16536 3.21179C5.43663 3 5.8116 3 6.56155 3H17.4384C18.1884 3 18.5634 3 18.8346 3.21179C19.1059 3.42359 19.1968 3.78737 19.3787 4.51493L20.5823 9.32938C20.6792 9.71675 20.7276 9.91044 20.7169 10.0678C20.6892 10.4757 20.416 10.8257 20.0269 10.9515C19.8769 11 19.6726 11 19.2641 11C18.7309 11 18.4644 11 18.2405 10.9478C17.6133 10.8017 17.0948 10.3625 16.8475 9.76781C16.7593 9.55555 16.7164 9.29856 16.6308 8.78457C16.6068 8.64076 16.5948 8.56886 16.5812 8.54994C16.5413 8.49439 16.4587 8.49439 16.4188 8.54994C16.4052 8.56886 16.3932 8.64076 16.3692 8.78457L16.2877 9.27381C16.2791 9.32568 16.2747 9.35161 16.2704 9.37433C16.0939 10.3005 15.2946 10.9777 14.352 10.9995C14.3289 11 14.3026 11 14.25 11C14.1974 11 14.1711 11 14.148 10.9995C13.2054 10.9777 12.4061 10.3005 12.2296 9.37433C12.2253 9.35161 12.2209 9.32568 12.2123 9.27381L12.1308 8.78457C12.1068 8.64076 12.0948 8.56886 12.0812 8.54994C12.0413 8.49439 11.9587 8.49439 11.9188 8.54994C11.9052 8.56886 11.8932 8.64076 11.8692 8.78457L11.7877 9.27381C11.7791 9.32568 11.7747 9.35161 11.7704 9.37433C11.5939 10.3005 10.7946 10.9777 9.85199 10.9995C9.82887 11 9.80258 11 9.75 11C9.69742 11 9.67113 11 9.64801 10.9995C8.70541 10.9777 7.90606 10.3005 7.7296 9.37433C7.72527 9.35161 7.72095 9.32568 7.7123 9.27381L7.63076 8.78457C7.60679 8.64076 7.59481 8.56886 7.58122 8.54994C7.54132 8.49439 7.45868 8.49439 7.41878 8.54994C7.40519 8.56886 7.39321 8.64076 7.36924 8.78457C7.28357 9.29856 7.24074 9.55555 7.15249 9.76781C6.90524 10.3625 6.38675 10.8017 5.75951 10.9478C5.53563 11 5.26905 11 4.73591 11C4.32737 11 4.12309 11 3.97306 10.9515C3.58403 10.8257 3.31078 10.4757 3.28307 10.0678C3.27239 9.91044 3.32081 9.71675 3.41765 9.32938L4.62127 4.51493Z" stroke="currentColor" stroke-width="1.5"/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
export default MerchantIconSvg;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const PackageCollectionIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M12 21V13M20 8L13.06 3.6625C12.5445 3.34033 12.2868 3.17925 12 3.17925C11.7132 3.17925 11.4555 3.34033 10.94 3.6625L4 8V14.8915C4 15.4334 4 15.7043 4.12536 15.9305C4.25072 16.1567 4.48048 16.3003 4.94 16.5875L12 21L16 18.5L19.06 16.5875C19.5195 16.3003 19.7493 16.1567 19.8746 15.9305C20 15.7043 20 15.4334 20 14.8915V8ZM12 13L4 8M12 13L20 8" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M15.25 14.5C15.25 14.9142 15.5858 15.25 16 15.25C16.4142 15.25 16.75 14.9142 16.75 14.5H16H15.25ZM15.8746 10.5695L16.5306 10.2059L15.8746 10.5695ZM8 5.5L7.6025 6.136L14.6625 10.5485L15.06 9.9125L15.4575 9.2765L8.3975 4.864L8 5.5ZM16 14.5H16.75V11.6085H16H15.25V14.5H16ZM15.06 9.9125L14.6625 10.5485C14.9042 10.6996 15.0408 10.7859 15.1364 10.8591C15.1791 10.8919 15.2003 10.9122 15.2103 10.923C15.215 10.9281 15.2172 10.9309 15.2178 10.9318C15.2184 10.9326 15.2185 10.9329 15.2187 10.9331L15.8746 10.5695L16.5306 10.2059C16.4007 9.97148 16.2271 9.80525 16.0489 9.66863C15.8834 9.54173 15.6753 9.41262 15.4575 9.2765L15.06 9.9125ZM16 11.6085H16.75C16.75 11.3517 16.7508 11.1068 16.7309 10.8991C16.7095 10.6756 16.6606 10.4403 16.5306 10.2059L15.8746 10.5695L15.2187 10.9331C15.2188 10.9333 15.2189 10.9335 15.2193 10.9344C15.2197 10.9355 15.221 10.9388 15.2228 10.9455C15.2266 10.9597 15.2326 10.9884 15.2377 11.042C15.2492 11.1619 15.25 11.3234 15.25 11.6085H16Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
6
|
+
);
|
|
7
|
+
|
|
8
|
+
export default PackageCollectionIcon;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const ReportIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9 7L13 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M9 15L12 15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<path d="M9 11L15 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<path d="M19 11V9C19 6.17157 19 4.75736 18.1213 3.87868C17.2426 3 15.8284 3 13 3H11C8.17157 3 6.75736 3 5.87868 3.87868C5 4.75736 5 6.17157 5 9V15C5 17.8284 5 19.2426 5.87868 20.1213C6.75736 21 8.17157 21 11 21H12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
<circle cx="17.5" cy="17.5" r="2.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
8
|
+
<path d="M21 21L19.5 19.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
9
|
+
</svg>
|
|
10
|
+
);
|
|
11
|
+
export default ReportIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
const ResourceIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<rect x="4" y="4" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<rect x="4" y="13" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
<rect x="13" y="4" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<rect x="13" y="13" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
);
|
|
9
|
+
export default ResourceIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const RoleIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<circle cx="12" cy="7" r="4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
4
|
+
<path d="M5.33788 17.3206C5.99897 14.5269 8.77173 13 11.6426 13H12.3574C15.2283 13 18.001 14.5269 18.6621 17.3206C18.79 17.8611 18.8917 18.4268 18.9489 19.0016C19.0036 19.5512 18.5523 20 18 20H6C5.44772 20 4.99642 19.5512 5.0511 19.0016C5.1083 18.4268 5.20997 17.8611 5.33788 17.3206Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
);
|
|
7
|
+
export default RoleIcon;
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
const TradeyeIcon = () => (
|
|
2
|
+
<svg viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill="currentColor" stroke="none" transform="translate(5.620,3.500) scale(0.020362)">
|
|
4
|
+
<g transform="translate(-82.008207,1379.111842) scale(0.100000,-0.100000)"
|
|
5
|
+
>
|
|
6
|
+
<path d="M6265 13784 c-78 -12 -203 -47 -226 -64 -14 -10 -53 -33 -88 -51 -34
|
|
7
|
+
-19 -80 -44 -102 -56 -22 -12 -60 -40 -84 -62 -25 -23 -51 -41 -58 -41 -7 0
|
|
8
|
+
-26 -14 -43 -31 -16 -17 -42 -38 -59 -46 -16 -9 -46 -30 -66 -47 -90 -77 -180
|
|
9
|
+
-142 -244 -177 -22 -12 -59 -39 -82 -60 -24 -22 -48 -39 -55 -39 -7 0 -29 -14
|
|
10
|
+
-48 -30 -19 -17 -51 -35 -70 -41 -19 -7 -52 -27 -73 -45 -20 -19 -41 -34 -47
|
|
11
|
+
-34 -5 0 -24 -13 -43 -29 -18 -17 -59 -39 -90 -51 -31 -12 -60 -26 -63 -32 -4
|
|
12
|
+
-6 -39 -25 -78 -43 -39 -18 -79 -42 -90 -53 -22 -25 -115 -70 -209 -101 -37
|
|
13
|
+
-13 -85 -37 -107 -56 -21 -18 -56 -36 -77 -40 -21 -3 -57 -17 -79 -30 -23 -14
|
|
14
|
+
-77 -34 -120 -46 -44 -11 -96 -32 -116 -46 -20 -14 -56 -29 -80 -34 -23 -6
|
|
15
|
+
-63 -23 -87 -40 -24 -16 -56 -29 -70 -29 -37 0 -189 -44 -237 -67 -21 -11 -63
|
|
16
|
+
-23 -92 -26 -32 -4 -74 -18 -106 -36 -28 -17 -72 -33 -96 -36 -25 -3 -85 -15
|
|
17
|
+
-135 -25 -49 -10 -133 -28 -185 -39 -52 -11 -126 -22 -165 -26 -50 -4 -90 -15
|
|
18
|
+
-140 -39 -63 -30 -82 -34 -185 -40 -63 -3 -146 -13 -185 -21 -38 -8 -117 -22
|
|
19
|
+
-175 -29 -143 -20 -229 -41 -261 -65 -15 -12 -52 -31 -81 -44 -29 -13 -59 -31
|
|
20
|
+
-67 -40 -7 -10 -34 -26 -60 -38 -79 -35 -282 -243 -316 -326 -9 -21 -28 -51
|
|
21
|
+
-44 -68 -57 -62 -118 -264 -127 -425 -3 -58 -17 -158 -30 -223 -27 -133 -44
|
|
22
|
+
-330 -44 -522 0 -72 -9 -209 -20 -305 -36 -312 -40 -388 -40 -905 0 -516 3
|
|
23
|
+
-581 45 -965 8 -74 15 -183 15 -242 0 -140 17 -298 41 -373 12 -37 23 -115 29
|
|
24
|
+
-204 11 -167 30 -310 65 -501 13 -74 29 -168 35 -208 5 -40 22 -96 36 -123 17
|
|
25
|
+
-35 28 -78 34 -138 5 -47 21 -131 35 -186 14 -55 32 -140 41 -190 8 -49 26
|
|
26
|
+
-114 40 -144 13 -30 33 -88 44 -130 11 -42 31 -110 45 -151 14 -41 32 -103 40
|
|
27
|
+
-138 8 -34 22 -73 30 -86 9 -13 27 -59 41 -102 14 -43 34 -94 44 -114 9 -19
|
|
28
|
+
23 -53 30 -75 24 -79 251 -560 290 -615 10 -14 49 -86 87 -160 61 -118 113
|
|
29
|
+
-209 255 -441 19 -31 46 -71 60 -88 15 -17 48 -65 74 -108 26 -43 64 -96 85
|
|
30
|
+
-119 20 -23 42 -52 49 -64 32 -59 194 -263 389 -490 141 -163 407 -429 612
|
|
31
|
+
-612 127 -114 312 -273 333 -287 11 -8 39 -29 61 -46 22 -17 52 -36 67 -42 15
|
|
32
|
+
-7 37 -26 49 -43 13 -17 61 -54 108 -83 46 -28 103 -68 125 -88 23 -19 73 -55
|
|
33
|
+
111 -79 39 -23 83 -53 98 -66 15 -13 48 -32 72 -43 24 -10 51 -30 60 -44 9
|
|
34
|
+
-15 36 -32 61 -41 25 -8 60 -27 77 -41 68 -55 128 -95 188 -125 35 -17 68 -35
|
|
35
|
+
74 -39 5 -5 36 -16 67 -25 35 -10 64 -26 76 -41 22 -28 171 -109 218 -119 18
|
|
36
|
+
-4 51 -19 75 -35 59 -36 233 -121 250 -121 8 0 46 -16 84 -35 39 -20 90 -42
|
|
37
|
+
115 -49 25 -8 68 -28 95 -45 27 -17 55 -31 62 -31 8 0 67 -17 132 -39 65 -21
|
|
38
|
+
142 -42 172 -46 30 -3 78 -14 107 -23 49 -15 58 -15 125 1 40 9 92 19 116 22
|
|
39
|
+
24 3 69 15 100 26 31 11 97 31 146 45 50 14 106 37 126 50 20 14 60 31 88 39
|
|
40
|
+
28 7 65 22 83 33 18 11 65 29 104 40 39 12 86 32 106 46 19 13 51 29 70 35 19
|
|
41
|
+
6 55 24 79 39 24 15 67 36 94 46 28 11 61 27 75 37 14 9 53 29 85 44 33 14 69
|
|
42
|
+
34 80 44 20 18 138 81 225 121 25 11 66 35 92 53 26 17 69 45 95 61 41 25 116
|
|
43
|
+
75 274 181 17 11 60 40 97 64 37 24 83 58 102 76 19 18 53 42 75 54 22 11 66
|
|
44
|
+
40 97 63 141 105 217 166 268 212 30 27 87 73 125 101 119 89 720 693 834 840
|
|
45
|
+
30 39 75 93 100 121 25 28 64 76 86 108 22 32 70 96 108 142 37 47 67 89 67
|
|
46
|
+
94 0 5 17 29 38 54 39 47 84 112 182 261 33 50 70 104 84 120 13 17 47 75 75
|
|
47
|
+
129 28 55 60 109 71 121 11 12 67 115 125 230 58 115 112 216 120 225 8 9 26
|
|
48
|
+
48 39 87 13 39 31 82 40 95 9 13 22 46 30 72 8 26 26 64 40 84 27 39 97 228
|
|
49
|
+
122 327 8 33 26 77 40 97 13 21 31 64 39 95 7 32 27 96 43 143 17 47 37 126
|
|
50
|
+
46 177 8 51 25 111 37 134 11 23 25 74 31 113 5 39 21 99 35 134 13 34 28 88
|
|
51
|
+
33 120 5 31 16 97 24 146 9 49 16 104 16 122 0 19 9 60 20 93 12 32 27 117 34
|
|
52
|
+
187 9 85 22 146 36 179 12 28 26 88 31 135 32 309 41 401 49 535 5 83 14 177
|
|
53
|
+
20 210 30 181 39 1926 11 2235 -4 52 -13 165 -20 250 -7 85 -19 232 -28 325
|
|
54
|
+
-8 94 -19 226 -23 295 -6 111 -11 132 -37 185 -17 33 -33 80 -37 105 -4 25
|
|
55
|
+
-18 62 -32 82 -13 21 -33 62 -45 92 -11 30 -27 60 -35 67 -8 7 -31 36 -50 65
|
|
56
|
+
-39 58 -169 186 -229 225 -22 14 -65 41 -95 61 -30 20 -72 43 -93 52 -22 9
|
|
57
|
+
-51 26 -67 39 -26 23 -46 28 -255 66 -27 5 -77 16 -110 25 -33 9 -123 20 -200
|
|
58
|
+
24 -118 8 -150 13 -200 35 -72 32 -134 46 -198 47 -26 0 -85 9 -130 19 -109
|
|
59
|
+
26 -257 57 -335 70 -34 5 -76 19 -92 31 -16 12 -65 28 -107 37 -43 9 -95 24
|
|
60
|
+
-116 35 -21 10 -88 30 -150 44 -62 14 -130 36 -152 49 -22 12 -60 28 -85 35
|
|
61
|
+
-25 6 -61 22 -81 35 -19 13 -71 33 -115 45 -43 12 -97 31 -118 42 -22 11 -62
|
|
62
|
+
27 -90 35 -28 8 -66 28 -84 44 -18 16 -45 32 -60 35 -15 4 -54 21 -87 39 -33
|
|
63
|
+
18 -75 36 -93 40 -19 4 -48 19 -65 35 -36 31 -112 76 -203 119 -33 16 -67 37
|
|
64
|
+
-75 47 -8 9 -36 27 -64 39 -27 13 -58 32 -68 43 -10 11 -42 30 -70 42 -29 12
|
|
65
|
+
-86 48 -127 79 -41 31 -91 67 -111 81 -76 51 -222 159 -325 240 -121 95 -172
|
|
66
|
+
130 -259 178 -49 27 -102 52 -117 56 -15 3 -44 21 -64 38 -63 55 -360 96 -519
|
|
67
|
+
72z m348 -619 c79 -46 203 -134 311 -220 105 -84 276 -206 371 -266 44 -28 91
|
|
68
|
+
-59 105 -70 42 -31 206 -129 217 -129 6 0 22 -9 37 -21 33 -26 134 -82 296
|
|
69
|
+
-166 69 -36 146 -78 171 -94 25 -16 70 -36 100 -45 30 -9 66 -25 81 -36 15
|
|
70
|
+
-10 50 -26 78 -34 28 -8 65 -28 83 -43 17 -15 57 -36 87 -46 30 -10 69 -26 85
|
|
71
|
+
-35 17 -10 59 -26 95 -35 36 -9 88 -29 115 -45 28 -15 70 -34 94 -40 25 -6 68
|
|
72
|
+
-24 97 -40 30 -15 86 -33 126 -40 40 -7 103 -25 140 -41 37 -16 99 -33 138
|
|
73
|
+
-38 52 -7 80 -16 106 -36 24 -19 55 -29 102 -36 116 -17 279 -48 336 -64 31
|
|
74
|
+
-9 100 -20 154 -24 76 -6 108 -13 135 -30 53 -33 84 -39 246 -51 251 -20 453
|
|
75
|
+
-65 525 -117 188 -137 261 -267 291 -512 9 -69 20 -160 25 -201 5 -41 12 -142
|
|
76
|
+
15 -225 3 -82 12 -220 20 -305 34 -374 37 -495 32 -1230 -3 -599 -7 -757 -20
|
|
77
|
+
-855 -9 -66 -21 -201 -27 -300 -6 -99 -20 -241 -30 -315 -11 -74 -25 -175 -30
|
|
78
|
+
-225 -6 -49 -20 -128 -30 -175 -10 -47 -22 -121 -25 -165 -4 -44 -16 -107 -26
|
|
79
|
+
-140 -10 -33 -23 -98 -28 -145 -11 -89 -38 -210 -77 -345 -12 -44 -26 -102
|
|
80
|
+
-30 -130 -3 -27 -17 -75 -30 -106 -13 -31 -27 -83 -33 -116 -5 -32 -26 -111
|
|
81
|
+
-46 -174 -20 -62 -41 -130 -47 -149 -6 -19 -20 -53 -31 -75 -11 -22 -33 -80
|
|
82
|
+
-48 -130 -42 -138 -82 -244 -117 -310 -38 -73 -106 -226 -121 -277 -7 -20 -19
|
|
83
|
+
-42 -28 -49 -8 -7 -26 -37 -39 -67 -13 -29 -32 -64 -43 -78 -11 -14 -30 -51
|
|
84
|
+
-41 -82 -21 -54 -118 -213 -139 -226 -5 -4 -15 -23 -22 -44 -6 -20 -22 -50
|
|
85
|
+
-34 -67 -12 -16 -31 -48 -43 -71 -11 -22 -28 -47 -37 -54 -17 -14 -63 -82
|
|
86
|
+
-116 -172 -15 -25 -54 -79 -87 -120 -32 -40 -65 -84 -72 -98 -13 -25 -45 -65
|
|
87
|
+
-131 -163 -25 -28 -67 -81 -94 -117 -119 -163 -674 -714 -835 -828 -93 -66
|
|
88
|
+
-124 -93 -146 -126 -13 -19 -36 -38 -52 -44 -34 -12 -105 -61 -170 -118 -26
|
|
89
|
+
-22 -87 -67 -136 -100 -48 -32 -107 -72 -130 -89 -80 -56 -121 -82 -199 -126
|
|
90
|
+
-43 -24 -92 -54 -110 -66 -18 -12 -93 -55 -167 -96 -74 -41 -177 -97 -228
|
|
91
|
+
-125 -51 -29 -147 -77 -215 -108 -67 -31 -145 -70 -173 -85 -27 -16 -76 -38
|
|
92
|
+
-109 -49 -32 -11 -63 -24 -69 -28 -6 -5 -40 -19 -76 -32 -36 -13 -99 -40 -140
|
|
93
|
+
-61 -41 -20 -91 -40 -110 -44 -19 -4 -53 -17 -75 -29 -59 -31 -251 -31 -310 0
|
|
94
|
+
-22 12 -62 26 -89 33 -26 6 -78 27 -115 45 -36 18 -84 39 -106 46 -51 16 -701
|
|
95
|
+
335 -732 360 -13 10 -72 42 -131 70 -59 29 -133 72 -165 96 -33 24 -63 44 -69
|
|
96
|
+
44 -5 0 -30 16 -55 35 -25 19 -50 35 -56 35 -6 0 -33 17 -61 38 -49 36 -169
|
|
97
|
+
118 -282 193 -30 19 -67 47 -82 61 -15 14 -63 51 -107 82 -44 31 -123 94 -175
|
|
98
|
+
141 -52 46 -144 126 -204 177 -187 160 -522 500 -652 663 -26 33 -71 86 -101
|
|
99
|
+
118 -29 32 -71 84 -93 116 -21 32 -52 72 -67 88 -39 41 -103 131 -115 162 -5
|
|
100
|
+
14 -23 41 -40 58 -18 18 -43 53 -57 77 -43 75 -162 260 -181 281 -10 11 -31
|
|
101
|
+
47 -48 80 -48 98 -104 199 -122 220 -27 32 -96 165 -115 223 -9 29 -28 66 -41
|
|
102
|
+
82 -14 16 -33 53 -43 83 -11 30 -26 66 -34 79 -8 12 -27 60 -41 106 -14 45
|
|
103
|
+
-36 103 -50 130 -13 26 -27 61 -30 78 -4 18 -21 53 -37 79 -17 26 -35 71 -40
|
|
104
|
+
100 -5 29 -25 98 -43 153 -19 55 -37 119 -41 143 -8 51 -19 75 -47 106 -14 15
|
|
105
|
+
-23 45 -29 103 -5 45 -16 98 -25 118 -17 40 -38 137 -59 273 -7 50 -24 108
|
|
106
|
+
-40 138 -19 39 -30 82 -40 171 -9 78 -21 131 -34 156 -14 25 -21 57 -21 91 0
|
|
107
|
+
29 -7 103 -15 165 -8 62 -19 167 -24 233 -5 66 -17 149 -25 185 -18 81 -33
|
|
108
|
+
236 -46 490 -6 107 -17 301 -26 430 -19 284 -22 743 -6 975 6 94 18 328 27
|
|
109
|
+
520 14 325 31 520 55 655 5 30 14 111 20 180 28 347 74 441 285 588 64 44 148
|
|
110
|
+
77 217 86 24 3 113 14 198 25 85 11 193 24 240 29 57 6 108 19 155 39 53 23
|
|
111
|
+
91 32 155 36 54 4 102 13 130 26 25 11 58 21 73 21 65 0 300 51 347 75 28 14
|
|
112
|
+
84 32 124 40 41 7 86 21 98 29 13 9 76 27 139 41 62 15 133 37 156 51 23 13
|
|
113
|
+
65 29 93 35 30 6 65 23 83 39 21 18 53 32 92 40 32 7 86 25 120 41 33 16 79
|
|
114
|
+
33 102 39 24 6 58 26 78 44 23 22 51 37 75 41 21 4 56 16 77 26 21 11 63 30
|
|
115
|
+
93 41 30 11 63 28 73 37 20 18 138 83 235 130 34 17 77 42 96 56 18 14 37 25
|
|
116
|
+
42 25 5 0 35 17 66 38 31 20 93 57 138 82 45 25 104 61 131 80 27 19 78 53
|
|
117
|
+
114 75 36 22 84 54 106 70 22 17 55 40 72 52 53 37 144 105 289 214 237 179
|
|
118
|
+
283 200 438 196 114 -2 115 -2 183 -42z"/>
|
|
119
|
+
<path d="M6230 10853 c-25 -2 -108 -12 -185 -22 -77 -11 -178 -23 -224 -26
|
|
120
|
+
-46 -4 -109 -15 -141 -25 -32 -10 -80 -22 -106 -26 -27 -4 -79 -18 -116 -30
|
|
121
|
+
-37 -13 -78 -24 -90 -24 -13 0 -47 -11 -76 -25 -28 -13 -69 -27 -90 -30 -20
|
|
122
|
+
-4 -66 -19 -102 -34 -36 -16 -86 -36 -112 -45 -26 -10 -66 -30 -90 -46 -24
|
|
123
|
+
-16 -65 -37 -93 -46 -71 -24 -246 -126 -329 -192 -15 -12 -45 -30 -65 -38 -20
|
|
124
|
+
-8 -49 -28 -66 -43 -16 -16 -46 -39 -66 -52 -210 -139 -583 -501 -714 -693
|
|
125
|
+
-22 -32 -56 -77 -76 -100 -20 -22 -46 -59 -57 -81 -12 -22 -43 -71 -71 -110
|
|
126
|
+
-64 -89 -146 -238 -160 -291 -6 -23 -19 -52 -30 -65 -32 -41 -97 -181 -120
|
|
127
|
+
-259 -12 -41 -32 -97 -43 -125 -11 -27 -27 -78 -35 -113 -7 -35 -25 -86 -38
|
|
128
|
+
-112 -14 -27 -30 -80 -35 -117 -6 -37 -17 -95 -25 -128 -8 -33 -15 -82 -15
|
|
129
|
+
-110 0 -27 -7 -81 -15 -120 -44 -206 -47 -799 -6 -984 12 -52 21 -112 21 -135
|
|
130
|
+
0 -23 7 -69 15 -102 8 -34 19 -93 25 -130 6 -38 22 -91 34 -119 13 -27 29 -77
|
|
131
|
+
36 -110 7 -33 20 -76 30 -95 10 -19 27 -71 39 -115 12 -43 37 -109 56 -145 19
|
|
132
|
+
-36 60 -117 90 -180 77 -159 101 -203 166 -301 30 -46 69 -105 85 -130 16 -26
|
|
133
|
+
54 -80 85 -121 31 -41 62 -84 69 -97 53 -100 505 -541 658 -643 31 -21 80 -56
|
|
134
|
+
107 -78 55 -45 225 -150 242 -150 6 0 30 -16 54 -35 23 -20 90 -58 148 -86 58
|
|
135
|
+
-27 131 -63 161 -79 57 -29 176 -76 285 -111 33 -11 87 -29 120 -40 33 -11 96
|
|
136
|
+
-29 140 -39 44 -10 109 -25 145 -34 257 -63 447 -79 849 -73 301 4 356 8 426
|
|
137
|
+
25 44 11 114 23 155 27 41 4 102 16 135 26 33 10 89 24 124 29 35 6 80 19 100
|
|
138
|
+
29 20 10 56 22 81 26 43 7 260 91 365 140 28 13 93 43 145 68 52 24 125 64
|
|
139
|
+
162 88 116 76 162 104 189 115 14 7 41 25 60 41 19 16 70 54 114 85 44 31 107
|
|
140
|
+
80 140 110 33 29 96 83 140 120 225 187 579 620 695 853 52 105 107 206 123
|
|
141
|
+
223 18 22 80 163 116 267 16 44 38 99 49 122 12 23 26 62 32 88 6 26 19 67 30
|
|
142
|
+
90 11 24 24 76 31 116 6 41 26 139 45 219 43 185 79 596 69 785 -15 289 -37
|
|
143
|
+
514 -61 618 -13 59 -33 159 -44 222 -11 63 -30 141 -44 172 -13 32 -27 78 -31
|
|
144
|
+
103 -4 25 -20 70 -35 101 -16 30 -36 82 -45 115 -10 32 -27 77 -38 99 -12 22
|
|
145
|
+
-31 64 -43 94 -13 29 -31 63 -42 75 -10 11 -42 67 -70 122 -27 56 -70 130 -94
|
|
146
|
+
166 -23 36 -47 72 -53 80 -79 119 -133 194 -172 239 -26 31 -68 82 -93 114
|
|
147
|
+
-150 194 -617 602 -791 690 -26 14 -63 38 -81 54 -39 34 -306 169 -430 216
|
|
148
|
+
-47 19 -94 39 -105 45 -29 17 -272 98 -383 127 -30 8 -95 25 -145 38 -49 13
|
|
149
|
+
-135 27 -190 30 -55 3 -145 13 -200 21 -202 29 -438 40 -605 27z m576 -602
|
|
150
|
+
c174 -17 221 -25 265 -45 30 -14 85 -30 123 -36 38 -6 90 -19 115 -30 25 -10
|
|
151
|
+
89 -31 141 -45 52 -15 115 -38 140 -50 25 -13 106 -53 180 -90 185 -91 230
|
|
152
|
+
-115 276 -151 21 -17 73 -53 114 -80 147 -96 341 -262 474 -404 187 -199 331
|
|
153
|
+
-391 402 -532 14 -29 36 -64 49 -78 28 -31 90 -171 119 -271 12 -41 32 -89 45
|
|
154
|
+
-105 12 -17 29 -56 37 -87 8 -31 26 -73 39 -93 15 -22 25 -51 25 -73 0 -45 42
|
|
155
|
+
-260 71 -366 38 -138 35 -860 -4 -1000 -16 -55 -39 -161 -51 -235 -14 -81 -32
|
|
156
|
+
-153 -45 -179 -13 -24 -29 -68 -37 -97 -7 -30 -25 -71 -38 -92 -14 -20 -32
|
|
157
|
+
-64 -42 -97 -9 -33 -29 -85 -44 -115 -15 -30 -31 -66 -35 -80 -4 -14 -21 -40
|
|
158
|
+
-38 -59 -16 -19 -36 -51 -44 -70 -9 -20 -38 -72 -65 -116 -45 -73 -66 -102
|
|
159
|
+
-165 -235 -94 -124 -335 -369 -491 -498 -121 -100 -222 -172 -300 -211 -24
|
|
160
|
+
-12 -62 -36 -85 -54 -23 -18 -72 -46 -107 -63 -36 -17 -108 -52 -160 -78 -52
|
|
161
|
+
-25 -99 -46 -103 -46 -5 0 -36 -13 -70 -30 -34 -16 -111 -41 -172 -55 -60 -15
|
|
162
|
+
-134 -35 -163 -46 -30 -11 -95 -24 -145 -29 -52 -5 -124 -21 -167 -37 -127
|
|
163
|
+
-45 -681 -48 -838 -3 -61 17 -149 35 -196 40 -47 6 -98 15 -113 21 -35 14
|
|
164
|
+
-201 57 -268 71 -27 5 -66 20 -86 33 -20 13 -56 29 -80 35 -24 6 -64 24 -89
|
|
165
|
+
40 -25 15 -70 36 -100 45 -57 18 -157 73 -200 110 -14 12 -50 36 -80 54 -254
|
|
166
|
+
148 -640 516 -832 792 -115 165 -176 267 -239 397 -28 59 -65 136 -83 172 -51
|
|
167
|
+
103 -125 327 -146 442 -6 32 -22 82 -36 112 -18 40 -27 83 -34 168 -6 62 -19
|
|
168
|
+
168 -30 236 -27 164 -26 363 0 542 12 74 25 181 30 237 6 69 18 123 35 166 14
|
|
169
|
+
35 30 90 36 123 13 72 113 375 134 407 8 13 24 49 35 81 11 33 24 64 29 70 6
|
|
170
|
+
7 24 41 42 76 191 388 679 924 1001 1100 21 11 52 33 70 48 40 34 152 97 208
|
|
171
|
+
117 22 8 57 27 78 44 20 16 57 35 82 41 25 7 59 21 77 31 17 11 85 35 150 54
|
|
172
|
+
65 19 134 41 154 49 20 8 67 20 104 26 37 6 90 22 117 36 29 15 74 28 107 30
|
|
173
|
+
47 4 180 17 396 38 80 8 315 -3 521 -23z"/>
|
|
174
|
+
<path d="M6379 9216 c-3 -3 -64 -11 -135 -17 -77 -7 -145 -18 -169 -28 -22
|
|
175
|
+
-10 -71 -27 -110 -39 -38 -12 -82 -30 -96 -39 -15 -10 -53 -36 -84 -58 -32
|
|
176
|
+
-22 -72 -49 -90 -60 -78 -48 -204 -181 -246 -260 -12 -22 -31 -50 -42 -63 -59
|
|
177
|
+
-63 -121 -198 -146 -312 -12 -52 -28 -120 -36 -150 -21 -75 -21 -345 0 -420 8
|
|
178
|
+
-30 27 -104 41 -163 17 -71 34 -117 50 -136 13 -16 32 -48 43 -72 10 -24 33
|
|
179
|
+
-61 50 -83 17 -21 31 -43 31 -48 0 -8 15 -25 124 -142 38 -41 38 -41 33 -151
|
|
180
|
+
-3 -88 -9 -122 -30 -170 -30 -72 -47 -157 -47 -241 0 -34 -11 -106 -25 -160
|
|
181
|
+
-14 -55 -30 -142 -35 -194 -6 -52 -12 -106 -15 -120 -3 -14 -9 -82 -15 -152
|
|
182
|
+
-7 -87 -18 -150 -35 -202 -35 -104 -46 -294 -21 -360 22 -57 129 -160 176
|
|
183
|
+
-170 56 -11 1680 -7 1730 5 64 15 147 81 174 138 26 57 27 226 1 367 -9 49
|
|
184
|
+
-20 141 -25 205 -7 86 -17 136 -38 195 -23 61 -32 109 -41 214 -6 74 -18 160
|
|
185
|
+
-26 190 -8 30 -18 87 -21 125 -3 39 -14 143 -25 233 -24 197 -22 204 62 306
|
|
186
|
+
97 117 168 217 174 247 3 15 20 48 36 74 17 26 35 72 40 103 6 30 20 78 32
|
|
187
|
+
106 19 46 21 71 21 251 0 275 -32 391 -196 697 -55 104 -265 311 -368 363 -19
|
|
188
|
+
9 -46 28 -60 41 -46 42 -306 121 -445 134 -66 6 -136 13 -155 16 -19 3 -38 3
|
|
189
|
+
-41 0z m162 -585 c36 -5 96 -23 133 -40 37 -17 71 -31 76 -31 4 0 48 -39 97
|
|
190
|
+
-87 153 -149 208 -277 208 -482 0 -156 0 -156 -47 -251 -60 -120 -111 -189
|
|
191
|
+
-198 -265 -154 -136 -169 -166 -152 -305 7 -52 12 -112 12 -132 0 -21 13 -115
|
|
192
|
+
29 -210 16 -95 32 -209 35 -253 3 -44 13 -105 21 -135 9 -30 22 -115 30 -187
|
|
193
|
+
8 -73 22 -161 31 -195 10 -37 17 -104 18 -163 1 -135 36 -125 -424 -125 -470
|
|
194
|
+
0 -443 -12 -416 193 8 62 18 149 21 195 4 46 17 120 31 164 15 52 26 121 30
|
|
195
|
+
192 5 84 14 132 36 195 19 56 32 120 39 190 27 302 30 357 24 388 -6 35 -43
|
|
196
|
+
75 -186 203 -33 30 -68 69 -76 85 -9 17 -28 44 -43 62 -101 115 -128 415 -54
|
|
197
|
+
598 40 100 113 207 166 243 13 8 37 28 55 43 110 94 301 136 504 110z"/>
|
|
198
|
+
</g>
|
|
199
|
+
</g>
|
|
200
|
+
</svg>
|
|
201
|
+
);
|
|
202
|
+
export default TradeyeIcon;
|