@dynamic-labs/sdk-react-core 4.80.0 → 4.82.0

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.
Files changed (68) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.cjs +1 -1
  3. package/package.js +1 -1
  4. package/package.json +12 -12
  5. package/src/lib/components/SendBalanceForm/SendBalanceForm.cjs +63 -3
  6. package/src/lib/components/SendBalanceForm/SendBalanceForm.js +63 -3
  7. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/TransactionModeSegmentedControl.cjs +40 -0
  8. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/TransactionModeSegmentedControl.d.ts +16 -0
  9. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/TransactionModeSegmentedControl.js +36 -0
  10. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/icons.cjs +17 -0
  11. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/icons.d.ts +8 -0
  12. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/icons.js +12 -0
  13. package/src/lib/components/SendBalanceForm/TransactionModeSegmentedControl/index.d.ts +1 -0
  14. package/src/lib/data/api/aleo/getAleoCuratedPrices.cjs +73 -0
  15. package/src/lib/data/api/aleo/getAleoCuratedPrices.d.ts +38 -0
  16. package/src/lib/data/api/aleo/getAleoCuratedPrices.js +69 -0
  17. package/src/lib/shared/assets/index.d.ts +2 -0
  18. package/src/lib/shared/assets/midnight-shielded.cjs +54 -0
  19. package/src/lib/shared/assets/midnight-shielded.js +30 -0
  20. package/src/lib/shared/assets/midnight-unshielded.cjs +54 -0
  21. package/src/lib/shared/assets/midnight-unshielded.js +30 -0
  22. package/src/lib/styles/index.shadow.cjs +1 -1
  23. package/src/lib/styles/index.shadow.js +1 -1
  24. package/src/lib/utils/functions/compareChains/compareChains.cjs +1 -0
  25. package/src/lib/utils/functions/compareChains/compareChains.js +1 -0
  26. package/src/lib/utils/functions/getTransactionLink/blockExplorerPatterns.cjs +12 -0
  27. package/src/lib/utils/functions/getTransactionLink/blockExplorerPatterns.js +12 -0
  28. package/src/lib/utils/hooks/useAleoAutoMergeRecords/index.d.ts +1 -0
  29. package/src/lib/utils/hooks/useAleoAutoMergeRecords/useAleoAutoMergeRecords.cjs +246 -0
  30. package/src/lib/utils/hooks/useAleoAutoMergeRecords/useAleoAutoMergeRecords.d.ts +17 -0
  31. package/src/lib/utils/hooks/useAleoAutoMergeRecords/useAleoAutoMergeRecords.js +242 -0
  32. package/src/lib/utils/hooks/useAleoAutoShieldSponsoredTokens/index.d.ts +1 -0
  33. package/src/lib/utils/hooks/useAleoAutoShieldSponsoredTokens/useAleoAutoShieldSponsoredTokens.cjs +263 -0
  34. package/src/lib/utils/hooks/useAleoAutoShieldSponsoredTokens/useAleoAutoShieldSponsoredTokens.d.ts +59 -0
  35. package/src/lib/utils/hooks/useAleoAutoShieldSponsoredTokens/useAleoAutoShieldSponsoredTokens.js +259 -0
  36. package/src/lib/utils/hooks/useAleoShieldedBalances/index.d.ts +1 -0
  37. package/src/lib/utils/hooks/useAleoShieldedBalances/useAleoShieldedBalances.cjs +443 -0
  38. package/src/lib/utils/hooks/useAleoShieldedBalances/useAleoShieldedBalances.d.ts +24 -0
  39. package/src/lib/utils/hooks/useAleoShieldedBalances/useAleoShieldedBalances.js +439 -0
  40. package/src/lib/utils/hooks/useEmbeddedWallet/useEmbeddedWallet.cjs +1 -0
  41. package/src/lib/utils/hooks/useEmbeddedWallet/useEmbeddedWallet.d.ts +1 -0
  42. package/src/lib/utils/hooks/useEmbeddedWallet/useEmbeddedWallet.js +1 -0
  43. package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.cjs +12 -1
  44. package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.js +12 -1
  45. package/src/lib/views/SendBalanceView/SendBalanceView.cjs +53 -0
  46. package/src/lib/views/SendBalanceView/SendBalanceView.js +53 -0
  47. package/src/lib/widgets/DynamicWidget/components/ActiveMidnightWalletBalance/ActiveMidnightWalletBalance.cjs +193 -0
  48. package/src/lib/widgets/DynamicWidget/components/ActiveMidnightWalletBalance/ActiveMidnightWalletBalance.d.ts +7 -0
  49. package/src/lib/widgets/DynamicWidget/components/ActiveMidnightWalletBalance/ActiveMidnightWalletBalance.js +189 -0
  50. package/src/lib/widgets/DynamicWidget/components/ActiveMidnightWalletBalance/index.d.ts +1 -0
  51. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/ActiveWalletBalance.cjs +216 -11
  52. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/ActiveWalletBalance.js +216 -11
  53. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceItem/TokenBalanceItem.cjs +5 -2
  54. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceItem/TokenBalanceItem.d.ts +10 -1
  55. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceItem/TokenBalanceItem.js +5 -2
  56. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceItem/index.d.ts +1 -0
  57. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceList/TokenBalanceList.cjs +2 -2
  58. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceList/TokenBalanceList.d.ts +3 -1
  59. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/TokenBalanceList/TokenBalanceList.js +2 -2
  60. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveMidnightWalletAddresses/ActiveMidnightWalletAddresses.cjs +124 -0
  61. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveMidnightWalletAddresses/ActiveMidnightWalletAddresses.d.ts +9 -0
  62. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveMidnightWalletAddresses/ActiveMidnightWalletAddresses.js +120 -0
  63. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveMidnightWalletAddresses/index.d.ts +1 -0
  64. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveWalletInformation.cjs +21 -10
  65. package/src/lib/widgets/DynamicWidget/components/ActiveWalletInformation/ActiveWalletInformation.js +22 -11
  66. package/src/lib/widgets/DynamicWidget/components/WalletDetailsCard/WalletDetailsCard.cjs +22 -2
  67. package/src/lib/widgets/DynamicWidget/components/WalletDetailsCard/WalletDetailsCard.d.ts +8 -1
  68. package/src/lib/widgets/DynamicWidget/components/WalletDetailsCard/WalletDetailsCard.js +23 -3
@@ -0,0 +1,69 @@
1
+ 'use client'
2
+ import { __awaiter } from '../../../../../_virtual/_tslib.js';
3
+ import { FetchService } from '@dynamic-labs/utils';
4
+ import '@dynamic-labs-sdk/client/core';
5
+ import '@dynamic-labs/sdk-api-core';
6
+ import 'react';
7
+ import 'eventemitter3';
8
+ import '@dynamic-labs-sdk/client';
9
+ import ApiEndpoint from '../../../config/ApiEndpoint.js';
10
+ import '@dynamic-labs/iconic';
11
+ import '@dynamic-labs/wallet-connector-core';
12
+ import 'react/jsx-runtime';
13
+ import '../../../context/ViewContext/ViewContext.js';
14
+ import '../../../shared/logger.js';
15
+ import '@dynamic-labs/wallet-book';
16
+ import '../../../utils/constants/colors.js';
17
+ import '../../../utils/constants/values.js';
18
+ import '../../../shared/consts/index.js';
19
+ import { getApiHeaders } from '../../../client/extension/hooks/useInitializeSdkClient/getApiHeaders/getApiHeaders.js';
20
+ import '../../../events/dynamicEvents.js';
21
+ import { getMinAuthToken } from '../../../client/extension/functions/getMinAuthToken/getMinAuthToken.js';
22
+ import '@dynamic-labs/multi-wallet';
23
+ import 'react-international-phone';
24
+ import '../../../store/state/nonce/nonce.js';
25
+ import { randomString } from '../../../utils/functions/randomString/randomString.js';
26
+ import '@dynamic-labs/locale';
27
+ import '../../../store/state/dynamicContextProps/dynamicContextProps.js';
28
+ import '../../../store/state/primaryWalletId/primaryWalletId.js';
29
+ import '../../../store/state/connectedWalletsInfo/connectedWalletsInfo.js';
30
+ import '../../../utils/functions/getWaasAddressTypeLabel/getWaasAddressTypeLabel.js';
31
+
32
+ /**
33
+ * Fetch the curated Aleo token price list for the given network. The
34
+ * endpoint returns every curated token regardless of balance, so this
35
+ * works as the price source for the Shielded balance tab — which never
36
+ * goes through the multichain `/accountBalances` pipeline.
37
+ *
38
+ * Auth + base URL mirror the OpenAPI-generated `sdkApi`. We don't go
39
+ * through `sdkApi` here because this endpoint isn't in the OpenAPI
40
+ * surface yet; a manual fetch keeps the dynamic-auth side small and
41
+ * focused, and the auth token / device-fingerprint headers are still
42
+ * picked up via `getApiHeaders` + `getMinAuthToken`.
43
+ */
44
+ const getAleoCuratedPrices = (_a) => __awaiter(void 0, [_a], void 0, function* ({ environmentId, network, }) {
45
+ var _b, _c;
46
+ const basePath = ApiEndpoint.getBaseUrl();
47
+ if (!basePath)
48
+ return [];
49
+ // `basePath` already includes the `/api/v0` prefix (set on the
50
+ // generated `Configuration().basePath`), so this path is just the
51
+ // relative SDK route.
52
+ const url = `${basePath}/sdk/${encodeURIComponent(environmentId)}/chains/aleo/prices?network=${encodeURIComponent(network)}`;
53
+ const headers = Object.assign({ 'Content-Type': 'application/json', 'x-dyn-request-id': randomString(50) }, getApiHeaders());
54
+ const jwt = getMinAuthToken();
55
+ if (jwt) {
56
+ headers.Authorization = `Bearer ${jwt}`;
57
+ }
58
+ const response = yield FetchService.fetch(url, {
59
+ headers,
60
+ method: 'GET',
61
+ });
62
+ if (!response.ok) {
63
+ throw new Error(`getAleoCuratedPrices: ${response.status} ${response.statusText}`);
64
+ }
65
+ const data = (yield response.json());
66
+ return (_c = (_b = data === null || data === void 0 ? void 0 : data.result) === null || _b === void 0 ? void 0 : _b.prices) !== null && _c !== void 0 ? _c : [];
67
+ });
68
+
69
+ export { getAleoCuratedPrices };
@@ -80,6 +80,8 @@ export { ReactComponent as LockIcon } from './lock.svg';
80
80
  export { ReactComponent as LockedIcon } from './locked.svg';
81
81
  export { ReactComponent as LogoutIcon } from './logout.svg';
82
82
  export { ReactComponent as MailIcon } from './mail.svg';
83
+ export { ReactComponent as MidnightShieldedIcon } from './midnight-shielded.svg';
84
+ export { ReactComponent as MidnightUnshieldedIcon } from './midnight-unshielded.svg';
83
85
  export { ReactComponent as MonitorAndDeviceIcon } from './monitor-and-device.svg';
84
86
  export { ReactComponent as MonitorIcon } from './monitor.svg';
85
87
  export { ReactComponent as MfaRecoveryIcon } from './mfa-recovery-icon.svg';
@@ -0,0 +1,54 @@
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() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
31
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
32
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
33
+ var SvgMidnightShielded = function SvgMidnightShielded(_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: 16,
39
+ height: 16,
40
+ viewBox: "0 0 13.333 13.118",
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: "M6.222.17a.667.667 0 0 1 .89 0 7.304 7.304 0 0 0 5.266 1.858c.316-.017.6.192.68.498a8.67 8.67 0 0 1-6.224 10.571.668.668 0 0 1-.333 0A8.67 8.67 0 0 1 .276 2.527a.667.667 0 0 1 .68-.5A7.304 7.304 0 0 0 6.222.17Zm-4.768 3.2a7.337 7.337 0 0 0 5.212 8.392A7.337 7.337 0 0 0 11.88 3.37a8.63 8.63 0 0 1-5.212-1.835A8.63 8.63 0 0 1 1.454 3.37Zm7.684 1.529c.26.26.26.683 0 .943L6.471 8.509a.667.667 0 0 1-.942 0L4.195 7.175a.667.667 0 1 1 .943-.943L6 7.094 8.195 4.9c.26-.26.683-.26.943 0Z",
50
+ fill: "var(--fill-0, #ABACB2)"
51
+ })));
52
+ };
53
+
54
+ exports.ReactComponent = SvgMidnightShielded;
@@ -0,0 +1,30 @@
1
+ 'use client'
2
+ import * as React from 'react';
3
+
4
+ var _path;
5
+ var _excluded = ["title", "titleId"];
6
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
7
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
8
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
9
+ var SvgMidnightShielded = function SvgMidnightShielded(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 16,
15
+ height: 16,
16
+ viewBox: "0 0 13.333 13.118",
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: "M6.222.17a.667.667 0 0 1 .89 0 7.304 7.304 0 0 0 5.266 1.858c.316-.017.6.192.68.498a8.67 8.67 0 0 1-6.224 10.571.668.668 0 0 1-.333 0A8.67 8.67 0 0 1 .276 2.527a.667.667 0 0 1 .68-.5A7.304 7.304 0 0 0 6.222.17Zm-4.768 3.2a7.337 7.337 0 0 0 5.212 8.392A7.337 7.337 0 0 0 11.88 3.37a8.63 8.63 0 0 1-5.212-1.835A8.63 8.63 0 0 1 1.454 3.37Zm7.684 1.529c.26.26.26.683 0 .943L6.471 8.509a.667.667 0 0 1-.942 0L4.195 7.175a.667.667 0 1 1 .943-.943L6 7.094 8.195 4.9c.26-.26.683-.26.943 0Z",
26
+ fill: "var(--fill-0, #ABACB2)"
27
+ })));
28
+ };
29
+
30
+ export { SvgMidnightShielded as ReactComponent };
@@ -0,0 +1,54 @@
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() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
31
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
32
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
33
+ var SvgMidnightUnshielded = function SvgMidnightUnshielded(_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: 16,
39
+ height: 16,
40
+ viewBox: "0 0 16 16",
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: "M7.555 1.503a.667.667 0 0 1 .89 0 7.304 7.304 0 0 0 5.266 1.858c.317-.016.6.192.68.499A8.67 8.67 0 0 1 8.166 14.43a.666.666 0 0 1-.332 0A8.67 8.67 0 0 1 1.609 3.86a.667.667 0 0 1 .68-.5 7.304 7.304 0 0 0 5.267-1.858Zm-4.767 3.2A7.337 7.337 0 0 0 8 13.095a7.337 7.337 0 0 0 5.212-8.392A8.63 8.63 0 0 1 8 2.869a8.63 8.63 0 0 1-5.212 1.834Z",
50
+ fill: "var(--fill-0, #ABACB2)"
51
+ })));
52
+ };
53
+
54
+ exports.ReactComponent = SvgMidnightUnshielded;
@@ -0,0 +1,30 @@
1
+ 'use client'
2
+ import * as React from 'react';
3
+
4
+ var _path;
5
+ var _excluded = ["title", "titleId"];
6
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
7
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
8
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
9
+ var SvgMidnightUnshielded = function SvgMidnightUnshielded(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 16,
15
+ height: 16,
16
+ viewBox: "0 0 16 16",
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: "M7.555 1.503a.667.667 0 0 1 .89 0 7.304 7.304 0 0 0 5.266 1.858c.317-.016.6.192.68.499A8.67 8.67 0 0 1 8.166 14.43a.666.666 0 0 1-.332 0A8.67 8.67 0 0 1 1.609 3.86a.667.667 0 0 1 .68-.5 7.304 7.304 0 0 0 5.267-1.858Zm-4.767 3.2A7.337 7.337 0 0 0 8 13.095a7.337 7.337 0 0 0 5.212-8.392A8.63 8.63 0 0 1 8 2.869a8.63 8.63 0 0 1-5.212 1.834Z",
26
+ fill: "var(--fill-0, #ABACB2)"
27
+ })));
28
+ };
29
+
30
+ export { SvgMidnightUnshielded as ReactComponent };