@arcblock/icons 2.12.11 → 2.12.13
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/lib/ABTNode.js +15 -26
- package/lib/Account.js +8 -19
- package/lib/Add.js +8 -19
- package/lib/AllowLoginIcon.js +10 -21
- package/lib/Approve.js +9 -20
- package/lib/ArrowDown.js +8 -19
- package/lib/Blocklets.js +8 -19
- package/lib/Bridge.js +8 -19
- package/lib/BridgeMoveIn.js +8 -19
- package/lib/BridgeMoveOut.js +8 -19
- package/lib/Circles.js +8 -19
- package/lib/CodeFolder.js +9 -20
- package/lib/Community.js +12 -23
- package/lib/Computer.js +8 -19
- package/lib/Connect.js +11 -22
- package/lib/ConnectLogo.js +17 -28
- package/lib/Copy.js +8 -19
- package/lib/Dapp.js +8 -19
- package/lib/Dashboard.js +8 -19
- package/lib/DeleteIcon.js +8 -19
- package/lib/DidBrandConnect.js +15 -26
- package/lib/DidBrandLogo.js +8 -19
- package/lib/DidLogo.js +9 -20
- package/lib/DidLogoColorful.js +9 -20
- package/lib/DidWallet.js +53 -64
- package/lib/DidWalletLogo.js +16 -27
- package/lib/Disconnect.js +9 -20
- package/lib/EditIcon.js +8 -19
- package/lib/Email.js +8 -19
- package/lib/EmptyIcon.js +8 -19
- package/lib/ExternalIssuerIcon.js +11 -22
- package/lib/ForbidLoginIcon.js +9 -20
- package/lib/Globe.js +8 -19
- package/lib/Holiday.js +12 -23
- package/lib/Key.js +9 -20
- package/lib/Label.js +12 -23
- package/lib/LauncherLogo.js +27 -38
- package/lib/LauncherLogoBg.js +23 -34
- package/lib/LauncherLogoNotext.js +18 -29
- package/lib/Link.js +8 -19
- package/lib/Location.js +8 -19
- package/lib/LockIcon.js +8 -19
- package/lib/Log.js +8 -19
- package/lib/Meeting.js +12 -23
- package/lib/Mobile.js +8 -19
- package/lib/NFT.js +11 -22
- package/lib/Notification.js +9 -20
- package/lib/OffSick.js +12 -23
- package/lib/OpenIn.js +8 -19
- package/lib/PassportIcon.js +11 -22
- package/lib/Pending.js +9 -20
- package/lib/PersonIcon.js +12 -23
- package/lib/Phone.js +8 -19
- package/lib/Plan.js +8 -19
- package/lib/QrCode.js +8 -19
- package/lib/QuestionMarkCircle.js +9 -20
- package/lib/ReadAll.js +8 -19
- package/lib/RevokeIcon.js +8 -19
- package/lib/Rollup.js +11 -22
- package/lib/Server.js +9 -20
- package/lib/ServerLogo.js +25 -36
- package/lib/ServerLogoBg.js +23 -34
- package/lib/ServerLogoNotext.js +18 -29
- package/lib/Setting.js +8 -19
- package/lib/Store.js +8 -19
- package/lib/StoreLogo.js +24 -35
- package/lib/StoreLogoBg.js +22 -33
- package/lib/StoreLogoNotext.js +18 -29
- package/lib/Subtract.js +8 -19
- package/lib/Switch.js +8 -19
- package/lib/Team.js +8 -19
- package/lib/Timezone.js +8 -19
- package/lib/Token.js +8 -19
- package/lib/Tx.js +8 -19
- package/lib/WalletTextLogo.js +14 -25
- package/lib/WorkingRemotely.js +12 -23
- package/lib/index.js +723 -583
- package/package.json +2 -2
package/lib/LauncherLogo.js
CHANGED
|
@@ -1,94 +1,83 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
18
7
|
fillRule: "evenodd",
|
|
19
8
|
clipRule: "evenodd",
|
|
20
9
|
d: "M80.0049 25.9939V10H87.7418C89.8347 10 91.5313 11.6966 91.5313 13.7895V14.9389C91.5313 15.9462 91.1382 16.8618 90.4972 17.5405C91.6333 18.1948 92.3982 19.4214 92.3982 20.8266V22.2044C92.3982 24.2973 90.7016 25.9939 88.6087 25.9939H80.0049ZM81.6893 17.0371H87.9154C88.997 16.949 89.8473 16.0432 89.8473 14.9389V13.7894C89.8473 12.6267 88.9047 11.6842 87.742 11.6842H81.6893V17.0371ZM81.6893 24.3097V18.7284L88.609 18.7214C89.7717 18.7214 90.7142 19.664 90.7142 20.8267V22.2044C90.7142 23.3671 89.7717 24.3097 88.609 24.3097H81.6893ZM97.2554 10V25.9939H95.4933V10H97.2554ZM105.988 14.3186H104.161C102.056 14.3186 100.35 16.0247 100.35 18.1292V22.1833C100.35 24.2878 102.056 25.9939 104.161 25.9939H105.988C108.092 25.9939 109.799 24.2878 109.799 22.1833V18.1292C109.799 16.0247 108.092 14.3186 105.988 14.3186ZM104.161 16.0808C103.03 16.0808 102.112 16.9979 102.112 18.1292V22.1834C102.112 23.3147 103.03 24.2318 104.161 24.2318H105.988C107.119 24.2318 108.036 23.3147 108.036 22.1834V18.1292C108.036 16.9979 107.119 16.0808 105.988 16.0808H104.161ZM125.204 26V20.2464H127.352L130.674 26H132.709L128.888 19.3819L131.881 14.1981H129.846L127.372 18.4843H125.204V10H123.442V26H125.204ZM119.648 18.4408V18.1292C119.648 16.9979 118.731 16.0808 117.6 16.0808H115.773C114.641 16.0808 113.724 16.9979 113.724 18.1292V22.1833C113.724 23.3146 114.641 24.2318 115.773 24.2318H117.6C118.731 24.2318 119.648 23.3146 119.648 22.1833V21.8717H121.41V22.1833C121.41 24.2878 119.704 25.9939 117.6 25.9939H115.773C113.668 25.9939 111.962 24.2878 111.962 22.1833V18.1292C111.962 16.0247 113.668 14.3186 115.773 14.3186H117.6C119.704 14.3186 121.41 16.0247 121.41 18.1292V18.4408H119.648ZM137.566 25.9939V10H135.804V25.9939H137.566ZM142.555 20.6375V22.1833C142.555 23.3146 143.472 24.2318 144.604 24.2318H146.431C147.562 24.2318 148.479 23.3146 148.479 22.1833V21.8717H150.241V22.1833C150.241 24.2878 148.535 25.9939 146.431 25.9939H144.604C142.499 25.9939 140.793 24.2878 140.793 22.1833V18.1292C140.793 16.0247 142.499 14.3186 144.604 14.3186H146.431C148.535 14.3186 150.241 16.0247 150.241 18.1292V18.8754H150.242V20.6375H142.555ZM148.479 18.8754H142.555V18.1292C142.555 16.9979 143.472 16.0808 144.604 16.0808H146.431C147.562 16.0808 148.479 16.9979 148.479 18.1292V18.8754ZM153.968 16.9632H152.4V15.2011H153.968V12.3534H155.652V15.2011H159.729V16.9632H155.652V22.6403C155.652 23.5623 156.399 24.3097 157.321 24.3097C158.243 24.3097 158.991 23.5623 158.991 22.6403V22.2898H160.675V22.6403C160.675 24.4924 159.174 25.9939 157.321 25.9939C155.469 25.9939 153.968 24.4924 153.968 22.6403V16.9632Z",
|
|
21
10
|
fill: "#121319"
|
|
22
|
-
}), /*#__PURE__*/(
|
|
11
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
23
12
|
d: "M92.112 50.2588V53.3668H80.254V33.1228H84.02V50.2588H92.112Z",
|
|
24
13
|
fill: "#121319"
|
|
25
|
-
}), /*#__PURE__*/(
|
|
14
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
26
15
|
d: "M101.843 47.2348C100.844 47.2815 100.004 47.3702 99.3229 47.5008C98.6415 47.6222 98.0955 47.7808 97.6849 47.9768C97.2742 48.1728 96.9802 48.4015 96.8029 48.6628C96.6255 48.9242 96.5369 49.2088 96.5369 49.5168C96.5369 50.1235 96.7142 50.5575 97.0689 50.8188C97.4329 51.0802 97.9042 51.2108 98.4829 51.2108C99.1922 51.2108 99.8035 51.0848 100.317 50.8328C100.84 50.5715 101.348 50.1795 101.843 49.6568V47.2348ZM93.9189 41.0048C95.5709 39.4928 97.5589 38.7368 99.8829 38.7368C100.723 38.7368 101.474 38.8768 102.137 39.1568C102.8 39.4275 103.36 39.8102 103.817 40.3048C104.274 40.7902 104.62 41.3735 104.853 42.0548C105.096 42.7362 105.217 43.4828 105.217 44.2948V53.3668H103.649C103.322 53.3668 103.07 53.3202 102.893 53.2268C102.716 53.1242 102.576 52.9235 102.473 52.6248L102.165 51.5888C101.801 51.9155 101.446 52.2048 101.101 52.4568C100.756 52.6995 100.396 52.9048 100.023 53.0728C99.6495 53.2408 99.2482 53.3668 98.8189 53.4508C98.3989 53.5442 97.9322 53.5908 97.4189 53.5908C96.8122 53.5908 96.2522 53.5115 95.7389 53.3528C95.2255 53.1848 94.7822 52.9375 94.4089 52.6108C94.0355 52.2842 93.7462 51.8782 93.5409 51.3928C93.3355 50.9075 93.2329 50.3428 93.2329 49.6988C93.2329 49.3348 93.2935 48.9755 93.4149 48.6208C93.5362 48.2568 93.7322 47.9115 94.0029 47.5848C94.2829 47.2582 94.6422 46.9502 95.0809 46.6608C95.5195 46.3715 96.0562 46.1195 96.6909 45.9048C97.3349 45.6902 98.0815 45.5175 98.9309 45.3868C99.7802 45.2468 100.751 45.1628 101.843 45.1348V44.2948C101.843 43.3335 101.638 42.6242 101.227 42.1668C100.816 41.7002 100.224 41.4668 99.4489 41.4668C98.8889 41.4668 98.4222 41.5322 98.0489 41.6628C97.6849 41.7935 97.3629 41.9428 97.0829 42.1108C96.8029 42.2695 96.5462 42.4142 96.3129 42.5448C96.0889 42.6755 95.8369 42.7408 95.5569 42.7408C95.3142 42.7408 95.1089 42.6802 94.9409 42.5588C94.7729 42.4282 94.6375 42.2788 94.5349 42.1108L93.9189 41.0048Z",
|
|
27
16
|
fill: "#121319"
|
|
28
|
-
}), /*#__PURE__*/(
|
|
17
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
18
|
d: "M120.85 39.0028V53.3668H118.736C118.278 53.3668 117.989 53.1568 117.868 52.7368L117.63 51.5888C117.042 52.1862 116.393 52.6715 115.684 53.0448C114.974 53.4088 114.139 53.5908 113.178 53.5908C112.394 53.5908 111.698 53.4602 111.092 53.1988C110.494 52.9282 109.99 52.5502 109.58 52.0648C109.169 51.5795 108.856 51.0055 108.642 50.3428C108.436 49.6708 108.334 48.9335 108.334 48.1308V39.0028H111.792V48.1308C111.792 49.0082 111.992 49.6895 112.394 50.1748C112.804 50.6508 113.416 50.8888 114.228 50.8888C114.825 50.8888 115.385 50.7582 115.908 50.4968C116.43 50.2262 116.925 49.8575 117.392 49.3908V39.0028H120.85Z",
|
|
30
19
|
fill: "#121319"
|
|
31
|
-
}), /*#__PURE__*/(
|
|
20
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
21
|
d: "M127.512 40.7668C127.802 40.4775 128.105 40.2115 128.422 39.9688C128.749 39.7168 129.09 39.5068 129.444 39.3388C129.808 39.1615 130.196 39.0262 130.606 38.9328C131.017 38.8302 131.465 38.7788 131.95 38.7788C132.734 38.7788 133.43 38.9142 134.036 39.1848C134.643 39.4462 135.147 39.8195 135.548 40.3048C135.959 40.7808 136.267 41.3548 136.472 42.0268C136.687 42.6895 136.794 43.4222 136.794 44.2248V53.3668H133.336V44.2248C133.336 43.3475 133.136 42.6708 132.734 42.1948C132.333 41.7095 131.722 41.4668 130.9 41.4668C130.303 41.4668 129.743 41.6022 129.22 41.8728C128.698 42.1435 128.203 42.5122 127.736 42.9788V53.3668H124.278V39.0028H126.392C126.84 39.0028 127.134 39.2128 127.274 39.6328L127.512 40.7668Z",
|
|
33
22
|
fill: "#121319"
|
|
34
|
-
}), /*#__PURE__*/(
|
|
23
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
35
24
|
d: "M150.373 42.0408C150.27 42.1715 150.168 42.2742 150.065 42.3488C149.972 42.4235 149.832 42.4608 149.645 42.4608C149.468 42.4608 149.295 42.4095 149.127 42.3068C148.959 42.1948 148.758 42.0735 148.525 41.9428C148.292 41.8028 148.012 41.6815 147.685 41.5788C147.368 41.4668 146.971 41.4108 146.495 41.4108C145.888 41.4108 145.356 41.5228 144.899 41.7468C144.442 41.9615 144.059 42.2742 143.751 42.6848C143.452 43.0955 143.228 43.5948 143.079 44.1828C142.93 44.7615 142.855 45.4195 142.855 46.1568C142.855 46.9222 142.934 47.6035 143.093 48.2008C143.261 48.7982 143.499 49.3022 143.807 49.7128C144.115 50.1142 144.488 50.4222 144.927 50.6368C145.366 50.8422 145.86 50.9448 146.411 50.9448C146.962 50.9448 147.405 50.8795 147.741 50.7488C148.086 50.6088 148.376 50.4595 148.609 50.3008C148.842 50.1328 149.043 49.9835 149.211 49.8528C149.388 49.7128 149.584 49.6428 149.799 49.6428C150.079 49.6428 150.289 49.7502 150.429 49.9648L151.423 51.2248C151.04 51.6728 150.625 52.0508 150.177 52.3588C149.729 52.6575 149.262 52.9002 148.777 53.0868C148.301 53.2642 147.806 53.3902 147.293 53.4648C146.789 53.5395 146.285 53.5768 145.781 53.5768C144.894 53.5768 144.059 53.4135 143.275 53.0868C142.491 52.7508 141.805 52.2655 141.217 51.6308C140.629 50.9962 140.162 50.2215 139.817 49.3068C139.481 48.3828 139.313 47.3328 139.313 46.1568C139.313 45.1022 139.462 44.1268 139.761 43.2308C140.069 42.3255 140.517 41.5462 141.105 40.8928C141.693 40.2302 142.421 39.7122 143.289 39.3388C144.157 38.9655 145.156 38.7788 146.285 38.7788C147.358 38.7788 148.296 38.9515 149.099 39.2968C149.911 39.6422 150.639 40.1368 151.283 40.7808L150.373 42.0408Z",
|
|
36
25
|
fill: "#121319"
|
|
37
|
-
}), /*#__PURE__*/(
|
|
26
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
38
27
|
d: "M157.049 40.5428C157.609 40.0202 158.225 39.5955 158.897 39.2688C159.569 38.9422 160.357 38.7788 161.263 38.7788C162.047 38.7788 162.742 38.9142 163.349 39.1848C163.955 39.4462 164.459 39.8195 164.861 40.3048C165.271 40.7808 165.579 41.3548 165.785 42.0268C165.999 42.6895 166.107 43.4222 166.107 44.2248V53.3668H162.649V44.2248C162.649 43.3475 162.448 42.6708 162.047 42.1948C161.645 41.7095 161.034 41.4668 160.213 41.4668C159.615 41.4668 159.055 41.6022 158.533 41.8728C158.01 42.1435 157.515 42.5122 157.049 42.9788V53.3668H153.591V32.5628H157.049V40.5428Z",
|
|
39
28
|
fill: "#121319"
|
|
40
|
-
}), /*#__PURE__*/(
|
|
29
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
41
30
|
d: "M178.649 44.5328C178.649 44.0848 178.584 43.6648 178.453 43.2728C178.332 42.8715 178.146 42.5215 177.894 42.2228C177.642 41.9242 177.319 41.6908 176.927 41.5228C176.545 41.3455 176.097 41.2568 175.584 41.2568C174.585 41.2568 173.796 41.5415 173.217 42.1108C172.648 42.6802 172.284 43.4875 172.126 44.5328H178.649ZM172.056 46.6188C172.112 47.3562 172.242 47.9955 172.448 48.5368C172.653 49.0688 172.923 49.5122 173.259 49.8668C173.595 50.2122 173.992 50.4735 174.45 50.6508C174.916 50.8188 175.43 50.9028 175.99 50.9028C176.55 50.9028 177.03 50.8375 177.432 50.7068C177.842 50.5762 178.197 50.4315 178.495 50.2728C178.803 50.1142 179.07 49.9695 179.294 49.8388C179.527 49.7082 179.751 49.6428 179.965 49.6428C180.255 49.6428 180.469 49.7502 180.609 49.9648L181.604 51.2248C181.221 51.6728 180.791 52.0508 180.315 52.3588C179.839 52.6575 179.34 52.9002 178.817 53.0868C178.304 53.2642 177.777 53.3902 177.236 53.4648C176.704 53.5395 176.186 53.5768 175.682 53.5768C174.683 53.5768 173.754 53.4135 172.896 53.0868C172.037 52.7508 171.29 52.2608 170.656 51.6168C170.021 50.9635 169.522 50.1608 169.158 49.2088C168.794 48.2475 168.612 47.1368 168.612 45.8768C168.612 44.8968 168.77 43.9775 169.088 43.1188C169.405 42.2508 169.858 41.4995 170.446 40.8648C171.043 40.2208 171.766 39.7122 172.616 39.3388C173.474 38.9655 174.44 38.7788 175.514 38.7788C176.419 38.7788 177.254 38.9235 178.02 39.2128C178.785 39.5022 179.443 39.9268 179.993 40.4868C180.544 41.0375 180.974 41.7188 181.282 42.5308C181.599 43.3335 181.757 44.2528 181.757 45.2888C181.757 45.8115 181.702 46.1662 181.59 46.3528C181.478 46.5302 181.263 46.6188 180.946 46.6188H172.056Z",
|
|
42
31
|
fill: "#121319"
|
|
43
|
-
}), /*#__PURE__*/(
|
|
32
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
44
33
|
d: "M187.615 41.4948C188.063 40.6362 188.595 39.9642 189.211 39.4788C189.827 38.9842 190.555 38.7368 191.395 38.7368C192.057 38.7368 192.589 38.8815 192.991 39.1708L192.767 41.7608C192.72 41.9288 192.65 42.0502 192.557 42.1248C192.473 42.1902 192.356 42.2228 192.207 42.2228C192.067 42.2228 191.857 42.1995 191.577 42.1528C191.306 42.1062 191.04 42.0828 190.779 42.0828C190.396 42.0828 190.055 42.1388 189.757 42.2508C189.458 42.3628 189.187 42.5262 188.945 42.7408C188.711 42.9462 188.501 43.1982 188.315 43.4968C188.137 43.7955 187.969 44.1362 187.811 44.5188V53.3668H184.353V39.0028H186.383C186.737 39.0028 186.985 39.0682 187.125 39.1988C187.265 39.3202 187.358 39.5442 187.405 39.8708L187.615 41.4948Z",
|
|
45
34
|
fill: "#121319"
|
|
46
|
-
}), /*#__PURE__*/(
|
|
35
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
47
36
|
fillRule: "evenodd",
|
|
48
37
|
clipRule: "evenodd",
|
|
49
38
|
d: "M49.152 10.6417L30.72 0L12.288 10.6417V24.7942L0 31.8887V53.1722L18.432 63.8139L30.6902 56.7366L30.72 56.7538L30.7498 56.7366L43.008 63.8139L61.44 53.1722V31.8887L49.152 24.7942V10.6417ZM59.52 32.9972L47.232 25.9027V11.7502L30.72 2.21703L14.208 11.7502V25.9028L1.92 32.9972V52.0636L18.432 61.5968L30.6902 54.5196L30.72 54.5368L30.7498 54.5196L43.008 61.5968L59.52 52.0636V32.9972Z",
|
|
50
39
|
fill: "url(#paint0_linear_615_416)"
|
|
51
|
-
}), /*#__PURE__*/(
|
|
40
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
52
41
|
fillRule: "evenodd",
|
|
53
42
|
clipRule: "evenodd",
|
|
54
43
|
d: "M49.1521 24.8307L30.7201 14.189L12.2881 24.8307V46.1141L30.7201 56.7558L49.1521 46.1141V24.8307ZM14.2081 25.9392L30.7201 16.406L47.2321 25.9392V45.0056L30.7201 54.5388L14.2081 45.0056V25.9392ZM28.7271 22.1838L29.2118 22.4676L41.4144 29.6104L42.4868 30.2199V40.4012L42.0792 40.6879L41.6178 41.0084L28.7284 48.5532L20.985 44.05L21.0046 26.6992L28.7271 22.1838ZM22.9063 42.9463L22.9233 27.8014L28.7266 24.4083L40.4551 31.2736L40.5668 31.3371V39.4027L28.7254 46.3304L22.9063 42.9463ZM26.9455 30.2287L28.3882 29.4021L37.1995 34.5287V36.1883L28.3538 41.3349L26.911 40.5019L26.9455 30.2287ZM34.8078 35.3618L28.8366 38.8359L28.8599 31.9011L34.8078 35.3618Z",
|
|
55
44
|
fill: "url(#paint1_linear_615_416)"
|
|
56
|
-
}), /*#__PURE__*/(
|
|
57
|
-
children: [/*#__PURE__*/(
|
|
45
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
46
|
+
children: [/*#__PURE__*/_jsxs("linearGradient", {
|
|
58
47
|
id: "paint0_linear_615_416",
|
|
59
48
|
x1: "30.72",
|
|
60
49
|
y1: "95.7208",
|
|
61
50
|
x2: "94.488",
|
|
62
51
|
y2: "34.3249",
|
|
63
52
|
gradientUnits: "userSpaceOnUse",
|
|
64
|
-
children: [/*#__PURE__*/(
|
|
53
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
65
54
|
stopColor: "#0FA4B7"
|
|
66
|
-
}), /*#__PURE__*/(
|
|
55
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
67
56
|
offset: "0.494757",
|
|
68
57
|
stopColor: "#1DC1C7"
|
|
69
|
-
}), /*#__PURE__*/(
|
|
58
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
70
59
|
offset: "1",
|
|
71
60
|
stopColor: "#2BE0D7"
|
|
72
61
|
})]
|
|
73
|
-
}), /*#__PURE__*/(
|
|
62
|
+
}), /*#__PURE__*/_jsxs("linearGradient", {
|
|
74
63
|
id: "paint1_linear_615_416",
|
|
75
64
|
x1: "27.4374",
|
|
76
65
|
y1: "99.2464",
|
|
77
66
|
x2: "97.7613",
|
|
78
67
|
y2: "44.9372",
|
|
79
68
|
gradientUnits: "userSpaceOnUse",
|
|
80
|
-
children: [/*#__PURE__*/(
|
|
69
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
81
70
|
stopColor: "#0FA4B7"
|
|
82
|
-
}), /*#__PURE__*/(
|
|
71
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
83
72
|
offset: "0.494757",
|
|
84
73
|
stopColor: "#1DC1C7"
|
|
85
|
-
}), /*#__PURE__*/(
|
|
74
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
86
75
|
offset: "1",
|
|
87
76
|
stopColor: "#2BE0D7"
|
|
88
77
|
})]
|
|
89
78
|
})]
|
|
90
79
|
})]
|
|
91
|
-
})
|
|
80
|
+
});
|
|
92
81
|
};
|
|
93
82
|
Component.defaultProps = {
|
|
94
83
|
width: "193",
|
|
@@ -98,4 +87,4 @@ Component.defaultProps = {
|
|
|
98
87
|
xmlns: "http://www.w3.org/2000/svg"
|
|
99
88
|
};
|
|
100
89
|
Component.displayName = "launcher-logo";
|
|
101
|
-
|
|
90
|
+
export default Component;
|
package/lib/LauncherLogoBg.js
CHANGED
|
@@ -1,28 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: [/*#__PURE__*/_jsx("rect", {
|
|
18
7
|
width: "120",
|
|
19
8
|
height: "120",
|
|
20
9
|
fill: "white"
|
|
21
|
-
}), /*#__PURE__*/(
|
|
10
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
22
11
|
width: "119.883",
|
|
23
12
|
height: "119.883",
|
|
24
13
|
fill: "url(#paint0_linear_615_431)"
|
|
25
|
-
}), /*#__PURE__*/(
|
|
14
|
+
}), /*#__PURE__*/_jsx("mask", {
|
|
26
15
|
id: "mask0_615_431",
|
|
27
16
|
style: {
|
|
28
17
|
maskType: "alpha"
|
|
@@ -32,65 +21,65 @@ var Component = function Component(props) {
|
|
|
32
21
|
y: "0",
|
|
33
22
|
width: "120",
|
|
34
23
|
height: "120",
|
|
35
|
-
children: /*#__PURE__*/(
|
|
24
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
36
25
|
width: "119.883",
|
|
37
26
|
height: "119.883",
|
|
38
27
|
fill: "white"
|
|
39
28
|
})
|
|
40
|
-
}), /*#__PURE__*/(
|
|
29
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
41
30
|
mask: "url(#mask0_615_431)",
|
|
42
|
-
children: [/*#__PURE__*/(
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
43
32
|
opacity: "0.5",
|
|
44
33
|
fillRule: "evenodd",
|
|
45
34
|
clipRule: "evenodd",
|
|
46
35
|
d: "M59.8118 -29.8306V59.7358L-17.755 104.519L-6.43899 -12.2927L59.8118 -29.8306Z",
|
|
47
36
|
fill: "#0FA4B7"
|
|
48
|
-
}), /*#__PURE__*/(
|
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
49
38
|
opacity: "0.5",
|
|
50
39
|
fillRule: "evenodd",
|
|
51
40
|
clipRule: "evenodd",
|
|
52
41
|
d: "M59.8118 -29.8306V59.7358L137.379 104.519L136.098 -1.46345L59.8118 -29.8306Z",
|
|
53
42
|
fill: "#2BE0D7"
|
|
54
43
|
})]
|
|
55
|
-
}), /*#__PURE__*/(
|
|
44
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
56
45
|
opacity: "0.6",
|
|
57
46
|
fillRule: "evenodd",
|
|
58
47
|
clipRule: "evenodd",
|
|
59
48
|
d: "M87.8644 25.8793L59.8118 9.68311L31.7592 25.8793V47.4187L13.0575 58.2162V90.6085L41.1101 106.805L59.7664 96.0335L59.8118 96.0597L59.8572 96.0335L78.5136 106.805L106.566 90.6085V58.2162L87.8644 47.4187V25.8793ZM103.644 59.9033L84.9423 49.1058V27.5664L59.8118 13.0573L34.6813 27.5664V49.1058L15.9796 59.9033V88.9214L41.1101 103.431L59.7664 92.6593L59.8118 92.6855L59.8572 92.6593L78.5135 103.431L103.644 88.9214V59.9033Z",
|
|
60
49
|
fill: "white"
|
|
61
|
-
}), /*#__PURE__*/(
|
|
50
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
62
51
|
fillRule: "evenodd",
|
|
63
52
|
clipRule: "evenodd",
|
|
64
53
|
d: "M87.8644 47.4742L59.8118 31.278L31.7592 47.4742V79.8665L59.8118 96.0627L87.8644 79.8665V47.4742ZM34.6813 49.1613L59.8118 34.6522L84.9422 49.1613V78.1794L59.8118 92.6885L34.6813 78.1794V49.1613Z",
|
|
65
54
|
fill: "white"
|
|
66
|
-
}), /*#__PURE__*/(
|
|
55
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
67
56
|
fillRule: "evenodd",
|
|
68
57
|
clipRule: "evenodd",
|
|
69
58
|
d: "M46.4454 50.929L56.9279 44.7999L75.8585 55.8809L76.7679 56.3977V70.5403L76.1572 70.9699L56.9279 82.2258L46.417 76.1132L46.4454 50.929Z",
|
|
70
59
|
fill: "white"
|
|
71
|
-
}), /*#__PURE__*/(
|
|
60
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
72
61
|
d: "M54.1282 55.6903L56.3241 54.4323L69.7344 62.2348V64.7605L56.2717 72.5934L54.0759 71.3257L54.1282 55.6903Z",
|
|
73
62
|
fill: "#19B9C3"
|
|
74
|
-
}), /*#__PURE__*/(
|
|
75
|
-
children: /*#__PURE__*/(
|
|
63
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
64
|
+
children: /*#__PURE__*/_jsxs("linearGradient", {
|
|
76
65
|
id: "paint0_linear_615_431",
|
|
77
66
|
x1: "59.9415",
|
|
78
67
|
y1: "179.824",
|
|
79
68
|
x2: "179.824",
|
|
80
69
|
y2: "59.9415",
|
|
81
70
|
gradientUnits: "userSpaceOnUse",
|
|
82
|
-
children: [/*#__PURE__*/(
|
|
71
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
83
72
|
stopColor: "#0FA4B7"
|
|
84
|
-
}), /*#__PURE__*/(
|
|
73
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
85
74
|
offset: "0.494757",
|
|
86
75
|
stopColor: "#1DC1C7"
|
|
87
|
-
}), /*#__PURE__*/(
|
|
76
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
88
77
|
offset: "1",
|
|
89
78
|
stopColor: "#2BE0D7"
|
|
90
79
|
})]
|
|
91
80
|
})
|
|
92
81
|
})]
|
|
93
|
-
})
|
|
82
|
+
});
|
|
94
83
|
};
|
|
95
84
|
Component.defaultProps = {
|
|
96
85
|
width: "120",
|
|
@@ -100,4 +89,4 @@ Component.defaultProps = {
|
|
|
100
89
|
xmlns: "http://www.w3.org/2000/svg"
|
|
101
90
|
};
|
|
102
91
|
Component.displayName = "launcher-logo-bg";
|
|
103
|
-
|
|
92
|
+
export default Component;
|
|
@@ -1,65 +1,54 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
18
7
|
fillRule: "evenodd",
|
|
19
8
|
clipRule: "evenodd",
|
|
20
9
|
d: "M50.152 10.6417L31.72 0L13.288 10.6417V24.7942L1 31.8887V53.1722L19.432 63.8139L31.6902 56.7366L31.72 56.7538L31.7498 56.7366L44.008 63.8139L62.44 53.1722V31.8887L50.152 24.7942V10.6417ZM60.52 32.9972L48.232 25.9027V11.7502L31.72 2.21703L15.208 11.7502V25.9028L2.92 32.9972V52.0636L19.432 61.5968L31.6902 54.5196L31.72 54.5368L31.7498 54.5196L44.008 61.5968L60.52 52.0636V32.9972Z",
|
|
21
10
|
fill: "url(#paint0_linear_615_428)"
|
|
22
|
-
}), /*#__PURE__*/(
|
|
11
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
23
12
|
fillRule: "evenodd",
|
|
24
13
|
clipRule: "evenodd",
|
|
25
14
|
d: "M50.1521 24.8307L31.7201 14.189L13.2881 24.8307V46.1141L31.7201 56.7558L50.1521 46.1141V24.8307ZM15.2081 25.9392L31.7201 16.406L48.2321 25.9392V45.0056L31.7201 54.5388L15.2081 45.0056V25.9392ZM29.7271 22.1838L30.2118 22.4676L42.4144 29.6104L43.4868 30.2199V40.4012L43.0792 40.6879L42.6178 41.0084L29.7284 48.5532L21.985 44.05L22.0046 26.6992L29.7271 22.1838ZM23.9063 42.9463L23.9233 27.8014L29.7266 24.4083L41.4551 31.2736L41.5668 31.3371V39.4027L29.7254 46.3304L23.9063 42.9463ZM27.9455 30.2287L29.3882 29.4021L38.1995 34.5287V36.1883L29.3538 41.3349L27.911 40.5019L27.9455 30.2287ZM35.8078 35.3618L29.8366 38.8359L29.8599 31.9011L35.8078 35.3618Z",
|
|
26
15
|
fill: "url(#paint1_linear_615_428)"
|
|
27
|
-
}), /*#__PURE__*/(
|
|
28
|
-
children: [/*#__PURE__*/(
|
|
16
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
17
|
+
children: [/*#__PURE__*/_jsxs("linearGradient", {
|
|
29
18
|
id: "paint0_linear_615_428",
|
|
30
19
|
x1: "31.72",
|
|
31
20
|
y1: "95.7208",
|
|
32
21
|
x2: "95.488",
|
|
33
22
|
y2: "34.3249",
|
|
34
23
|
gradientUnits: "userSpaceOnUse",
|
|
35
|
-
children: [/*#__PURE__*/(
|
|
24
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
36
25
|
stopColor: "#0FA4B7"
|
|
37
|
-
}), /*#__PURE__*/(
|
|
26
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
38
27
|
offset: "0.494757",
|
|
39
28
|
stopColor: "#1DC1C7"
|
|
40
|
-
}), /*#__PURE__*/(
|
|
29
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
41
30
|
offset: "1",
|
|
42
31
|
stopColor: "#2BE0D7"
|
|
43
32
|
})]
|
|
44
|
-
}), /*#__PURE__*/(
|
|
33
|
+
}), /*#__PURE__*/_jsxs("linearGradient", {
|
|
45
34
|
id: "paint1_linear_615_428",
|
|
46
35
|
x1: "28.4374",
|
|
47
36
|
y1: "99.2464",
|
|
48
37
|
x2: "98.7613",
|
|
49
38
|
y2: "44.9372",
|
|
50
39
|
gradientUnits: "userSpaceOnUse",
|
|
51
|
-
children: [/*#__PURE__*/(
|
|
40
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
52
41
|
stopColor: "#0FA4B7"
|
|
53
|
-
}), /*#__PURE__*/(
|
|
42
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
54
43
|
offset: "0.494757",
|
|
55
44
|
stopColor: "#1DC1C7"
|
|
56
|
-
}), /*#__PURE__*/(
|
|
45
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
57
46
|
offset: "1",
|
|
58
47
|
stopColor: "#2BE0D7"
|
|
59
48
|
})]
|
|
60
49
|
})]
|
|
61
50
|
})]
|
|
62
|
-
})
|
|
51
|
+
});
|
|
63
52
|
};
|
|
64
53
|
Component.defaultProps = {
|
|
65
54
|
width: "64",
|
|
@@ -69,4 +58,4 @@ Component.defaultProps = {
|
|
|
69
58
|
xmlns: "http://www.w3.org/2000/svg"
|
|
70
59
|
};
|
|
71
60
|
Component.displayName = "launcher-logo-notext";
|
|
72
|
-
|
|
61
|
+
export default Component;
|
package/lib/Link.js
CHANGED
|
@@ -1,26 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
18
7
|
fillRule: "evenodd",
|
|
19
8
|
clipRule: "evenodd",
|
|
20
9
|
d: "M15.772 2.0002C14.3605 1.98785 13.0021 2.53434 11.9889 3.51979L11.9786 3.52995L10.4736 5.0366C10.0833 5.42734 10.0837 6.06051 10.4745 6.45081C10.8652 6.84111 11.4984 6.84074 11.8887 6.44999L13.3881 4.9488C14.0246 4.33227 14.8741 3.99242 15.7545 4.00013C16.6371 4.00785 17.4828 4.36431 18.1091 4.99495C18.7356 5.62581 19.0921 6.48066 19.0999 7.37575C19.1076 8.26812 18.7679 9.12664 18.1559 9.76782L15.5375 12.4045L15.5374 12.4046C15.1949 12.7496 14.7832 13.016 14.3305 13.186C13.8777 13.3561 13.3942 13.4261 12.9126 13.3913C12.4309 13.3566 11.962 13.218 11.5377 12.9845C11.1133 12.751 10.7432 12.428 10.4528 12.037C10.1234 11.5937 9.49706 11.5012 9.0537 11.8306C8.61035 12.1599 8.51791 12.7863 8.84723 13.2296C9.30832 13.8504 9.89697 14.3645 10.5736 14.7368C11.2503 15.1091 11.9989 15.3306 12.7687 15.3862C13.5385 15.4417 14.311 15.3298 15.0338 15.0583C15.7565 14.7868 16.4122 14.3622 16.9567 13.8138L16.9568 13.8136L19.5815 11.1705L19.5937 11.1581C20.5719 10.1382 21.112 8.77356 21.0998 7.35849C21.0876 5.94342 20.524 4.58841 19.5282 3.58568C18.5323 2.58272 17.1835 2.01256 15.772 2.0002ZM10.3313 7.71385C9.5615 7.65833 8.78897 7.7702 8.06622 8.0417C7.34353 8.31317 6.68782 8.73776 6.14332 9.28624L6.14319 9.28637L3.51847 11.9295L3.50633 11.9419C2.52811 12.9618 1.98799 14.3264 2.0002 15.7415C2.01241 17.1566 2.57601 18.5116 3.57176 19.5143C4.56774 20.5173 5.91651 21.0874 7.32798 21.0998C8.73945 21.1121 10.0979 20.5657 11.1111 19.5802L11.1235 19.568L12.6197 18.0613C13.0088 17.6695 13.0066 17.0363 12.6147 16.6471C12.2228 16.258 11.5897 16.2602 11.2005 16.6521L9.71087 18.1522C9.07455 18.7681 8.2254 19.1076 7.34548 19.0999C6.46286 19.0921 5.61715 18.7357 4.9909 18.1051C4.36443 17.4742 4.00785 16.6193 4.00013 15.7242C3.99243 14.8319 4.3321 13.9734 4.94412 13.3322L7.56246 10.6955L7.56259 10.6954C7.90506 10.3504 8.31675 10.084 8.76952 9.91396C9.22227 9.74389 9.70581 9.67393 10.1874 9.70866C10.6691 9.7434 11.138 9.88205 11.5623 10.1155C11.9867 10.349 12.3568 10.672 12.6472 11.063C12.9766 11.5063 13.6029 11.5987 14.0463 11.2694C14.4896 10.9401 14.5821 10.3137 14.2528 9.87036C13.7917 9.24963 13.203 8.73549 12.5264 8.36322C11.8497 7.99093 11.1011 7.76936 10.3313 7.71385Z",
|
|
21
10
|
fill: "#4B5563"
|
|
22
11
|
})
|
|
23
|
-
})
|
|
12
|
+
});
|
|
24
13
|
};
|
|
25
14
|
Component.defaultProps = {
|
|
26
15
|
width: "24",
|
|
@@ -30,4 +19,4 @@ Component.defaultProps = {
|
|
|
30
19
|
xmlns: "http://www.w3.org/2000/svg"
|
|
31
20
|
};
|
|
32
21
|
Component.displayName = "link";
|
|
33
|
-
|
|
22
|
+
export default Component;
|
package/lib/Location.js
CHANGED
|
@@ -1,27 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
18
7
|
d: "M17.5101 4.44495C19.0706 5.97732 19.9631 8.04564 19.9989 10.2126C20.0347 12.3795 19.2109 14.4751 17.7018 16.0564L17.5101 16.2512L13.5029 20.1856C12.9945 20.6847 12.3119 20.9752 11.5935 20.9985C10.875 21.0217 10.1745 20.7759 9.63366 20.3109L9.49766 20.1856L5.48954 16.2502C3.89552 14.6848 3 12.5615 3 10.3476C3 8.13368 3.89552 6.01043 5.48954 4.44495C7.08357 2.87948 9.24554 2 11.4998 2C13.7541 2 15.9161 2.87948 17.5101 4.44495ZM11.4998 7.56508C11.1278 7.56508 10.7593 7.63705 10.4156 7.77689C10.0718 7.91672 9.75951 8.12168 9.49641 8.38006C9.23332 8.63844 9.02462 8.94518 8.88224 9.28277C8.73985 9.62037 8.66657 9.98219 8.66657 10.3476C8.66657 10.713 8.73985 11.0748 8.88224 11.4124C9.02462 11.75 9.23332 12.0568 9.49641 12.3151C9.75951 12.5735 10.0718 12.7785 10.4156 12.9183C10.7593 13.0581 11.1278 13.1301 11.4998 13.1301C12.2513 13.1301 12.9719 12.837 13.5032 12.3151C14.0346 11.7933 14.3331 11.0856 14.3331 10.3476C14.3331 9.60963 14.0346 8.90188 13.5032 8.38006C12.9719 7.85824 12.2513 7.56508 11.4998 7.56508Z",
|
|
19
8
|
stroke: "#4B5563",
|
|
20
9
|
strokeWidth: "2",
|
|
21
10
|
strokeLinecap: "round",
|
|
22
11
|
strokeLinejoin: "round"
|
|
23
12
|
})
|
|
24
|
-
})
|
|
13
|
+
});
|
|
25
14
|
};
|
|
26
15
|
Component.defaultProps = {
|
|
27
16
|
width: "24",
|
|
@@ -31,4 +20,4 @@ Component.defaultProps = {
|
|
|
31
20
|
xmlns: "http://www.w3.org/2000/svg"
|
|
32
21
|
};
|
|
33
22
|
Component.displayName = "location";
|
|
34
|
-
|
|
23
|
+
export default Component;
|
package/lib/LockIcon.js
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
18
7
|
d: "M11.7802 2.25C9.01277 2.25 6.76131 4.52104 6.76131 7.3125V10.35H5.75754C4.65038 10.35 3.75 11.2582 3.75 12.375V20.475C3.75 21.5918 4.65038 22.5 5.75754 22.5H17.8028C18.91 22.5 19.8103 21.5918 19.8103 20.475V12.375C19.8103 11.2582 18.91 10.35 17.8028 10.35H16.799V7.3125C16.799 4.52104 14.5476 2.25 11.7802 2.25ZM17.8028 12.375L17.8048 20.475H5.75754V12.375H17.8028ZM8.76886 10.35V7.3125C8.76886 5.63783 10.1199 4.275 11.7802 4.275C13.4404 4.275 14.7915 5.63783 14.7915 7.3125V10.35H8.76886Z"
|
|
19
8
|
})
|
|
20
|
-
})
|
|
9
|
+
});
|
|
21
10
|
};
|
|
22
11
|
Component.defaultProps = {
|
|
23
12
|
width: "24",
|
|
@@ -26,4 +15,4 @@ Component.defaultProps = {
|
|
|
26
15
|
xmlns: "http://www.w3.org/2000/svg"
|
|
27
16
|
};
|
|
28
17
|
Component.displayName = "lock";
|
|
29
|
-
|
|
18
|
+
export default Component;
|
package/lib/Log.js
CHANGED
|
@@ -1,26 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
18
7
|
fillRule: "evenodd",
|
|
19
8
|
clipRule: "evenodd",
|
|
20
9
|
d: "M8 3.20001H24C26.6464 3.20001 28.8 5.32481 28.8 8.00001C28.8 9.57121 28.2592 11.0928 27.5472 12.5088C26.8384 13.9152 25.9024 15.3216 25.016 16.6496L24.9984 16.6768C24.0896 18.0416 23.232 19.3312 22.5968 20.5904C21.96 21.8528 21.6 22.9808 21.6 24.008C21.6001 24.4226 21.7077 24.8301 21.9122 25.1908C22.1167 25.5515 22.4112 25.8531 22.7669 26.0661C23.1226 26.2791 23.5274 26.3964 23.9419 26.4064C24.3564 26.4164 24.7664 26.3189 25.132 26.1234C25.4976 25.9278 25.8063 25.6408 26.0281 25.2905C26.2498 24.9401 26.3769 24.5383 26.3971 24.1241C26.4174 23.71 26.3299 23.2977 26.1434 22.9274C25.9569 22.5571 25.6776 22.2415 25.3328 22.0112C25.0786 21.83 24.9049 21.5569 24.8488 21.2499C24.7926 20.9428 24.8583 20.6259 25.032 20.3665C25.2056 20.107 25.4735 19.9255 25.7788 19.8604C26.0841 19.7952 26.4028 19.8516 26.6672 20.0176C27.5232 20.5898 28.1724 21.4222 28.5191 22.3916C28.8659 23.3611 28.8916 24.4164 28.5927 25.4017C28.2937 26.387 27.6859 27.25 26.8589 27.8633C26.0319 28.4767 25.0296 28.8079 24 28.808H8C6.72696 28.808 5.50606 28.3023 4.60588 27.4021C3.70571 26.5019 3.2 25.281 3.2 24.008C3.2 21.4768 4.6256 18.992 6.0432 16.7984C6.37622 16.2853 6.70924 15.7834 7.03594 15.2909L7.04 15.2848C7.7968 14.1504 8.5168 13.0672 9.0992 12.008H7.216C6.2944 12.008 5.0064 11.7952 4.1648 10.7552C3.5584 10.0064 3.2 9.08161 3.2 8.00001C3.2 6.72697 3.70571 5.50607 4.60588 4.6059C5.50606 3.70572 6.72696 3.20001 8 3.20001ZM6.30294 6.30296C6.75303 5.85287 7.36348 5.60001 8 5.60001H19.8416C19.4336 6.30561 19.2 7.12641 19.2 8.00001C19.1963 8.54974 19.2962 9.09524 19.4944 9.60801H7.216C6.552 9.60801 6.1872 9.43681 6.032 9.24481C5.76 8.91041 5.6 8.51361 5.6 8.00001C5.6 7.36349 5.85285 6.75304 6.30294 6.30296ZM26.4 8.00001C26.4 6.65921 25.3296 5.60001 24 5.60001C23.3635 5.60001 22.753 5.85287 22.3029 6.30296C21.8529 6.75304 21.6 7.36349 21.6 8.00001C21.6 8.76161 21.9568 9.33441 22.6672 9.81121C22.8809 9.95442 23.0428 10.1625 23.1293 10.4047C23.2157 10.647 23.222 10.9106 23.1473 11.1567C23.0725 11.4029 22.9207 11.6184 22.7141 11.7717C22.5076 11.925 22.2572 12.0078 22 12.008H11.7888C11.0416 13.6128 9.9632 15.232 8.952 16.7488C8.89084 16.8409 8.82988 16.9325 8.76922 17.0236C8.52516 17.3903 8.28602 17.7497 8.0592 18.1008C6.608 20.3456 5.6 22.2736 5.6 24.008C5.6 24.6445 5.85285 25.255 6.30294 25.7051C6.75303 26.1552 7.36348 26.408 8 26.408H19.8416C19.4336 25.7024 19.2 24.8816 19.2 24.008C19.2 22.4416 19.7408 20.9232 20.4544 19.5088C21.16 18.1104 22.0912 16.712 22.9744 15.3872L23.0016 15.3456C23.9104 13.9808 24.7664 12.6928 25.4032 11.4288C26.04 10.1648 26.4 9.03361 26.4 8.00001ZM12.0042 15.4621C11.7819 15.6844 11.657 15.986 11.657 16.3004C11.657 16.6148 11.7819 16.9164 12.0042 17.1387C12.2265 17.361 12.5281 17.486 12.8425 17.486H19.1655C19.4799 17.486 19.7815 17.361 20.0038 17.1387C20.2261 16.9164 20.351 16.6148 20.351 16.3004C20.351 15.986 20.2261 15.6844 20.0038 15.4621C19.7815 15.2398 19.4799 15.1148 19.1655 15.1148H12.8425C12.5281 15.1148 12.2265 15.2398 12.0042 15.4621ZM9.2379 20.2043C9.46024 19.982 9.76179 19.8571 10.0762 19.8571H16.3992C16.7136 19.8571 17.0152 19.982 17.2375 20.2043C17.4598 20.4266 17.5847 20.7282 17.5847 21.0426C17.5847 21.3571 17.4598 21.6586 17.2375 21.8809C17.0152 22.1033 16.7136 22.2282 16.3992 22.2282H10.0762C9.76179 22.2282 9.46024 22.1033 9.2379 21.8809C9.01557 21.6586 8.89066 21.3571 8.89066 21.0426C8.89066 20.7282 9.01557 20.4266 9.2379 20.2043Z",
|
|
21
10
|
fill: "currentColor"
|
|
22
11
|
})
|
|
23
|
-
})
|
|
12
|
+
});
|
|
24
13
|
};
|
|
25
14
|
Component.defaultProps = {
|
|
26
15
|
width: "32",
|
|
@@ -30,4 +19,4 @@ Component.defaultProps = {
|
|
|
30
19
|
xmlns: "http://www.w3.org/2000/svg"
|
|
31
20
|
};
|
|
32
21
|
Component.displayName = "log";
|
|
33
|
-
|
|
22
|
+
export default Component;
|
package/lib/Meeting.js
CHANGED
|
@@ -1,34 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
11
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
12
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
13
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
14
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
15
|
-
var Component = function Component(props) {
|
|
16
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", _objectSpread(_objectSpread({}, props), {}, {
|
|
17
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
var Component = function (props) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
...props,
|
|
6
|
+
children: [/*#__PURE__*/_jsx("rect", {
|
|
18
7
|
width: "24",
|
|
19
8
|
height: "24",
|
|
20
9
|
fill: "url(#pattern0_80_4751)"
|
|
21
|
-
}), /*#__PURE__*/(
|
|
22
|
-
children: [/*#__PURE__*/(
|
|
10
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
11
|
+
children: [/*#__PURE__*/_jsx("pattern", {
|
|
23
12
|
id: "pattern0_80_4751",
|
|
24
13
|
patternContentUnits: "objectBoundingBox",
|
|
25
14
|
width: "1",
|
|
26
15
|
height: "1",
|
|
27
|
-
children: /*#__PURE__*/(
|
|
16
|
+
children: /*#__PURE__*/_jsx("use", {
|
|
28
17
|
xlinkHref: "#image0_80_4751",
|
|
29
18
|
transform: "scale(0.0138889)"
|
|
30
19
|
})
|
|
31
|
-
}), /*#__PURE__*/(
|
|
20
|
+
}), /*#__PURE__*/_jsx("image", {
|
|
32
21
|
id: "image0_80_4751",
|
|
33
22
|
width: "72",
|
|
34
23
|
height: "72",
|
|
@@ -36,7 +25,7 @@ var Component = function Component(props) {
|
|
|
36
25
|
xlinkHref: "data:image/png;base64,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"
|
|
37
26
|
})]
|
|
38
27
|
})]
|
|
39
|
-
})
|
|
28
|
+
});
|
|
40
29
|
};
|
|
41
30
|
Component.defaultProps = {
|
|
42
31
|
width: "24",
|
|
@@ -47,4 +36,4 @@ Component.defaultProps = {
|
|
|
47
36
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
48
37
|
};
|
|
49
38
|
Component.displayName = "meeting";
|
|
50
|
-
|
|
39
|
+
export default Component;
|