@dynamic-labs/sdk-react-core 4.57.1 → 4.58.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 (140) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.cjs +1 -1
  3. package/package.js +1 -1
  4. package/package.json +12 -12
  5. package/src/index.cjs +2 -0
  6. package/src/index.d.ts +1 -1
  7. package/src/index.js +1 -0
  8. package/src/lib/components/ToggleVisibilityButton/ToggleVisibilityButton.cjs +127 -0
  9. package/src/lib/components/ToggleVisibilityButton/ToggleVisibilityButton.d.ts +1 -1
  10. package/src/lib/components/ToggleVisibilityButton/ToggleVisibilityButton.js +123 -0
  11. package/src/lib/components/Typography/Typography.cjs +1 -0
  12. package/src/lib/components/Typography/Typography.js +1 -0
  13. package/src/lib/components/Typography/Typography.types.d.ts +1 -1
  14. package/src/lib/context/ViewContext/types/index.d.ts +1 -1
  15. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +6 -0
  16. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +6 -0
  17. package/src/lib/modals/SendBalanceModal/SendBalanceModal.cjs +1 -1
  18. package/src/lib/modals/SendBalanceModal/SendBalanceModal.js +1 -1
  19. package/src/lib/shared/assets/check-circle-filled.cjs +60 -0
  20. package/src/lib/shared/assets/check-circle-filled.js +36 -0
  21. package/src/lib/shared/assets/index.d.ts +16 -12
  22. package/src/lib/shared/assets/knowledge-check-icon.cjs +57 -0
  23. package/src/lib/shared/assets/knowledge-check-icon.js +33 -0
  24. package/src/lib/shared/assets/password-lock-icon.cjs +54 -0
  25. package/src/lib/shared/assets/password-lock-icon.js +30 -0
  26. package/src/lib/shared/assets/secure-action.cjs +54 -0
  27. package/src/lib/shared/assets/secure-action.js +30 -0
  28. package/src/lib/shared/assets/warning-circle-orange.cjs +57 -0
  29. package/src/lib/shared/assets/warning-circle-orange.js +33 -0
  30. package/src/lib/styles/index.shadow.cjs +1 -1
  31. package/src/lib/styles/index.shadow.js +1 -1
  32. package/src/lib/utils/functions/getOauthLoginUrl/getOauthLoginUrl.cjs +4 -1
  33. package/src/lib/utils/functions/getOauthLoginUrl/getOauthLoginUrl.d.ts +5 -1
  34. package/src/lib/utils/functions/getOauthLoginUrl/getOauthLoginUrl.js +4 -1
  35. package/src/lib/utils/functions/reconcilePrimaryWallet/index.d.ts +1 -0
  36. package/src/lib/utils/functions/reconcilePrimaryWallet/reconcilePrimaryWallet.cjs +26 -0
  37. package/src/lib/utils/functions/reconcilePrimaryWallet/reconcilePrimaryWallet.d.ts +2 -0
  38. package/src/lib/utils/functions/reconcilePrimaryWallet/reconcilePrimaryWallet.js +22 -0
  39. package/src/lib/utils/hooks/index.d.ts +1 -0
  40. package/src/lib/utils/hooks/useClientSessionKeys/useClientSessionKeys.cjs +30 -17
  41. package/src/lib/utils/hooks/useClientSessionKeys/useClientSessionKeys.d.ts +0 -1
  42. package/src/lib/utils/hooks/useClientSessionKeys/useClientSessionKeys.js +32 -19
  43. package/src/lib/utils/hooks/useDynamicWaas/useDynamicWaas.cjs +21 -12
  44. package/src/lib/utils/hooks/useDynamicWaas/useDynamicWaas.d.ts +2 -1
  45. package/src/lib/utils/hooks/useDynamicWaas/useDynamicWaas.js +21 -12
  46. package/src/lib/utils/hooks/useRefreshAuth/index.d.ts +1 -0
  47. package/src/lib/utils/hooks/useRefreshAuth/useRefreshAuth.cjs +49 -0
  48. package/src/lib/utils/hooks/useRefreshAuth/useRefreshAuth.d.ts +8 -0
  49. package/src/lib/utils/hooks/useRefreshAuth/useRefreshAuth.js +45 -0
  50. package/src/lib/utils/hooks/useRefreshUser/useRefreshUser.cjs +13 -23
  51. package/src/lib/utils/hooks/useRefreshUser/useRefreshUser.js +12 -22
  52. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.cjs +12 -10
  53. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.js +13 -11
  54. package/src/lib/utils/hooks/useWalletBackup/cloudProviders.cjs +2 -2
  55. package/src/lib/utils/hooks/useWalletBackup/cloudProviders.js +2 -2
  56. package/src/lib/utils/hooks/useWalletBackup/useWalletBackup.cjs +2 -2
  57. package/src/lib/utils/hooks/useWalletBackup/useWalletBackup.js +2 -2
  58. package/src/lib/utils/hooks/useWalletDelegation/useWalletDelegation.cjs +2 -2
  59. package/src/lib/utils/hooks/useWalletDelegation/useWalletDelegation.js +2 -2
  60. package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.cjs +1 -1
  61. package/src/lib/views/BackupUnsuccessfulView/BackupUnsuccessfulView.js +1 -1
  62. package/src/lib/views/CollectUserDataView/CollectUserDataView.cjs +1 -1
  63. package/src/lib/views/CollectUserDataView/CollectUserDataView.js +1 -1
  64. package/src/lib/views/CollectUserDataViewNoWallet/CollectUserDataViewNoWallet.cjs +1 -1
  65. package/src/lib/views/CollectUserDataViewNoWallet/CollectUserDataViewNoWallet.js +1 -1
  66. package/src/lib/views/EmailVerification/EmailVerification.cjs +1 -1
  67. package/src/lib/views/EmailVerification/EmailVerification.js +1 -1
  68. package/src/lib/views/ExportSharesView/ExportSharesView.cjs +1 -1
  69. package/src/lib/views/ExportSharesView/ExportSharesView.js +1 -1
  70. package/src/lib/views/MfaChooseDeviceView/MfaChooseDeviceView.cjs +1 -1
  71. package/src/lib/views/MfaChooseDeviceView/MfaChooseDeviceView.js +1 -1
  72. package/src/lib/views/MfaSecureDeviceView/MfaSecureDeviceView.cjs +1 -1
  73. package/src/lib/views/MfaSecureDeviceView/MfaSecureDeviceView.js +1 -1
  74. package/src/lib/views/MfaVerificationView/MfaVerificationView.cjs +1 -1
  75. package/src/lib/views/MfaVerificationView/MfaVerificationView.js +1 -1
  76. package/src/lib/views/Passkey/ConfirmPasskeyView/ConfirmPasskeyView.cjs +1 -1
  77. package/src/lib/views/Passkey/ConfirmPasskeyView/ConfirmPasskeyView.js +1 -1
  78. package/src/lib/views/Passkey/SetupPasskeyView/SetupPasskeyView.cjs +1 -1
  79. package/src/lib/views/Passkey/SetupPasskeyView/SetupPasskeyView.js +1 -1
  80. package/src/lib/views/SmsVerification/SmsVerification.cjs +1 -1
  81. package/src/lib/views/SmsVerification/SmsVerification.js +1 -1
  82. package/src/lib/views/TransactionConfirmationView/TransactionConfirmationView.cjs +6 -5
  83. package/src/lib/views/TransactionConfirmationView/TransactionConfirmationView.js +6 -5
  84. package/src/lib/views/WaasUpgradeView/WaasUpgradeView.cjs +1 -1
  85. package/src/lib/views/WaasUpgradeView/WaasUpgradeView.js +1 -1
  86. package/src/lib/views/WalletLockedView/WalletLockedView.cjs +1 -1
  87. package/src/lib/views/WalletLockedView/WalletLockedView.js +1 -1
  88. package/src/lib/views/WalletUpgradeFlowView/WalletUpgradeFlowView.cjs +2 -2
  89. package/src/lib/views/WalletUpgradeFlowView/WalletUpgradeFlowView.js +2 -2
  90. package/src/lib/views/viewToComponentMap.cjs +2 -0
  91. package/src/lib/views/viewToComponentMap.d.ts +1 -0
  92. package/src/lib/views/viewToComponentMap.js +2 -0
  93. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/ActiveWalletBalance.cjs +1 -1
  94. package/src/lib/widgets/DynamicWidget/components/ActiveWalletBalance/ActiveWalletBalance.js +1 -1
  95. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.cjs +15 -3
  96. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.d.ts +6 -0
  97. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.js +15 -3
  98. package/src/lib/widgets/DynamicWidget/context/DynamicWidgetContext.types.d.ts +1 -1
  99. package/src/lib/widgets/DynamicWidget/prompts/QrCodeModalView/QrCodeModalView.cjs +1 -1
  100. package/src/lib/widgets/DynamicWidget/prompts/QrCodeModalView/QrCodeModalView.js +1 -1
  101. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.cjs +2 -2
  102. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.js +2 -2
  103. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/MfaSection/MfaSection.cjs +31 -10
  104. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/MfaSection/MfaSection.js +31 -10
  105. package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.cjs +1 -1
  106. package/src/lib/widgets/DynamicWidget/views/SettingsView/SettingsView.js +1 -1
  107. package/src/lib/widgets/DynamicWidget/views/SetupPasswordConfirmView/SetupPasswordConfirmView.cjs +54 -0
  108. package/src/lib/widgets/DynamicWidget/views/SetupPasswordConfirmView/SetupPasswordConfirmView.d.ts +7 -0
  109. package/src/lib/widgets/DynamicWidget/views/SetupPasswordConfirmView/SetupPasswordConfirmView.js +50 -0
  110. package/src/lib/widgets/DynamicWidget/views/SetupPasswordConfirmView/index.d.ts +2 -0
  111. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/PasswordRequirement.cjs +15 -0
  112. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/PasswordRequirement.d.ts +6 -0
  113. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/PasswordRequirement.js +11 -0
  114. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/SetupPasswordEnterView.cjs +57 -0
  115. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/SetupPasswordEnterView.d.ts +6 -0
  116. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/SetupPasswordEnterView.js +53 -0
  117. package/src/lib/widgets/DynamicWidget/views/SetupPasswordEnterView/index.d.ts +4 -0
  118. package/src/lib/widgets/DynamicWidget/views/SetupPasswordKnowledgeCheckView/SetupPasswordKnowledgeCheckView.cjs +83 -0
  119. package/src/lib/widgets/DynamicWidget/views/SetupPasswordKnowledgeCheckView/SetupPasswordKnowledgeCheckView.d.ts +7 -0
  120. package/src/lib/widgets/DynamicWidget/views/SetupPasswordKnowledgeCheckView/SetupPasswordKnowledgeCheckView.js +79 -0
  121. package/src/lib/widgets/DynamicWidget/views/SetupPasswordKnowledgeCheckView/index.d.ts +2 -0
  122. package/src/lib/widgets/DynamicWidget/views/SetupPasswordSuccessView/SetupPasswordSuccessView.cjs +27 -0
  123. package/src/lib/widgets/DynamicWidget/views/SetupPasswordSuccessView/SetupPasswordSuccessView.d.ts +5 -0
  124. package/src/lib/widgets/DynamicWidget/views/SetupPasswordSuccessView/SetupPasswordSuccessView.js +23 -0
  125. package/src/lib/widgets/DynamicWidget/views/SetupPasswordSuccessView/index.d.ts +2 -0
  126. package/src/lib/widgets/DynamicWidget/views/SetupPasswordTermsView/SetupPasswordTermsView.cjs +37 -0
  127. package/src/lib/widgets/DynamicWidget/views/SetupPasswordTermsView/SetupPasswordTermsView.d.ts +6 -0
  128. package/src/lib/widgets/DynamicWidget/views/SetupPasswordTermsView/SetupPasswordTermsView.js +33 -0
  129. package/src/lib/widgets/DynamicWidget/views/SetupPasswordTermsView/index.d.ts +2 -0
  130. package/src/lib/widgets/DynamicWidget/views/SetupPasswordView/SetupPasswordView.cjs +76 -0
  131. package/src/lib/widgets/DynamicWidget/views/SetupPasswordView/SetupPasswordView.d.ts +6 -0
  132. package/src/lib/widgets/DynamicWidget/views/SetupPasswordView/SetupPasswordView.js +72 -0
  133. package/src/lib/widgets/DynamicWidget/views/SetupPasswordView/index.d.ts +2 -0
  134. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.cjs +1 -1
  135. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.js +1 -1
  136. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupSuccessView.cjs +1 -1
  137. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupSuccessView.js +1 -1
  138. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.cjs +1 -1
  139. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.js +1 -1
  140. package/src/lib/widgets/DynamicWidget/views/index.d.ts +6 -0
@@ -14,9 +14,13 @@ export { ReactComponent as ArrowRightBackgroundIcon } from './arrow-right-backgr
14
14
  export { ReactComponent as ArrowRightIcon } from './arrow-right.svg';
15
15
  export { ReactComponent as AtIcon } from './at.svg';
16
16
  export { ReactComponent as AuthenticatorIcon } from './authenticator.svg';
17
+ export { ReactComponent as BackupWaaSIcon } from './backup-waas.svg';
18
+ export { ReactComponent as BackupIcon } from './backup.svg';
19
+ export { ReactComponent as BackupArrowIcon } from './backupArrow.svg';
17
20
  export { ReactComponent as BlueWalletConnectIcon } from './blue-walletconnect.svg';
18
21
  export { ReactComponent as CautionTriangleIcon } from './caution-triangle.svg';
19
22
  export { ReactComponent as CheckBlueIcon } from './check-blue.svg';
23
+ export { ReactComponent as CheckCircleFilledIcon } from './check-circle-filled.svg';
20
24
  export { ReactComponent as CheckCircleIcon } from './check-circle.svg';
21
25
  export { ReactComponent as CheckConnectionIcon } from './check-connection.svg';
22
26
  export { ReactComponent as CheckIcon } from './check.svg';
@@ -26,13 +30,14 @@ export { ReactComponent as ChevronRightIcon } from './chevron-right.svg';
26
30
  export { ReactComponent as CircleLockerIcon } from './circle-locker.svg';
27
31
  export { ReactComponent as ClockIcon } from './clock.svg';
28
32
  export { ReactComponent as CloseIcon } from './close.svg';
33
+ export { ReactComponent as ConnectIcon } from './connect.svg';
29
34
  export { ReactComponent as ConnectedAppsIcon } from './connected-apps.svg';
30
35
  export { ReactComponent as CopyIcon } from './copy.svg';
31
36
  export { ReactComponent as CurrencyIcon } from './currency.svg';
32
37
  export { ReactComponent as DefaultWallet } from './default-wallet.svg';
33
38
  export { ReactComponent as DeleteEmbeddedHero } from './delete-embedded-hero.svg';
34
- export { ReactComponent as DomainIcon } from './domain.svg';
35
39
  export { ReactComponent as DomainBlockedIcon } from './domain-blocked.svg';
40
+ export { ReactComponent as DomainIcon } from './domain.svg';
36
41
  export { ReactComponent as DotsHorizontalIcon } from './dots-horizontal.svg';
37
42
  export { ReactComponent as DoubleArrowRightIcon } from './double-arrow-right.svg';
38
43
  export { ReactComponent as DownloadIcon } from './download.svg';
@@ -49,20 +54,24 @@ export { ReactComponent as ExternalLinkIcon } from './externalLink.svg';
49
54
  export { ReactComponent as EyeOffIcon } from './eye-off-icon.svg';
50
55
  export { ReactComponent as EyeOutlineIcon } from './eye-outline.svg';
51
56
  export { ReactComponent as FaceIdIcon } from './face-id.svg';
57
+ export { ReactComponent as FilledQuestionMarkIcon } from './filled-question-mark.svg';
58
+ export { ReactComponent as FingerprintIcon } from './fingerprint.svg';
52
59
  export { ReactComponent as EyeIcon } from './footer-eye-icon.svg';
53
60
  export { ReactComponent as GasIcon } from './footer-gas-icon.svg';
54
61
  export { ReactComponent as InfoIcon } from './footer-info-icon.svg';
55
62
  export { ReactComponent as KeyIcon } from './footer-key-icon.svg';
56
- export { ReactComponent as FingerprintIcon } from './fingerprint.svg';
57
63
  export { ReactComponent as FramedLinearGradientIcon } from './framed-linear-gradient.svg';
58
64
  export { ReactComponent as GearIcon } from './gear.svg';
59
65
  export { ReactComponent as GlobalWalletIcon } from './global-wallet-icon.svg';
60
66
  export { ReactComponent as GlobeIcon } from './globe.svg';
67
+ export { ReactComponent as GoogleDriveIcon } from './google-drive.svg';
68
+ export { ReactComponent as ICloudIcon } from './icloud.svg';
61
69
  export { ReactComponent as InfoWarningIcon } from './info.svg';
62
70
  export { ReactComponent as IPhoneFaceId } from './iphone-face-id.svg';
63
71
  export { ReactComponent as IPhoneTouchId } from './iphone-touch-id.svg';
64
72
  export { ReactComponent as JustifiedTextIcon } from './justified-text.svg';
65
73
  export { ReactComponent as KeyOutlineIcon } from './key.svg';
74
+ export { ReactComponent as KnowledgeCheckIcon } from './knowledge-check-icon.svg';
66
75
  export { ReactComponent as LinkCircleIcon } from './link-circle.svg';
67
76
  export { ReactComponent as LinkIcon } from './link.svg';
68
77
  export { ReactComponent as LocationIcon } from './location.svg';
@@ -77,6 +86,7 @@ export { ReactComponent as PasskeyIntroIcon } from './passkey-intro-icon.svg';
77
86
  export { ReactComponent as PasskeyIntroIcon2 } from './passkey-intro2.svg';
78
87
  export { ReactComponent as PasskeySuccessIcon } from './passkey-success-icon.svg';
79
88
  export { ReactComponent as PasswordHeroIcon } from './password-hero.svg';
89
+ export { ReactComponent as PasswordLockIcon } from './password-lock-icon.svg';
80
90
  export { ReactComponent as PencilAltIcon } from './pencil-alt-icon.svg';
81
91
  export { ReactComponent as PencilIcon } from './pencil.svg';
82
92
  export { ReactComponent as PhoneIcon } from './phone.svg';
@@ -87,6 +97,7 @@ export { ReactComponent as PuzzleIcon } from './puzzle.svg';
87
97
  export { ReactComponent as QrCodeIcon } from './qr-code.svg';
88
98
  export { ReactComponent as QuestionMarkIcon } from './question-mark.svg';
89
99
  export { ReactComponent as QuestionIcon } from './question.svg';
100
+ export { ReactComponent as ReloadIcon } from './reload-icon.svg';
90
101
  export { ReactComponent as SavePasswordHeroIcon } from './save-password-hero.svg';
91
102
  export { ReactComponent as SecureActionIcon } from './secure-action.svg';
92
103
  export { ReactComponent as SendIcon } from './send.svg';
@@ -108,6 +119,7 @@ export { ReactComponent as ThreeDots } from './three-dots.svg';
108
119
  export { ReactComponent as TooltipArrow } from './tooltip-arrow.svg';
109
120
  export { ReactComponent as TooltipIcon } from './tooltip.svg';
110
121
  export { ReactComponent as UnlinkIcon } from './unlink.svg';
122
+ export { ReactComponent as UpgradeIcon } from './upgrade.svg';
111
123
  export { ReactComponent as UserCleanIcon } from './user-account-2.svg';
112
124
  export { ReactComponent as UserCardIcon } from './user-card.svg';
113
125
  export { ReactComponent as UserIcon } from './user.svg';
@@ -120,16 +132,8 @@ export { ReactComponent as WalletV2Icon } from './wallet-v2.svg';
120
132
  export { ReactComponent as WalletWithSunglassesIcon } from './wallet-with-sunglasses.svg';
121
133
  export { ReactComponent as WalletIcon } from './wallet.svg';
122
134
  export { PhantomLedgerIcon } from './wallets/PhantomLedgerIcon/PhantomLedgerIcon';
135
+ export { ReactComponent as WarningCircleOrangeIcon } from './warning-circle-orange.svg';
123
136
  export { ReactComponent as WarningOrangeIcon } from './warning-orange.svg';
124
137
  export { ReactComponent as WarningRedIcon } from './warning-red.svg';
125
- export { ReactComponent as WorkSuitcaseIcon } from './work-suitcase.svg';
126
- export { ReactComponent as BackupIcon } from './backup.svg';
127
- export { ReactComponent as BackupArrowIcon } from './backupArrow.svg';
128
- export { ReactComponent as BackupWaaSIcon } from './backup-waas.svg';
129
- export { ReactComponent as FilledQuestionMarkIcon } from './filled-question-mark.svg';
130
- export { ReactComponent as GoogleDriveIcon } from './google-drive.svg';
131
- export { ReactComponent as ICloudIcon } from './icloud.svg';
132
- export { ReactComponent as UpgradeIcon } from './upgrade.svg';
133
138
  export { ReactComponent as WhiteCheck } from './white-check-black-circle.svg';
134
- export { ReactComponent as ConnectIcon } from './connect.svg';
135
- export { ReactComponent as ReloadIcon } from './reload-icon.svg';
139
+ export { ReactComponent as WorkSuitcaseIcon } from './work-suitcase.svg';
@@ -0,0 +1,57 @@
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, _path2;
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 SvgKnowledgeCheckIcon = function SvgKnowledgeCheckIcon(_ref) {
34
+ var title = _ref.title,
35
+ titleId = _ref.titleId,
36
+ props = _objectWithoutProperties(_ref, _excluded);
37
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({
38
+ xmlns: "http://www.w3.org/2000/svg",
39
+ width: 69,
40
+ height: 69,
41
+ viewBox: "0 0 69 69",
42
+ fill: "none",
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: "M34.5 0C53.554 0 69 15.446 69 34.5 69 53.554 53.554 69 34.5 69 15.446 69 0 53.554 0 34.5 0 15.446 15.446 0 34.5 0Z",
48
+ fill: "#4779FF"
49
+ })), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
50
+ fillRule: "evenodd",
51
+ clipRule: "evenodd",
52
+ d: "M35.825 23.161a6.761 6.761 0 0 0-4.32.735c-1.282.707-2.205 1.787-2.663 3.007a3.012 3.012 0 0 1-3.889 1.77 3.043 3.043 0 0 1-1.758-3.914c.991-2.644 2.928-4.822 5.41-6.19a12.764 12.764 0 0 1 8.173-1.406c2.802.45 5.386 1.824 7.272 3.925 1.89 2.107 2.954 4.81 2.95 7.635 0 4.604-3.614 7.56-6.047 9.081a25.197 25.197 0 0 1-3.615 1.852 24.858 24.858 0 0 1-1.546.586l-.105.034-.033.01-.012.004-.005.002s-.003.001-.898-2.9l.895 2.901a3.014 3.014 0 0 1-3.777-2 3.04 3.04 0 0 1 1.984-3.8m0 0 .052-.017.233-.081c.21-.075.523-.192.902-.35.767-.32 1.765-.79 2.74-1.4 2.188-1.369 3.196-2.748 3.196-3.924v-.005c.002-1.268-.473-2.53-1.394-3.556-.925-1.032-2.245-1.758-3.745-1.999M31.84 48.963a3.028 3.028 0 0 1 3.018-3.037h.04a3.028 3.028 0 0 1 3.019 3.037A3.028 3.028 0 0 1 34.899 52h-.041a3.028 3.028 0 0 1-3.018-3.037Z",
53
+ fill: "#fff"
54
+ })));
55
+ };
56
+
57
+ exports.ReactComponent = SvgKnowledgeCheckIcon;
@@ -0,0 +1,33 @@
1
+ 'use client'
2
+ import * as React from 'react';
3
+
4
+ var _path, _path2;
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 SvgKnowledgeCheckIcon = function SvgKnowledgeCheckIcon(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ width: 69,
16
+ height: 69,
17
+ viewBox: "0 0 69 69",
18
+ fill: "none",
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: "M34.5 0C53.554 0 69 15.446 69 34.5 69 53.554 53.554 69 34.5 69 15.446 69 0 53.554 0 34.5 0 15.446 15.446 0 34.5 0Z",
24
+ fill: "#4779FF"
25
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
26
+ fillRule: "evenodd",
27
+ clipRule: "evenodd",
28
+ d: "M35.825 23.161a6.761 6.761 0 0 0-4.32.735c-1.282.707-2.205 1.787-2.663 3.007a3.012 3.012 0 0 1-3.889 1.77 3.043 3.043 0 0 1-1.758-3.914c.991-2.644 2.928-4.822 5.41-6.19a12.764 12.764 0 0 1 8.173-1.406c2.802.45 5.386 1.824 7.272 3.925 1.89 2.107 2.954 4.81 2.95 7.635 0 4.604-3.614 7.56-6.047 9.081a25.197 25.197 0 0 1-3.615 1.852 24.858 24.858 0 0 1-1.546.586l-.105.034-.033.01-.012.004-.005.002s-.003.001-.898-2.9l.895 2.901a3.014 3.014 0 0 1-3.777-2 3.04 3.04 0 0 1 1.984-3.8m0 0 .052-.017.233-.081c.21-.075.523-.192.902-.35.767-.32 1.765-.79 2.74-1.4 2.188-1.369 3.196-2.748 3.196-3.924v-.005c.002-1.268-.473-2.53-1.394-3.556-.925-1.032-2.245-1.758-3.745-1.999M31.84 48.963a3.028 3.028 0 0 1 3.018-3.037h.04a3.028 3.028 0 0 1 3.019 3.037A3.028 3.028 0 0 1 34.899 52h-.041a3.028 3.028 0 0 1-3.018-3.037Z",
29
+ fill: "#fff"
30
+ })));
31
+ };
32
+
33
+ export { SvgKnowledgeCheckIcon 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 SvgPasswordLockIcon = function SvgPasswordLockIcon(_ref) {
34
+ var title = _ref.title,
35
+ titleId = _ref.titleId,
36
+ props = _objectWithoutProperties(_ref, _excluded);
37
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({
38
+ xmlns: "http://www.w3.org/2000/svg",
39
+ width: 58,
40
+ height: 70,
41
+ viewBox: "0 0 58 70",
42
+ fill: "none",
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: "M28.117.065a6.369 6.369 0 0 1 1.82 0c.697.101 1.345.346 1.86.54l.137.052L49.006 7.06l.416.155c1.967.734 3.695 1.38 5.026 2.552a9.553 9.553 0 0 1 2.611 3.77c.552 1.45.619 3.042.625 4.824V34.81c0 9-4.895 16.503-10.186 22.015-5.327 5.55-11.421 9.469-14.644 11.349l-.13.077c-.588.345-1.352.793-2.361 1.01a6.78 6.78 0 0 1-2.671 0c-1.01-.217-1.773-.665-2.361-1.01l-.13-.077c-3.223-1.88-9.318-5.8-14.645-11.349C5.265 51.312.371 43.81.371 34.81V19.58l-.001-.444c-.003-2.1-.006-3.944.625-5.6a9.555 9.555 0 0 1 2.612-3.77c1.33-1.173 3.058-1.818 5.025-2.552l.416-.155L26.121.657l.137-.052c.515-.194 1.163-.439 1.859-.54ZM28.825 15a8.074 8.074 0 0 0-8.074 8.073v4.036a13.436 13.436 0 0 0-5.381 10.766c0 7.431 6.024 13.456 13.456 13.456 7.43 0 13.455-6.025 13.455-13.456 0-4.403-2.114-8.31-5.383-10.766v-4.036A8.073 8.073 0 0 0 28.825 15Zm.045 17a3.5 3.5 0 0 1 1.5 6.663V41.5a1.5 1.5 0 0 1-3 0v-2.837A3.5 3.5 0 0 1 28.87 32Zm-.045-14a5.073 5.073 0 0 1 5.073 5.073v2.335a13.416 13.416 0 0 0-5.072-.989 13.42 13.42 0 0 0-5.075.99v-2.336A5.074 5.074 0 0 1 28.825 18Z",
50
+ fill: "#4779FF"
51
+ })));
52
+ };
53
+
54
+ exports.ReactComponent = SvgPasswordLockIcon;
@@ -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 SvgPasswordLockIcon = function SvgPasswordLockIcon(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ width: 58,
16
+ height: 70,
17
+ viewBox: "0 0 58 70",
18
+ fill: "none",
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: "M28.117.065a6.369 6.369 0 0 1 1.82 0c.697.101 1.345.346 1.86.54l.137.052L49.006 7.06l.416.155c1.967.734 3.695 1.38 5.026 2.552a9.553 9.553 0 0 1 2.611 3.77c.552 1.45.619 3.042.625 4.824V34.81c0 9-4.895 16.503-10.186 22.015-5.327 5.55-11.421 9.469-14.644 11.349l-.13.077c-.588.345-1.352.793-2.361 1.01a6.78 6.78 0 0 1-2.671 0c-1.01-.217-1.773-.665-2.361-1.01l-.13-.077c-3.223-1.88-9.318-5.8-14.645-11.349C5.265 51.312.371 43.81.371 34.81V19.58l-.001-.444c-.003-2.1-.006-3.944.625-5.6a9.555 9.555 0 0 1 2.612-3.77c1.33-1.173 3.058-1.818 5.025-2.552l.416-.155L26.121.657l.137-.052c.515-.194 1.163-.439 1.859-.54ZM28.825 15a8.074 8.074 0 0 0-8.074 8.073v4.036a13.436 13.436 0 0 0-5.381 10.766c0 7.431 6.024 13.456 13.456 13.456 7.43 0 13.455-6.025 13.455-13.456 0-4.403-2.114-8.31-5.383-10.766v-4.036A8.073 8.073 0 0 0 28.825 15Zm.045 17a3.5 3.5 0 0 1 1.5 6.663V41.5a1.5 1.5 0 0 1-3 0v-2.837A3.5 3.5 0 0 1 28.87 32Zm-.045-14a5.073 5.073 0 0 1 5.073 5.073v2.335a13.416 13.416 0 0 0-5.072-.989 13.42 13.42 0 0 0-5.075.99v-2.336A5.074 5.074 0 0 1 28.825 18Z",
26
+ fill: "#4779FF"
27
+ })));
28
+ };
29
+
30
+ export { SvgPasswordLockIcon 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 SvgSecureAction = function SvgSecureAction(_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: 59,
39
+ height: 70,
40
+ viewBox: "0 0 59 70",
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: "M30.465.065a6.368 6.368 0 0 0-1.822 0c-.696.101-1.344.346-1.858.54l-.138.052L9.575 7.059l-.415.155h-.001c-1.967.735-3.695 1.38-5.025 2.553a9.552 9.552 0 0 0-2.612 3.769c-.63 1.657-.628 3.501-.625 5.6v15.672c0 9 4.895 16.504 10.186 22.016 5.327 5.55 11.421 9.47 14.644 11.35l.13.076c.589.345 1.352.793 2.362 1.01a6.774 6.774 0 0 0 2.67 0c1.01-.217 1.773-.665 2.362-1.01l.13-.077c3.223-1.88 9.317-5.8 14.644-11.349 5.29-5.512 10.186-13.015 10.186-22.016V19.137c.003-2.1.006-3.944-.625-5.601a9.552 9.552 0 0 0-2.612-3.77c-1.33-1.172-3.058-1.817-5.025-2.551l-.416-.156L32.461.657l-.138-.052c-.514-.194-1.162-.439-1.858-.54ZM30.096 19a3.2 3.2 0 0 1 3.2 3.2V35a3.2 3.2 0 0 1-6.4 0V22.2a3.2 3.2 0 0 1 3.2-3.2Zm-3.2 28.8a3.2 3.2 0 0 1 3.2-3.2h.032a3.2 3.2 0 0 1 0 6.4h-.032a3.2 3.2 0 0 1-3.2-3.2Z",
50
+ fill: "#4779FF"
51
+ })));
52
+ };
53
+
54
+ exports.ReactComponent = SvgSecureAction;
@@ -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 SvgSecureAction = function SvgSecureAction(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 59,
15
+ height: 70,
16
+ viewBox: "0 0 59 70",
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: "M30.465.065a6.368 6.368 0 0 0-1.822 0c-.696.101-1.344.346-1.858.54l-.138.052L9.575 7.059l-.415.155h-.001c-1.967.735-3.695 1.38-5.025 2.553a9.552 9.552 0 0 0-2.612 3.769c-.63 1.657-.628 3.501-.625 5.6v15.672c0 9 4.895 16.504 10.186 22.016 5.327 5.55 11.421 9.47 14.644 11.35l.13.076c.589.345 1.352.793 2.362 1.01a6.774 6.774 0 0 0 2.67 0c1.01-.217 1.773-.665 2.362-1.01l.13-.077c3.223-1.88 9.317-5.8 14.644-11.349 5.29-5.512 10.186-13.015 10.186-22.016V19.137c.003-2.1.006-3.944-.625-5.601a9.552 9.552 0 0 0-2.612-3.77c-1.33-1.172-3.058-1.817-5.025-2.551l-.416-.156L32.461.657l-.138-.052c-.514-.194-1.162-.439-1.858-.54ZM30.096 19a3.2 3.2 0 0 1 3.2 3.2V35a3.2 3.2 0 0 1-6.4 0V22.2a3.2 3.2 0 0 1 3.2-3.2Zm-3.2 28.8a3.2 3.2 0 0 1 3.2-3.2h.032a3.2 3.2 0 0 1 0 6.4h-.032a3.2 3.2 0 0 1-3.2-3.2Z",
26
+ fill: "#4779FF"
27
+ })));
28
+ };
29
+
30
+ export { SvgSecureAction as ReactComponent };
@@ -0,0 +1,57 @@
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 _circle, _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 SvgWarningCircleOrange = function SvgWarningCircleOrange(_ref) {
34
+ var title = _ref.title,
35
+ titleId = _ref.titleId,
36
+ props = _objectWithoutProperties(_ref, _excluded);
37
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({
38
+ xmlns: "http://www.w3.org/2000/svg",
39
+ width: 69,
40
+ height: 69,
41
+ viewBox: "0 0 69 69",
42
+ fill: "none",
43
+ "aria-labelledby": titleId
44
+ }, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
45
+ id: titleId
46
+ }, title) : null, _circle || (_circle = /*#__PURE__*/React__namespace.createElement("circle", {
47
+ cx: 34.5,
48
+ cy: 34.5,
49
+ r: 34.5,
50
+ fill: "#DD8500"
51
+ })), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
52
+ d: "M38.166 20.7a3.45 3.45 0 1 0-6.9 0v13.8a3.45 3.45 0 1 0 6.9 0V20.7ZM34.716 44.85a3.45 3.45 0 1 0 0 6.9h.034a3.45 3.45 0 1 0 0-6.9h-.034Z",
53
+ fill: "#F9F9FB"
54
+ })));
55
+ };
56
+
57
+ exports.ReactComponent = SvgWarningCircleOrange;
@@ -0,0 +1,33 @@
1
+ 'use client'
2
+ import * as React from 'react';
3
+
4
+ var _circle, _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 SvgWarningCircleOrange = function SvgWarningCircleOrange(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ width: 69,
16
+ height: 69,
17
+ viewBox: "0 0 69 69",
18
+ fill: "none",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
23
+ cx: 34.5,
24
+ cy: 34.5,
25
+ r: 34.5,
26
+ fill: "#DD8500"
27
+ })), _path || (_path = /*#__PURE__*/React.createElement("path", {
28
+ d: "M38.166 20.7a3.45 3.45 0 1 0-6.9 0v13.8a3.45 3.45 0 1 0 6.9 0V20.7ZM34.716 44.85a3.45 3.45 0 1 0 0 6.9h.034a3.45 3.45 0 1 0 0-6.9h-.034Z",
29
+ fill: "#F9F9FB"
30
+ })));
31
+ };
32
+
33
+ export { SvgWarningCircleOrange as ReactComponent };