@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/ServerLogoNotext.js
CHANGED
|
@@ -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_426)"
|
|
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.9392ZM28.5464 23.0464C28.6641 22.6342 29.0408 22.3501 29.4695 22.3501H33.9707C34.3993 22.3501 34.776 22.6342 34.8938 23.0464L35.7504 26.0447L37.8696 27.2681L40.8945 26.5109C41.3103 26.4068 41.7447 26.591 41.959 26.9622L44.2096 30.8604C44.424 31.2316 44.3662 31.6998 44.0682 32.0079L41.8999 34.2489V36.6959L44.0682 38.9369C44.3662 39.245 44.424 39.7133 44.2096 40.0845L41.959 43.9827C41.7447 44.3539 41.3103 44.538 40.8945 44.4339L37.8696 43.6767L35.7504 44.9002L34.8938 47.8984C34.776 48.3106 34.3993 48.5947 33.9707 48.5947H29.4695C29.0408 48.5947 28.6641 48.3106 28.5464 47.8984L27.6897 44.9002L25.5706 43.6767L22.5457 44.4339C22.1299 44.538 21.6955 44.3539 21.4812 43.9827L19.2305 40.0845C19.0162 39.7133 19.0739 39.245 19.372 38.9369L21.5402 36.6959V34.2489L19.372 32.0079C19.0739 31.6998 19.0162 31.2316 19.2305 30.8604L21.4812 26.9622C21.6955 26.591 22.1299 26.4068 22.5457 26.5109L25.5706 27.2681L27.6897 26.0447L28.5464 23.0464ZM28.9861 27.5132C29.2018 27.3887 29.3607 27.1851 29.4292 26.9456L30.1936 24.2701H33.2466L34.011 26.9456C34.0794 27.1851 34.2383 27.3887 34.4541 27.5132L37.2459 29.1251C37.4617 29.2497 37.7174 29.2855 37.9591 29.225L40.6583 28.5493L42.1848 31.1932L40.25 33.193C40.0768 33.372 39.9799 33.6114 39.9799 33.8605V37.0843C39.9799 37.3334 40.0768 37.5728 40.25 37.7518L42.1848 39.7516L40.6583 42.3955L37.9591 41.7198C37.7174 41.6593 37.4617 41.6951 37.2459 41.8197L34.4541 43.4316C34.2383 43.5561 34.0794 43.7597 34.011 43.9992L33.2466 46.6747H30.1936L29.4292 43.9992C29.3607 43.7597 29.2018 43.5561 28.9861 43.4316L26.1942 41.8197C25.9785 41.6951 25.7228 41.6593 25.4811 41.7198L22.7819 42.3955L21.2554 39.7516L23.1902 37.7518C23.3634 37.5728 23.4602 37.3334 23.4602 37.0843V33.8605C23.4602 33.6114 23.3634 33.372 23.1902 33.193L21.2554 31.1932L22.7819 28.5493L25.4811 29.225C25.7228 29.2855 25.9785 29.2497 26.1942 29.1251L28.9861 27.5132ZM31.7201 41.6407C28.3134 41.6407 25.5517 38.8791 25.5517 35.4724C25.5517 32.0657 28.3134 29.3041 31.7201 29.3041C35.1268 29.3041 37.8884 32.0657 37.8884 35.4724C37.8884 38.8791 35.1268 41.6407 31.7201 41.6407ZM35.9684 35.4724C35.9684 37.8187 34.0664 39.7207 31.7201 39.7207C29.3738 39.7207 27.4717 37.8187 27.4717 35.4724C27.4717 33.1261 29.3738 31.2241 31.7201 31.2241C34.0664 31.2241 35.9684 33.1261 35.9684 35.4724Z",
|
|
26
15
|
fill: "url(#paint1_linear_615_426)"
|
|
27
|
-
}), /*#__PURE__*/(
|
|
28
|
-
children: [/*#__PURE__*/(
|
|
16
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
17
|
+
children: [/*#__PURE__*/_jsxs("linearGradient", {
|
|
29
18
|
id: "paint0_linear_615_426",
|
|
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_426",
|
|
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 = "server-logo-notext";
|
|
72
|
-
|
|
61
|
+
export default Component;
|
package/lib/Setting.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: "M19.9964 2.1685C19.2554 1.42 18.2384 1 17.1734 1H15.3209C14.2818 0.998495 13.2836 1.40519 12.5414 2.1325C11.8924 2.76894 11.4924 3.61645 11.4134 4.522L11.3999 4.813C11.3864 5.761 10.6199 6.499 9.68095 6.499C9.46795 6.4975 9.24595 6.448 9.04345 6.358L8.84245 6.253C6.96873 5.21755 4.61146 5.85465 3.51445 7.693L2.53945 9.2605C1.50604 10.9984 2.00888 13.2408 3.68545 14.371L3.91945 14.518C4.49095 14.842 4.81945 15.3985 4.81945 16C4.81945 16.5535 4.54195 17.0695 4.07845 17.3845L3.92245 17.4805C2.18532 18.4648 1.50957 20.6279 2.37745 22.426L2.50495 22.666L3.46045 24.283C3.97425 25.1774 4.82074 25.8325 5.81545 26.1055C6.70788 26.3537 7.6587 26.2853 8.50645 25.912L8.77195 25.7815C9.22195 25.528 9.68695 25.4665 10.1219 25.5805C10.5556 25.6927 10.9269 25.9728 11.1539 26.359C11.2728 26.5515 11.3485 26.7675 11.3759 26.992L11.3879 27.2125C11.3864 29.275 13.1474 31 15.3209 31H17.1734C19.2254 31 20.9294 29.4565 21.0959 27.4615L21.1079 27.205C21.0973 26.7456 21.274 26.3016 21.5974 25.9752C21.9207 25.6487 22.363 25.4678 22.8224 25.474C23.0475 25.4823 23.2689 25.5332 23.4749 25.624L23.6789 25.7275C25.4009 26.701 27.6584 26.2015 28.8194 24.5635L28.9694 24.3355L29.9594 22.72C30.4919 21.8245 30.6374 20.773 30.3674 19.7845C30.1289 18.9085 29.5829 18.145 28.8254 17.626L28.5764 17.4685C28.1414 17.221 27.8534 16.8565 27.7364 16.426C27.6202 15.9962 27.6835 15.5377 27.9119 15.1555C28.0352 14.9429 28.2043 14.7605 28.4069 14.6215L28.7924 14.383C30.3689 13.3343 30.9341 11.2858 30.1184 9.577L30.0329 9.4105C30.0149 9.367 29.9939 9.3235 29.9699 9.283L29.0489 7.7185C28.0259 5.9785 25.8134 5.3035 23.9684 6.1525L23.7224 6.277C23.2814 6.5305 22.8164 6.5935 22.3784 6.4825C21.9389 6.3715 21.5639 6.094 21.3359 5.7115C21.2174 5.5165 21.1454 5.3065 21.1199 5.0875L21.1064 4.867C21.1394 3.9235 20.7374 2.9155 19.9964 2.1685ZM15.3211 3.17149H17.1736C17.6366 3.17015 18.081 3.35374 18.4081 3.68149C18.7301 4.00489 18.9052 4.44629 18.8926 4.90249L18.9136 5.28199C18.9707 5.82381 19.1458 6.34655 19.4266 6.81349C19.96 7.69607 20.8204 8.33223 21.8206 8.58349C22.8278 8.84018 23.8955 8.69381 24.7966 8.17549L24.9511 8.09899L25.1191 8.03299C25.8864 7.79292 26.7182 8.11135 27.1291 8.80249L28.0066 10.295L28.0261 10.337L28.1311 10.538C28.4866 11.282 28.1896 12.224 27.4216 12.6635L27.1801 12.812C26.6686 13.16 26.2771 13.58 25.9921 14.069C25.4699 14.947 25.3265 15.9993 25.5946 16.985C25.8418 17.8851 26.408 18.6645 27.1876 19.178L27.5971 19.433C28.2914 19.9327 28.4887 20.8802 28.0516 21.6155L27.0856 23.1935L26.9761 23.36C26.5291 23.9885 25.6471 24.221 24.9031 23.9015L24.4291 23.6645C23.8996 23.432 23.3821 23.3165 22.8571 23.303C21.8068 23.2914 20.7947 23.6959 20.0416 24.428C19.3042 25.1464 18.8896 26.133 18.8926 27.1625L18.8836 27.3275C18.8146 28.1525 18.0706 28.8275 17.1736 28.8275H15.3226C14.4346 28.8275 13.7056 28.1705 13.6126 27.3275L13.5826 26.798C13.3971 25.2027 12.2499 23.8855 10.6951 23.483C9.68906 23.219 8.6197 23.3596 7.71606 23.8745L7.55256 23.9525C7.22856 24.0935 6.81156 24.1235 6.42156 24.0155C5.98206 23.8925 5.61006 23.6045 5.38956 23.2115L4.44456 21.617L4.36056 21.4565C4.00356 20.7155 4.30056 19.7735 5.06856 19.3385L5.30256 19.1945C6.40056 18.4505 7.03656 17.267 7.03656 15.9995C7.03243 14.7118 6.38222 13.5123 5.30556 12.806L4.91406 12.563C4.20922 12.0651 4.00548 11.109 4.44606 10.367L5.42106 8.79949C5.89975 7.97851 6.9475 7.69173 7.77756 8.15449L8.06556 8.30449C8.56824 8.53826 9.11472 8.663 9.66906 8.67049C11.7496 8.67049 13.4491 7.10449 13.6051 5.11249L13.6246 4.65349C13.6561 4.30999 13.8286 3.94249 14.1121 3.66349C14.4331 3.34849 14.8681 3.17149 15.3211 3.17149ZM16.254 11.0975C19.0185 11.0975 21.258 13.292 21.258 15.9995C21.258 18.707 19.0185 20.9015 16.254 20.9015C13.491 20.9015 11.25 18.707 11.25 15.9995C11.25 13.292 13.491 11.0975 16.254 11.0975ZM13.4671 16.0001C13.4671 14.4926 14.7151 13.2701 16.2541 13.2701C17.7931 13.2701 19.0411 14.4926 19.0411 16.0001C19.0411 17.5076 17.7931 18.7301 16.2541 18.7301C14.7151 18.7301 13.4671 17.5076 13.4671 16.0001Z",
|
|
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 = "setting";
|
|
33
|
-
|
|
22
|
+
export default Component;
|
package/lib/Store.js
CHANGED
|
@@ -1,24 +1,13 @@
|
|
|
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: "M30.4 12.0339V11.9785C30.394 11.9557 30.3894 11.9326 30.3862 11.9092V11.8677C30.3723 11.84 30.3723 11.8123 30.3585 11.7846V11.7569L28.3785 4.80617C28.242 4.34533 27.9612 3.94051 27.5773 3.65135C27.1934 3.36218 26.7268 3.20397 26.2462 3.20001H5.75385C5.27326 3.20397 4.80664 3.36218 4.42275 3.65135C4.03886 3.94051 3.758 4.34533 3.62154 4.80617L1.64154 11.7569V11.7846C1.6277 11.8123 1.6277 11.84 1.61385 11.8677V11.9092C1.61061 11.9326 1.60599 11.9557 1.60001 11.9785V14.2769C1.60001 15.1368 1.80019 15.9848 2.18472 16.7538C2.56924 17.5229 3.12754 18.1918 3.81539 18.7077V27.5692C3.81539 28.1568 4.0488 28.7203 4.46426 29.1358C4.87973 29.5512 5.44322 29.7846 6.03078 29.7846H25.9692C26.5568 29.7846 27.1203 29.5512 27.5357 29.1358C27.9512 28.7203 28.1846 28.1568 28.1846 27.5692V18.7077C28.8725 18.1918 29.4308 17.5229 29.8153 16.7538C30.1998 15.9848 30.4 15.1368 30.4 14.2769V12.0339ZM5.75385 5.4154H26.2462L27.8246 10.9539H4.17539L5.75385 5.4154ZM12.6769 13.1692H19.3231V14.2769C19.3231 15.1583 18.973 16.0035 18.3498 16.6267C17.7266 17.2499 16.8813 17.6 16 17.6C15.1187 17.6 14.2734 17.2499 13.6502 16.6267C13.027 16.0035 12.6769 15.1583 12.6769 14.2769V13.1692ZM10.4615 13.1692V14.2769C10.462 14.8485 10.3151 15.4104 10.035 15.9086C9.7549 16.4068 9.35103 16.8243 8.86244 17.1208C8.37384 17.4173 7.81704 17.5827 7.24582 17.6012C6.67459 17.6197 6.10827 17.4905 5.60154 17.2262C5.52495 17.1655 5.44126 17.1143 5.35231 17.0739C4.88111 16.775 4.49312 16.3619 4.22441 15.8729C3.9557 15.3839 3.815 14.8349 3.81539 14.2769V13.1692H10.4615ZM25.9692 27.5692H6.03078V19.7046C6.39569 19.7764 6.76657 19.8135 7.13847 19.8154C7.99829 19.8154 8.8463 19.6152 9.61534 19.2307C10.3844 18.8462 11.0533 18.2879 11.5692 17.6C12.0851 18.2879 12.7541 18.8462 13.5231 19.2307C14.2922 19.6152 15.1402 19.8154 16 19.8154C16.8598 19.8154 17.7078 19.6152 18.4769 19.2307C19.2459 18.8462 19.9149 18.2879 20.4308 17.6C20.9467 18.2879 21.6156 18.8462 22.3847 19.2307C23.1537 19.6152 24.0017 19.8154 24.8615 19.8154C25.2334 19.8135 25.6043 19.7764 25.9692 19.7046V27.5692ZM26.6477 17.0739C26.5587 17.1143 26.4751 17.1655 26.3985 17.2262C25.8917 17.4905 25.3254 17.6197 24.7542 17.6012C24.183 17.5827 23.6262 17.4173 23.1376 17.1208C22.649 16.8243 22.2451 16.4068 21.965 15.9086C21.6849 15.4104 21.538 14.8485 21.5385 14.2769V13.1692H28.1846V14.2769C28.185 14.8349 28.0443 15.3839 27.7756 15.8729C27.5069 16.3619 27.1189 16.775 26.6477 17.0739Z",
|
|
19
8
|
fill: "currentColor"
|
|
20
9
|
})
|
|
21
|
-
})
|
|
10
|
+
});
|
|
22
11
|
};
|
|
23
12
|
Component.defaultProps = {
|
|
24
13
|
width: "32",
|
|
@@ -28,4 +17,4 @@ Component.defaultProps = {
|
|
|
28
17
|
xmlns: "http://www.w3.org/2000/svg"
|
|
29
18
|
};
|
|
30
19
|
Component.displayName = "store";
|
|
31
|
-
|
|
20
|
+
export default Component;
|
package/lib/StoreLogo.js
CHANGED
|
@@ -1,85 +1,74 @@
|
|
|
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: "M49.152 10.6728L30.72 0L12.288 10.6728V24.8666L0 31.9817V53.3272L18.432 64L30.6902 56.9021L30.72 56.9194L30.7498 56.9021L43.008 64L61.44 53.3272V31.9817L49.152 24.8666V10.6728ZM59.52 33.0935L47.232 25.9783V11.7845L30.72 2.22349L14.208 11.7845V25.9783L1.92 33.0935V52.2155L18.432 61.7765L30.6902 54.6786L30.72 54.6959L30.7498 54.6786L43.008 61.7765L59.52 52.2155V33.0935Z",
|
|
21
10
|
fill: "url(#paint0_linear_615_417)"
|
|
22
|
-
}), /*#__PURE__*/(
|
|
11
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
23
12
|
fillRule: "evenodd",
|
|
24
13
|
clipRule: "evenodd",
|
|
25
14
|
d: "M49.1521 24.9031L30.7201 14.2303L12.2881 24.9031V46.2486L30.7201 56.9214L49.1521 46.2486V24.9031ZM14.2081 26.0149L30.7201 16.4538L47.2321 26.0149V45.1369L30.7201 54.6979L14.2081 45.1369V26.0149ZM31.6792 25.4251V27.5932C32.9471 26.2576 34.7371 25.4251 36.7209 25.4251H40.8562V29.5725C40.8562 31.5466 40.0392 33.3292 38.7257 34.5989H40.8562V45.7266H31.6792H29.7609H20.5839V36.5528V34.5989V25.4251H31.6792ZM22.5039 27.3507V34.6272H29.7593V27.3507H22.5039ZM36.7209 27.3507H38.9362V29.5725C38.9362 32.3641 36.6798 34.6272 33.8962 34.6272H31.6809V32.4054C31.6809 29.6138 33.9374 27.3507 36.7209 27.3507ZM22.5039 43.801H29.7593V36.5245H22.5039V43.801ZM31.6809 43.801V36.5245H38.9362V43.801H31.6809Z",
|
|
26
15
|
fill: "url(#paint1_linear_615_417)"
|
|
27
|
-
}), /*#__PURE__*/(
|
|
16
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
28
17
|
fillRule: "evenodd",
|
|
29
18
|
clipRule: "evenodd",
|
|
30
19
|
d: "M80.0049 26.0697V10.0292H87.7418C89.8347 10.0292 91.5313 11.7307 91.5313 13.8297V14.9825C91.5313 15.9928 91.1382 16.9109 90.4972 17.5917C91.6333 18.2479 92.3982 19.4781 92.3982 20.8874V22.2692C92.3982 24.3681 90.7016 26.0697 88.6087 26.0697H80.0049ZM81.6893 17.0868H87.9154C88.997 16.9984 89.8473 16.09 89.8473 14.9825V13.8297C89.8473 12.6636 88.9047 11.7183 87.742 11.7183H81.6893V17.0868ZM81.6893 24.3806V18.7831L88.609 18.776C89.7717 18.776 90.7142 19.7213 90.7142 20.8874V22.2692C90.7142 23.4353 89.7717 24.3806 88.609 24.3806H81.6893ZM97.2554 10.0292V26.0697H95.4933V10.0292H97.2554ZM105.988 14.3604H104.161C102.056 14.3604 100.35 16.0714 100.35 18.1821V22.248C100.35 24.3587 102.056 26.0697 104.161 26.0697H105.988C108.092 26.0697 109.799 24.3587 109.799 22.248V18.1821C109.799 16.0714 108.092 14.3604 105.988 14.3604ZM104.161 16.1277C103.03 16.1277 102.112 17.0475 102.112 18.1821V22.2481C102.112 23.3827 103.03 24.3025 104.161 24.3025H105.988C107.119 24.3025 108.036 23.3827 108.036 22.2481V18.1821C108.036 17.0475 107.119 16.1277 105.988 16.1277H104.161ZM125.204 26.0758V20.3055H127.352L130.674 26.0758H132.709L128.888 19.4384L131.881 14.2395H129.846L127.372 18.5382H125.204V10.0292H123.442V26.0758H125.204ZM119.648 18.4946V18.1821C119.648 17.0475 118.731 16.1277 117.6 16.1277H115.773C114.641 16.1277 113.724 17.0475 113.724 18.1821V22.248C113.724 23.3826 114.641 24.3024 115.773 24.3024H117.6C118.731 24.3024 119.648 23.3826 119.648 22.248V21.9355H121.41V22.248C121.41 24.3587 119.704 26.0697 117.6 26.0697H115.773C113.668 26.0697 111.962 24.3587 111.962 22.248V18.1821C111.962 16.0714 113.668 14.3604 115.773 14.3604H117.6C119.704 14.3604 121.41 16.0714 121.41 18.1821V18.4946H119.648ZM137.566 26.0697V10.0292H135.804V26.0697H137.566ZM142.555 20.6977V22.248C142.555 23.3826 143.472 24.3024 144.604 24.3024H146.431C147.562 24.3024 148.479 23.3826 148.479 22.248V21.9355H150.241V22.248C150.241 24.3587 148.535 26.0697 146.431 26.0697H144.604C142.499 26.0697 140.793 24.3587 140.793 22.248V18.1821C140.793 16.0714 142.499 14.3604 144.604 14.3604H146.431C148.535 14.3604 150.241 16.0714 150.241 18.1821V18.9305H150.242V20.6977H142.555ZM148.479 18.9305H142.555V18.1821C142.555 17.0475 143.472 16.1277 144.604 16.1277H146.431C147.562 16.1277 148.479 17.0475 148.479 18.1821V18.9305ZM153.968 17.0127H152.4V15.2454H153.968V12.3894H155.652V15.2454H159.729V17.0127H155.652V22.7064C155.652 23.631 156.399 24.3806 157.321 24.3806C158.243 24.3806 158.991 23.631 158.991 22.7064V22.3548H160.675V22.7064C160.675 24.5639 159.174 26.0697 157.321 26.0697C155.469 26.0697 153.968 24.5639 153.968 22.7064V17.0127Z",
|
|
31
20
|
fill: "#121319"
|
|
32
|
-
}), /*#__PURE__*/(
|
|
21
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
33
22
|
d: "M91.034 36.5197C90.922 36.7157 90.8007 36.8603 90.67 36.9537C90.5487 37.0377 90.3947 37.0797 90.208 37.0797C90.012 37.0797 89.7973 37.0097 89.564 36.8697C89.34 36.7203 89.0693 36.557 88.752 36.3797C88.4347 36.2023 88.0613 36.0437 87.632 35.9037C87.212 35.7543 86.7127 35.6797 86.134 35.6797C85.6113 35.6797 85.154 35.745 84.762 35.8757C84.37 35.997 84.0387 36.1697 83.768 36.3937C83.5067 36.6177 83.3107 36.8883 83.18 37.2057C83.0493 37.5137 82.984 37.8543 82.984 38.2277C82.984 38.7037 83.1147 39.1003 83.376 39.4177C83.6467 39.735 84.0013 40.0057 84.44 40.2297C84.8787 40.4537 85.378 40.6543 85.938 40.8317C86.498 41.009 87.072 41.2003 87.66 41.4057C88.248 41.6017 88.822 41.835 89.382 42.1057C89.942 42.367 90.4413 42.703 90.88 43.1137C91.3187 43.515 91.6687 44.0097 91.93 44.5977C92.2007 45.1857 92.336 45.8997 92.336 46.7397C92.336 47.6543 92.1773 48.513 91.86 49.3157C91.552 50.109 91.0947 50.8043 90.488 51.4017C89.8907 51.9897 89.158 52.4563 88.29 52.8017C87.422 53.1377 86.428 53.3057 85.308 53.3057C84.664 53.3057 84.0293 53.2403 83.404 53.1097C82.7787 52.9883 82.1767 52.811 81.598 52.5777C81.0287 52.3443 80.492 52.0643 79.988 51.7377C79.484 51.411 79.036 51.047 78.644 50.6457L79.75 48.8397C79.8433 48.709 79.9647 48.6017 80.114 48.5177C80.2633 48.4243 80.422 48.3777 80.59 48.3777C80.8233 48.3777 81.0753 48.4757 81.346 48.6717C81.6167 48.8583 81.9387 49.0683 82.312 49.3017C82.6853 49.535 83.1193 49.7497 83.614 49.9457C84.118 50.1323 84.72 50.2257 85.42 50.2257C86.4933 50.2257 87.324 49.9737 87.912 49.4697C88.5 48.9563 88.794 48.2237 88.794 47.2717C88.794 46.7397 88.6587 46.3057 88.388 45.9697C88.1267 45.6337 87.7767 45.3537 87.338 45.1297C86.8993 44.8963 86.4 44.7003 85.84 44.5417C85.28 44.383 84.7107 44.2103 84.132 44.0237C83.5533 43.837 82.984 43.613 82.424 43.3517C81.864 43.0903 81.3647 42.7497 80.926 42.3297C80.4873 41.9097 80.1327 41.387 79.862 40.7617C79.6007 40.127 79.47 39.3477 79.47 38.4237C79.47 37.6863 79.6147 36.9677 79.904 36.2677C80.2027 35.5677 80.632 34.947 81.192 34.4057C81.752 33.8643 82.4427 33.4303 83.264 33.1037C84.0853 32.777 85.028 32.6137 86.092 32.6137C87.2867 32.6137 88.388 32.8003 89.396 33.1737C90.404 33.547 91.2627 34.0697 91.972 34.7417L91.034 36.5197Z",
|
|
34
23
|
fill: "#121319"
|
|
35
|
-
}), /*#__PURE__*/(
|
|
24
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
36
25
|
d: "M99.2343 53.3057C97.9836 53.3057 97.0223 52.9557 96.3503 52.2557C95.6876 51.5463 95.3563 50.571 95.3563 49.3297V41.3077H93.8863C93.6996 41.3077 93.5409 41.247 93.4103 41.1257C93.2796 41.0043 93.2143 40.8223 93.2143 40.5797V39.2077L95.5243 38.8297L96.2523 34.9097C96.2989 34.723 96.3876 34.5783 96.5183 34.4757C96.6489 34.373 96.8169 34.3217 97.0223 34.3217H98.8143V38.8437H102.65V41.3077H98.8143V49.0917C98.8143 49.5397 98.9216 49.8897 99.1363 50.1417C99.3603 50.3937 99.6636 50.5197 100.046 50.5197C100.261 50.5197 100.438 50.4963 100.578 50.4497C100.728 50.3937 100.854 50.3377 100.956 50.2817C101.068 50.2257 101.166 50.1743 101.25 50.1277C101.334 50.0717 101.418 50.0437 101.502 50.0437C101.605 50.0437 101.689 50.0717 101.754 50.1277C101.82 50.1743 101.89 50.249 101.964 50.3517L103 52.0317C102.496 52.4517 101.918 52.769 101.264 52.9837C100.611 53.1983 99.9343 53.3057 99.2343 53.3057Z",
|
|
37
26
|
fill: "#121319"
|
|
38
|
-
}), /*#__PURE__*/(
|
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
28
|
d: "M111.111 38.4937C112.175 38.4937 113.141 38.6663 114.009 39.0117C114.886 39.357 115.633 39.847 116.249 40.4817C116.874 41.1163 117.355 41.891 117.691 42.8057C118.027 43.7203 118.195 44.7423 118.195 45.8717C118.195 47.0103 118.027 48.037 117.691 48.9517C117.355 49.8663 116.874 50.6457 116.249 51.2897C115.633 51.9337 114.886 52.4283 114.009 52.7737C113.141 53.119 112.175 53.2917 111.111 53.2917C110.038 53.2917 109.062 53.119 108.185 52.7737C107.308 52.4283 106.556 51.9337 105.931 51.2897C105.315 50.6457 104.834 49.8663 104.489 48.9517C104.153 48.037 103.985 47.0103 103.985 45.8717C103.985 44.7423 104.153 43.7203 104.489 42.8057C104.834 41.891 105.315 41.1163 105.931 40.4817C106.556 39.847 107.308 39.357 108.185 39.0117C109.062 38.6663 110.038 38.4937 111.111 38.4937ZM111.111 50.6317C112.306 50.6317 113.188 50.2303 113.757 49.4277C114.336 48.625 114.625 47.449 114.625 45.8997C114.625 44.3503 114.336 43.1697 113.757 42.3577C113.188 41.5457 112.306 41.1397 111.111 41.1397C109.898 41.1397 108.997 41.5503 108.409 42.3717C107.83 43.1837 107.541 44.3597 107.541 45.8997C107.541 47.4397 107.83 48.6157 108.409 49.4277C108.997 50.2303 109.898 50.6317 111.111 50.6317Z",
|
|
40
29
|
fill: "#121319"
|
|
41
|
-
}), /*#__PURE__*/(
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
42
31
|
d: "M124.095 41.2097C124.543 40.351 125.075 39.679 125.691 39.1937C126.307 38.699 127.035 38.4517 127.875 38.4517C128.538 38.4517 129.07 38.5963 129.471 38.8857L129.247 41.4757C129.2 41.6437 129.13 41.765 129.037 41.8397C128.953 41.905 128.836 41.9377 128.687 41.9377C128.547 41.9377 128.337 41.9143 128.057 41.8677C127.786 41.821 127.52 41.7977 127.259 41.7977C126.876 41.7977 126.536 41.8537 126.237 41.9657C125.938 42.0777 125.668 42.241 125.425 42.4557C125.192 42.661 124.982 42.913 124.795 43.2117C124.618 43.5103 124.45 43.851 124.291 44.2337V53.0817H120.833V38.7177H122.863C123.218 38.7177 123.465 38.783 123.605 38.9137C123.745 39.035 123.838 39.259 123.885 39.5857L124.095 41.2097Z",
|
|
43
32
|
fill: "#121319"
|
|
44
|
-
}), /*#__PURE__*/(
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
45
34
|
d: "M140.122 44.2477C140.122 43.7997 140.057 43.3797 139.926 42.9877C139.805 42.5863 139.618 42.2363 139.366 41.9377C139.114 41.639 138.792 41.4057 138.4 41.2377C138.017 41.0603 137.569 40.9717 137.056 40.9717C136.057 40.9717 135.269 41.2563 134.69 41.8257C134.121 42.395 133.757 43.2023 133.598 44.2477H140.122ZM133.528 46.3337C133.584 47.071 133.715 47.7103 133.92 48.2517C134.125 48.7837 134.396 49.227 134.732 49.5817C135.068 49.927 135.465 50.1883 135.922 50.3657C136.389 50.5337 136.902 50.6177 137.462 50.6177C138.022 50.6177 138.503 50.5523 138.904 50.4217C139.315 50.291 139.669 50.1463 139.968 49.9877C140.276 49.829 140.542 49.6843 140.766 49.5537C140.999 49.423 141.223 49.3577 141.438 49.3577C141.727 49.3577 141.942 49.465 142.082 49.6797L143.076 50.9397C142.693 51.3877 142.264 51.7657 141.788 52.0737C141.312 52.3723 140.813 52.615 140.29 52.8017C139.777 52.979 139.249 53.105 138.708 53.1797C138.176 53.2543 137.658 53.2917 137.154 53.2917C136.155 53.2917 135.227 53.1283 134.368 52.8017C133.509 52.4657 132.763 51.9757 132.128 51.3317C131.493 50.6783 130.994 49.8757 130.63 48.9237C130.266 47.9623 130.084 46.8517 130.084 45.5917C130.084 44.6117 130.243 43.6923 130.56 42.8337C130.877 41.9657 131.33 41.2143 131.918 40.5797C132.515 39.9357 133.239 39.427 134.088 39.0537C134.947 38.6803 135.913 38.4937 136.986 38.4937C137.891 38.4937 138.727 38.6383 139.492 38.9277C140.257 39.217 140.915 39.6417 141.466 40.2017C142.017 40.7523 142.446 41.4337 142.754 42.2457C143.071 43.0483 143.23 43.9677 143.23 45.0037C143.23 45.5263 143.174 45.881 143.062 46.0677C142.95 46.245 142.735 46.3337 142.418 46.3337H133.528Z",
|
|
46
35
|
fill: "#121319"
|
|
47
|
-
}), /*#__PURE__*/(
|
|
48
|
-
children: [/*#__PURE__*/(
|
|
36
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
37
|
+
children: [/*#__PURE__*/_jsxs("linearGradient", {
|
|
49
38
|
id: "paint0_linear_615_417",
|
|
50
39
|
x1: "30.72",
|
|
51
40
|
y1: "96",
|
|
52
41
|
x2: "94.6667",
|
|
53
42
|
y2: "34.6112",
|
|
54
43
|
gradientUnits: "userSpaceOnUse",
|
|
55
|
-
children: [/*#__PURE__*/(
|
|
44
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
56
45
|
stopColor: "#0FA4B7"
|
|
57
|
-
}), /*#__PURE__*/(
|
|
46
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
58
47
|
offset: "0.494757",
|
|
59
48
|
stopColor: "#1DC1C7"
|
|
60
|
-
}), /*#__PURE__*/(
|
|
49
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
61
50
|
offset: "1",
|
|
62
51
|
stopColor: "#2BE0D7"
|
|
63
52
|
})]
|
|
64
|
-
}), /*#__PURE__*/(
|
|
53
|
+
}), /*#__PURE__*/_jsxs("linearGradient", {
|
|
65
54
|
id: "paint1_linear_615_417",
|
|
66
55
|
x1: "27.4374",
|
|
67
56
|
y1: "99.5359",
|
|
68
57
|
x2: "97.9143",
|
|
69
58
|
y2: "45.2669",
|
|
70
59
|
gradientUnits: "userSpaceOnUse",
|
|
71
|
-
children: [/*#__PURE__*/(
|
|
60
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
72
61
|
stopColor: "#0FA4B7"
|
|
73
|
-
}), /*#__PURE__*/(
|
|
62
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
74
63
|
offset: "0.494757",
|
|
75
64
|
stopColor: "#1DC1C7"
|
|
76
|
-
}), /*#__PURE__*/(
|
|
65
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
77
66
|
offset: "1",
|
|
78
67
|
stopColor: "#2BE0D7"
|
|
79
68
|
})]
|
|
80
69
|
})]
|
|
81
70
|
})]
|
|
82
|
-
})
|
|
71
|
+
});
|
|
83
72
|
};
|
|
84
73
|
Component.defaultProps = {
|
|
85
74
|
width: "170",
|
|
@@ -89,4 +78,4 @@ Component.defaultProps = {
|
|
|
89
78
|
xmlns: "http://www.w3.org/2000/svg"
|
|
90
79
|
};
|
|
91
80
|
Component.displayName = "store-logo";
|
|
92
|
-
|
|
81
|
+
export default Component;
|
package/lib/StoreLogoBg.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_430)"
|
|
25
|
-
}), /*#__PURE__*/(
|
|
14
|
+
}), /*#__PURE__*/_jsx("mask", {
|
|
26
15
|
id: "mask0_615_430",
|
|
27
16
|
style: {
|
|
28
17
|
maskType: "alpha"
|
|
@@ -32,62 +21,62 @@ 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_430)",
|
|
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-15.8048 -14.9268L59.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.519V-12.878L59.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.6831L31.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.43L59.7664 92.6593L59.8118 92.6855L59.8572 92.6593L78.5135 103.43L103.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: "M45.2767 61.997V49.1617H58.112V61.997H45.2767ZM70.4278 49.1617H74.3469V53.0808C74.3469 58.0051 70.355 61.997 65.4307 61.997H61.5116V58.0779C61.5116 53.1536 65.5035 49.1617 70.4278 49.1617ZM45.2767 78.179H58.112V65.3437H45.2767V78.179ZM61.5116 78.179V65.3437H74.3469V78.179H61.5116Z",
|
|
70
59
|
fill: "white"
|
|
71
|
-
}), /*#__PURE__*/(
|
|
72
|
-
children: /*#__PURE__*/(
|
|
60
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
61
|
+
children: /*#__PURE__*/_jsxs("linearGradient", {
|
|
73
62
|
id: "paint0_linear_615_430",
|
|
74
63
|
x1: "59.9415",
|
|
75
64
|
y1: "179.824",
|
|
76
65
|
x2: "179.824",
|
|
77
66
|
y2: "59.9415",
|
|
78
67
|
gradientUnits: "userSpaceOnUse",
|
|
79
|
-
children: [/*#__PURE__*/(
|
|
68
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
80
69
|
stopColor: "#0FA4B7"
|
|
81
|
-
}), /*#__PURE__*/(
|
|
70
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
82
71
|
offset: "0.494757",
|
|
83
72
|
stopColor: "#1DC1C7"
|
|
84
|
-
}), /*#__PURE__*/(
|
|
73
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
85
74
|
offset: "1",
|
|
86
75
|
stopColor: "#2BE0D7"
|
|
87
76
|
})]
|
|
88
77
|
})
|
|
89
78
|
})]
|
|
90
|
-
})
|
|
79
|
+
});
|
|
91
80
|
};
|
|
92
81
|
Component.defaultProps = {
|
|
93
82
|
width: "120",
|
|
@@ -97,4 +86,4 @@ Component.defaultProps = {
|
|
|
97
86
|
xmlns: "http://www.w3.org/2000/svg"
|
|
98
87
|
};
|
|
99
88
|
Component.displayName = "store-logo-bg";
|
|
100
|
-
|
|
89
|
+
export default Component;
|
package/lib/StoreLogoNotext.js
CHANGED
|
@@ -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_427)"
|
|
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.9392ZM32.6792 25.3512V27.5129C33.9471 26.1812 35.7371 25.3512 37.7209 25.3512H41.8562V29.4865C41.8562 31.4548 41.0392 33.2323 39.7257 34.4983H41.8562V45.5936H32.6792H30.7609H21.5839V36.4465V34.4983V25.3512H32.6792ZM23.5039 27.2712V34.5265H30.7593V27.2712H23.5039ZM37.7209 27.2712H39.9362V29.4865C39.9362 32.27 37.6797 34.5265 34.8962 34.5265H32.6809V32.3112C32.6809 29.5277 34.9374 27.2712 37.7209 27.2712ZM23.5039 43.6736H30.7593V36.4183H23.5039V43.6736ZM32.6809 43.6736V36.4183H39.9362V43.6736H32.6809Z",
|
|
26
15
|
fill: "url(#paint1_linear_615_427)"
|
|
27
|
-
}), /*#__PURE__*/(
|
|
28
|
-
children: [/*#__PURE__*/(
|
|
16
|
+
}), /*#__PURE__*/_jsxs("defs", {
|
|
17
|
+
children: [/*#__PURE__*/_jsxs("linearGradient", {
|
|
29
18
|
id: "paint0_linear_615_427",
|
|
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_427",
|
|
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 = "store-logo-notext";
|
|
72
|
-
|
|
61
|
+
export default Component;
|
package/lib/Subtract.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: "M18.6158 12.1582C18.6158 12.7105 18.1681 13.1582 17.6158 13.1582L6.7002 13.1582C6.14791 13.1582 5.7002 12.7105 5.7002 12.1582C5.7002 11.6059 6.14791 11.1582 6.7002 11.1582L17.6158 11.1582C18.1681 11.1582 18.6158 11.6059 18.6158 12.1582Z",
|
|
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 = "subtract";
|
|
33
|
-
|
|
22
|
+
export default Component;
|
package/lib/Switch.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: "M11.8904 7L9.89043 4.5L9.10957 5.12469L10.4597 6.81235H4V7.81235H11.5C11.6922 7.81235 11.8674 7.70217 11.9507 7.52894C12.0339 7.35571 12.0105 7.15008 11.8904 7ZM4.60957 10.6247L6.60957 13.1247L7.39043 12.5L6.04031 10.8123L12.5 10.8123V9.81235L5 9.81235C4.8078 9.81235 4.63261 9.92252 4.54935 10.0958C4.46609 10.269 4.4895 10.4746 4.60957 10.6247Z",
|
|
21
10
|
fill: "#18181B"
|
|
22
11
|
})
|
|
23
|
-
})
|
|
12
|
+
});
|
|
24
13
|
};
|
|
25
14
|
Component.defaultProps = {
|
|
26
15
|
width: "16",
|
|
@@ -30,4 +19,4 @@ Component.defaultProps = {
|
|
|
30
19
|
xmlns: "http://www.w3.org/2000/svg"
|
|
31
20
|
};
|
|
32
21
|
Component.displayName = "switch";
|
|
33
|
-
|
|
22
|
+
export default Component;
|