@dynamic-labs/sdk-react-core 3.0.0-alpha.41 → 3.0.0-alpha.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.cjs +2 -2
- package/package.js +2 -2
- package/package.json +13 -13
- package/src/lib/components/AuthProviderIcon/AuthProviderIcon.cjs +2 -2
- package/src/lib/components/AuthProviderIcon/AuthProviderIcon.js +2 -2
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.cjs +11 -0
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.d.ts +2 -0
- package/src/lib/components/MfaDeviceTileSkeleton/MfaDeviceTileSkeleton.js +7 -0
- package/src/lib/components/MfaDeviceTileSkeleton/index.d.ts +1 -0
- package/src/lib/components/UserProfile/parts/UserProfileSection/UserProfileSection.cjs +1 -1
- package/src/lib/components/UserProfile/parts/UserProfileSection/UserProfileSection.js +1 -1
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +0 -6
- package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +0 -6
- package/src/lib/locale/en/translation.cjs +2 -2
- package/src/lib/locale/en/translation.d.ts +1 -1
- package/src/lib/locale/en/translation.js +2 -2
- package/src/lib/shared/assets/profile-outline.cjs +5 -5
- package/src/lib/shared/assets/profile-outline.js +5 -5
- package/src/lib/shared/assets/settings-outline.cjs +5 -5
- package/src/lib/shared/assets/settings-outline.js +5 -5
- package/src/lib/shared/assets/wallet-outline-v2.cjs +5 -5
- package/src/lib/shared/assets/wallet-outline-v2.js +5 -5
- package/src/lib/styles/index.shadow.cjs +1 -1
- package/src/lib/styles/index.shadow.js +1 -1
- package/src/lib/utils/hooks/useTransferWallet/index.d.ts +1 -0
- package/src/lib/views/NoQrNotInstalledView/WalletHelpLink.d.ts +9 -0
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.cjs +85 -1
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.d.ts +0 -1
- package/src/lib/widgets/DynamicWidget/components/BottomNavBar/BottomNavBar.js +85 -1
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetWallets/DynamicWidgetWallets.cjs +1 -1
- package/src/lib/widgets/DynamicWidget/components/DynamicWidgetWallets/DynamicWidgetWallets.js +1 -1
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.cjs +7 -4
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.d.ts +0 -2
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/ManageMfaWidgetView.js +8 -4
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.cjs +4 -3
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.d.ts +1 -1
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/UserDeviceTile.js +4 -3
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.cjs +23 -0
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.d.ts +4 -0
- package/src/lib/widgets/DynamicWidget/views/ManageMfaWidgetView/components/utils/sort.js +17 -0
- package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.cjs +1 -2
- package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.js +1 -2
- package/src/lib/shared/assets/profile.cjs +0 -65
- package/src/lib/shared/assets/profile.js +0 -41
- package/src/lib/shared/assets/settings.cjs +0 -54
- package/src/lib/shared/assets/settings.js +0 -30
- package/src/lib/shared/assets/wallet.cjs +0 -52
- package/src/lib/shared/assets/wallet.js +0 -28
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
|
|
4
|
-
var _g, _defs;
|
|
5
|
-
var _excluded = ["title", "titleId"];
|
|
6
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
7
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9
|
-
var SvgProfile = function SvgProfile(_ref) {
|
|
10
|
-
var title = _ref.title,
|
|
11
|
-
titleId = _ref.titleId,
|
|
12
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width: 29,
|
|
15
|
-
height: 28,
|
|
16
|
-
viewBox: "0 0 29 28",
|
|
17
|
-
fill: "none",
|
|
18
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
-
"aria-labelledby": titleId
|
|
20
|
-
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
21
|
-
id: titleId
|
|
22
|
-
}, title) : null, _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
23
|
-
clipPath: "url(#profile_svg__a)"
|
|
24
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
25
|
-
fillRule: "evenodd",
|
|
26
|
-
clipRule: "evenodd",
|
|
27
|
-
d: "M24.095 22.523A12.785 12.785 0 0 0 27.333 14c0-7.088-5.745-12.833-12.833-12.833S1.667 6.912 1.667 14c0 3.271 1.224 6.257 3.24 8.524 2.414-2.901 7.001-3.94 9.793-3.94 2.793 0 6.984.832 9.395 3.939ZM9.688 10.792a4.812 4.812 0 1 1 9.624 0 4.812 4.812 0 0 1-9.625 0Z",
|
|
28
|
-
fill: "#383C48"
|
|
29
|
-
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
30
|
-
id: "profile_svg__a"
|
|
31
|
-
}, /*#__PURE__*/React.createElement("rect", {
|
|
32
|
-
x: 1.667,
|
|
33
|
-
y: 1.167,
|
|
34
|
-
width: 25.667,
|
|
35
|
-
height: 25.667,
|
|
36
|
-
rx: 12.833,
|
|
37
|
-
fill: "#fff"
|
|
38
|
-
})))));
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export { SvgProfile as ReactComponent };
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
'use strict';
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
-
|
|
6
|
-
var React = require('react');
|
|
7
|
-
|
|
8
|
-
function _interopNamespace(e) {
|
|
9
|
-
if (e && e.__esModule) return e;
|
|
10
|
-
var n = Object.create(null);
|
|
11
|
-
if (e) {
|
|
12
|
-
Object.keys(e).forEach(function (k) {
|
|
13
|
-
if (k !== 'default') {
|
|
14
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
-
enumerable: true,
|
|
17
|
-
get: function () { return e[k]; }
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
n["default"] = e;
|
|
23
|
-
return Object.freeze(n);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
-
|
|
28
|
-
var _path;
|
|
29
|
-
var _excluded = ["title", "titleId"];
|
|
30
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
31
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
32
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
33
|
-
var SvgSettings = function SvgSettings(_ref) {
|
|
34
|
-
var title = _ref.title,
|
|
35
|
-
titleId = _ref.titleId,
|
|
36
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
-
width: 29,
|
|
39
|
-
height: 28,
|
|
40
|
-
viewBox: "0 0 29 28",
|
|
41
|
-
fill: "none",
|
|
42
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
-
"aria-labelledby": titleId
|
|
44
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
45
|
-
id: titleId
|
|
46
|
-
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
|
-
fillRule: "evenodd",
|
|
48
|
-
clipRule: "evenodd",
|
|
49
|
-
d: "M22.227 18.2a1.75 1.75 0 0 1 .121-1.018 1.75 1.75 0 0 1 1.602-1.06h.095a2.121 2.121 0 0 0 0-4.243h-.18a1.75 1.75 0 0 1-1.584-1.023.192.192 0 0 1-.017-.08.217.217 0 0 0-.017-.082 1.75 1.75 0 0 1 .367-1.891l.063-.064a2.12 2.12 0 0 0-.688-3.462 2.121 2.121 0 0 0-2.313.46l-.064.064a1.75 1.75 0 0 1-1.93.35 1.75 1.75 0 0 1-1.06-1.601v-.095a2.121 2.121 0 0 0-4.243 0v.18a1.75 1.75 0 0 1-1.023 1.584.193.193 0 0 1-.08.017.217.217 0 0 0-.082.017 1.75 1.75 0 0 1-1.891-.367l-.064-.063a2.121 2.121 0 0 0-3.462 2.313c.107.257.264.491.46.688l.064.064a1.75 1.75 0 0 1 .35 1.93 1.75 1.75 0 0 1-1.601 1.146h-.096a2.121 2.121 0 0 0 0 4.242h.18a1.75 1.75 0 0 1 1.602 1.06 1.75 1.75 0 0 1-.35 1.93l-.063.065a2.12 2.12 0 0 0 1.5 3.623 2.12 2.12 0 0 0 1.501-.622l.064-.064a1.75 1.75 0 0 1 1.93-.35 1.75 1.75 0 0 1 1.146 1.602v.095a2.121 2.121 0 1 0 4.242 0v-.18a1.75 1.75 0 0 1 1.06-1.601 1.75 1.75 0 0 1 1.93.35l.064.063a2.123 2.123 0 1 0 3.002-3.001l-.064-.064a1.75 1.75 0 0 1-.47-.911ZM18 14a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z",
|
|
50
|
-
fill: "#383C48"
|
|
51
|
-
})));
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
exports.ReactComponent = SvgSettings;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
|
|
4
|
-
var _path;
|
|
5
|
-
var _excluded = ["title", "titleId"];
|
|
6
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
7
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9
|
-
var SvgSettings = function SvgSettings(_ref) {
|
|
10
|
-
var title = _ref.title,
|
|
11
|
-
titleId = _ref.titleId,
|
|
12
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width: 29,
|
|
15
|
-
height: 28,
|
|
16
|
-
viewBox: "0 0 29 28",
|
|
17
|
-
fill: "none",
|
|
18
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
-
"aria-labelledby": titleId
|
|
20
|
-
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
21
|
-
id: titleId
|
|
22
|
-
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
|
-
fillRule: "evenodd",
|
|
24
|
-
clipRule: "evenodd",
|
|
25
|
-
d: "M22.227 18.2a1.75 1.75 0 0 1 .121-1.018 1.75 1.75 0 0 1 1.602-1.06h.095a2.121 2.121 0 0 0 0-4.243h-.18a1.75 1.75 0 0 1-1.584-1.023.192.192 0 0 1-.017-.08.217.217 0 0 0-.017-.082 1.75 1.75 0 0 1 .367-1.891l.063-.064a2.12 2.12 0 0 0-.688-3.462 2.121 2.121 0 0 0-2.313.46l-.064.064a1.75 1.75 0 0 1-1.93.35 1.75 1.75 0 0 1-1.06-1.601v-.095a2.121 2.121 0 0 0-4.243 0v.18a1.75 1.75 0 0 1-1.023 1.584.193.193 0 0 1-.08.017.217.217 0 0 0-.082.017 1.75 1.75 0 0 1-1.891-.367l-.064-.063a2.121 2.121 0 0 0-3.462 2.313c.107.257.264.491.46.688l.064.064a1.75 1.75 0 0 1 .35 1.93 1.75 1.75 0 0 1-1.601 1.146h-.096a2.121 2.121 0 0 0 0 4.242h.18a1.75 1.75 0 0 1 1.602 1.06 1.75 1.75 0 0 1-.35 1.93l-.063.065a2.12 2.12 0 0 0 1.5 3.623 2.12 2.12 0 0 0 1.501-.622l.064-.064a1.75 1.75 0 0 1 1.93-.35 1.75 1.75 0 0 1 1.146 1.602v.095a2.121 2.121 0 1 0 4.242 0v-.18a1.75 1.75 0 0 1 1.06-1.601 1.75 1.75 0 0 1 1.93.35l.064.063a2.123 2.123 0 1 0 3.002-3.001l-.064-.064a1.75 1.75 0 0 1-.47-.911ZM18 14a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z",
|
|
26
|
-
fill: "#383C48"
|
|
27
|
-
})));
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
export { SvgSettings as ReactComponent };
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
'use strict';
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
-
|
|
6
|
-
var React = require('react');
|
|
7
|
-
|
|
8
|
-
function _interopNamespace(e) {
|
|
9
|
-
if (e && e.__esModule) return e;
|
|
10
|
-
var n = Object.create(null);
|
|
11
|
-
if (e) {
|
|
12
|
-
Object.keys(e).forEach(function (k) {
|
|
13
|
-
if (k !== 'default') {
|
|
14
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
-
enumerable: true,
|
|
17
|
-
get: function () { return e[k]; }
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
n["default"] = e;
|
|
23
|
-
return Object.freeze(n);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
-
|
|
28
|
-
var _path;
|
|
29
|
-
var _excluded = ["title", "titleId"];
|
|
30
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
31
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
32
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
33
|
-
var SvgWallet = function SvgWallet(_ref) {
|
|
34
|
-
var title = _ref.title,
|
|
35
|
-
titleId = _ref.titleId,
|
|
36
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
37
|
-
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
38
|
-
width: 29,
|
|
39
|
-
height: 28,
|
|
40
|
-
viewBox: "0 0 29 28",
|
|
41
|
-
fill: "none",
|
|
42
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
-
"aria-labelledby": titleId
|
|
44
|
-
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
45
|
-
id: titleId
|
|
46
|
-
}, title) : null, _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
|
-
d: "M18 2.333a2.333 2.333 0 0 1 2.334 2.334h-14A4.654 4.654 0 0 0 2.91 6.164 4.668 4.668 0 0 1 7.5 2.334H18ZM26.167 11.667A4.667 4.667 0 0 0 21.5 7h-14a4.667 4.667 0 0 0-4.667 4.667V21A4.667 4.667 0 0 0 7.5 25.667h14A4.667 4.667 0 0 0 26.167 21v-9.333Z",
|
|
48
|
-
fill: "#383C48"
|
|
49
|
-
})));
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
exports.ReactComponent = SvgWallet;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
|
|
4
|
-
var _path;
|
|
5
|
-
var _excluded = ["title", "titleId"];
|
|
6
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
7
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
8
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
9
|
-
var SvgWallet = function SvgWallet(_ref) {
|
|
10
|
-
var title = _ref.title,
|
|
11
|
-
titleId = _ref.titleId,
|
|
12
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
-
width: 29,
|
|
15
|
-
height: 28,
|
|
16
|
-
viewBox: "0 0 29 28",
|
|
17
|
-
fill: "none",
|
|
18
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
-
"aria-labelledby": titleId
|
|
20
|
-
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
21
|
-
id: titleId
|
|
22
|
-
}, title) : null, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
23
|
-
d: "M18 2.333a2.333 2.333 0 0 1 2.334 2.334h-14A4.654 4.654 0 0 0 2.91 6.164 4.668 4.668 0 0 1 7.5 2.334H18ZM26.167 11.667A4.667 4.667 0 0 0 21.5 7h-14a4.667 4.667 0 0 0-4.667 4.667V21A4.667 4.667 0 0 0 7.5 25.667h14A4.667 4.667 0 0 0 26.167 21v-9.333Z",
|
|
24
|
-
fill: "#383C48"
|
|
25
|
-
})));
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export { SvgWallet as ReactComponent };
|