@dynamic-labs/sdk-react-core 4.46.2 → 4.47.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 (41) hide show
  1. package/CHANGELOG.md +14 -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 -2
  6. package/src/index.js +1 -1
  7. package/src/lib/context/PhantomRedirectContext/PhantomRedirectContext.cjs +22 -0
  8. package/src/lib/context/PhantomRedirectContext/PhantomRedirectContext.js +23 -1
  9. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +2 -0
  10. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +2 -0
  11. package/src/lib/shared/assets/backup-waas.cjs +52 -0
  12. package/src/lib/shared/assets/backup-waas.js +28 -0
  13. package/src/lib/shared/assets/backupArrow.cjs +54 -0
  14. package/src/lib/shared/assets/backupArrow.js +30 -0
  15. package/src/lib/shared/assets/filled-question-mark.cjs +52 -0
  16. package/src/lib/shared/assets/filled-question-mark.js +28 -0
  17. package/src/lib/shared/assets/google-drive.cjs +75 -0
  18. package/src/lib/shared/assets/google-drive.js +51 -0
  19. package/src/lib/shared/assets/index.d.ts +4 -0
  20. package/src/lib/styles/index.shadow.cjs +1 -1
  21. package/src/lib/styles/index.shadow.js +1 -1
  22. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.cjs +3 -1
  23. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.d.ts +5 -1
  24. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.js +3 -1
  25. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.cjs +3 -2
  26. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.d.ts +1 -0
  27. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.js +3 -2
  28. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.cjs +4 -0
  29. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.d.ts +2 -0
  30. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.js +4 -0
  31. package/src/lib/widgets/DynamicWidget/context/DynamicWidgetContext.types.d.ts +1 -1
  32. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.cjs +15 -5
  33. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.js +15 -5
  34. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.cjs +36 -0
  35. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.d.ts +2 -0
  36. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.js +32 -0
  37. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.cjs +191 -0
  38. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.d.ts +2 -0
  39. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.js +187 -0
  40. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/index.d.ts +2 -0
  41. package/src/lib/widgets/DynamicWidget/views/index.d.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
 
2
+ ## [4.47.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.3...v4.47.0) (2025-11-21)
3
+
4
+
5
+ ### Features
6
+
7
+ * add Google Drive backup functionality to widget ([#9899](https://github.com/dynamic-labs/dynamic-auth/issues/9899)) ([c787c5b](https://github.com/dynamic-labs/dynamic-auth/commit/c787c5baa7cf4ec4522418fdbe915923b1481312))
8
+
9
+ ### [4.46.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.2...v4.46.3) (2025-11-20)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * ensure that phantomredirect does not render if the previous request is the same ([#9920](https://github.com/dynamic-labs/dynamic-auth/issues/9920)) ([2bb9665](https://github.com/dynamic-labs/dynamic-auth/commit/2bb96654821518bee6378c65d1353a33aea1363b))
15
+
2
16
  ### [4.46.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.1...v4.46.2) (2025-11-20)
3
17
 
4
18
 
package/package.cjs CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.46.2";
6
+ var version = "4.47.0";
7
7
  var dependencies = {
8
8
  "@dynamic-labs/sdk-api-core": "0.0.821",
9
9
  "@dynamic-labs-sdk/client": "0.1.0-alpha.28",
package/package.js CHANGED
@@ -1,5 +1,5 @@
1
1
  'use client'
2
- var version = "4.46.2";
2
+ var version = "4.47.0";
3
3
  var dependencies = {
4
4
  "@dynamic-labs/sdk-api-core": "0.0.821",
5
5
  "@dynamic-labs-sdk/client": "0.1.0-alpha.28",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-react-core",
3
- "version": "4.46.2",
3
+ "version": "4.47.0",
4
4
  "dependencies": {
5
5
  "@dynamic-labs/sdk-api-core": "0.0.821",
6
6
  "@dynamic-labs-sdk/client": "0.1.0-alpha.28",
@@ -15,17 +15,17 @@
15
15
  "yup": "0.32.11",
16
16
  "react-international-phone": "4.5.0",
17
17
  "bs58": "5.0.0",
18
- "@dynamic-labs/assert-package-version": "4.46.2",
19
- "@dynamic-labs/iconic": "4.46.2",
20
- "@dynamic-labs/locale": "4.46.2",
21
- "@dynamic-labs/logger": "4.46.2",
22
- "@dynamic-labs/multi-wallet": "4.46.2",
23
- "@dynamic-labs/rpc-providers": "4.46.2",
24
- "@dynamic-labs/store": "4.46.2",
25
- "@dynamic-labs/types": "4.46.2",
26
- "@dynamic-labs/utils": "4.46.2",
27
- "@dynamic-labs/wallet-book": "4.46.2",
28
- "@dynamic-labs/wallet-connector-core": "4.46.2",
18
+ "@dynamic-labs/assert-package-version": "4.47.0",
19
+ "@dynamic-labs/iconic": "4.47.0",
20
+ "@dynamic-labs/locale": "4.47.0",
21
+ "@dynamic-labs/logger": "4.47.0",
22
+ "@dynamic-labs/multi-wallet": "4.47.0",
23
+ "@dynamic-labs/rpc-providers": "4.47.0",
24
+ "@dynamic-labs/store": "4.47.0",
25
+ "@dynamic-labs/types": "4.47.0",
26
+ "@dynamic-labs/utils": "4.47.0",
27
+ "@dynamic-labs/wallet-book": "4.47.0",
28
+ "@dynamic-labs/wallet-connector-core": "4.47.0",
29
29
  "eventemitter3": "5.0.1"
30
30
  },
31
31
  "devDependencies": {
package/src/index.cjs CHANGED
@@ -135,6 +135,7 @@ require('./lib/context/PasskeyContext/PasskeyContext.cjs');
135
135
  require('./lib/widgets/DynamicWidget/components/PasskeyCard/PasskeyCard.cjs');
136
136
  var useEmbeddedReveal = require('./lib/utils/hooks/useEmbeddedReveal/useEmbeddedReveal.cjs');
137
137
  var useEmbeddedWalletAuthenticator = require('./lib/utils/hooks/useEmbeddedWalletAuthenticator/useEmbeddedWalletAuthenticator.cjs');
138
+ var useRefreshUser = require('./lib/utils/hooks/useRefreshUser/useRefreshUser.cjs');
138
139
  require('./lib/widgets/DynamicWidget/views/CryptoComOnramp/CryptoComOnramp.cjs');
139
140
  require('./lib/context/OnrampContext/OnrampContext.cjs');
140
141
  var index$2 = require('./lib/utils/functions/walletFilters/index.cjs');
@@ -162,7 +163,6 @@ var useMultichainTokenBalances = require('./lib/utils/hooks/useMultichainTokenBa
162
163
  var useEmbeddedWallet = require('./lib/utils/hooks/useEmbeddedWallet/useEmbeddedWallet.cjs');
163
164
  var constants = require('./lib/utils/hooks/useEmbeddedWallet/useSecureEnclaveEmbeddedWallet/constants.cjs');
164
165
  var useExternalAuth = require('./lib/utils/hooks/useExternalAuth/useExternalAuth.cjs');
165
- var useRefreshUser = require('./lib/utils/hooks/useRefreshUser/useRefreshUser.cjs');
166
166
  var useWalletOptions = require('./lib/utils/hooks/useWalletOptions/useWalletOptions.cjs');
167
167
  var useSyncMfaFlow = require('./lib/utils/hooks/useSyncMfaFlow/useSyncMfaFlow.cjs');
168
168
  var useTelegramLogin = require('./lib/utils/hooks/useTelegramLogin/useTelegramLogin.cjs');
@@ -285,6 +285,7 @@ exports.useWalletDelegation = useWalletDelegation.useWalletDelegation;
285
285
  exports.useSwitchWallet = useSwitchWallet.useSwitchWallet;
286
286
  exports.useEmbeddedReveal = useEmbeddedReveal.useEmbeddedReveal;
287
287
  exports.useEmbeddedWalletAuthenticator = useEmbeddedWalletAuthenticator.useEmbeddedWalletAuthenticator;
288
+ exports.useRefreshUser = useRefreshUser.useRefreshUser;
288
289
  exports.FilterAndSortWallets = index$2.FilterAndSortWallets;
289
290
  exports.FilterBridgeChainsName = index$2.FilterBridgeChainsName;
290
291
  exports.FilterChain = index$2.FilterChain;
@@ -315,7 +316,6 @@ Object.defineProperty(exports, 'EmbeddedWalletVersion', {
315
316
  get: function () { return constants.EmbeddedWalletVersion; }
316
317
  });
317
318
  exports.useExternalAuth = useExternalAuth.useExternalAuth;
318
- exports.useRefreshUser = useRefreshUser.useRefreshUser;
319
319
  exports.useWalletOptions = useWalletOptions.useWalletOptions;
320
320
  exports.useSyncMfaFlow = useSyncMfaFlow.useSyncMfaFlow;
321
321
  exports.useTelegramLogin = useTelegramLogin.useTelegramLogin;
package/src/index.js CHANGED
@@ -131,6 +131,7 @@ import './lib/context/PasskeyContext/PasskeyContext.js';
131
131
  import './lib/widgets/DynamicWidget/components/PasskeyCard/PasskeyCard.js';
132
132
  export { useEmbeddedReveal } from './lib/utils/hooks/useEmbeddedReveal/useEmbeddedReveal.js';
133
133
  export { useEmbeddedWalletAuthenticator } from './lib/utils/hooks/useEmbeddedWalletAuthenticator/useEmbeddedWalletAuthenticator.js';
134
+ export { useRefreshUser } from './lib/utils/hooks/useRefreshUser/useRefreshUser.js';
134
135
  import './lib/widgets/DynamicWidget/views/CryptoComOnramp/CryptoComOnramp.js';
135
136
  import './lib/context/OnrampContext/OnrampContext.js';
136
137
  export { FilterAndSortWallets, FilterBridgeChainsName, FilterChain, FilterWallets, RemoveWallets, SortWallets, UniswapFilter } from './lib/utils/functions/walletFilters/index.js';
@@ -158,7 +159,6 @@ export { useMultichainTokenBalances } from './lib/utils/hooks/useMultichainToken
158
159
  export { useEmbeddedWallet } from './lib/utils/hooks/useEmbeddedWallet/useEmbeddedWallet.js';
159
160
  export { EmbeddedWalletVersion } from './lib/utils/hooks/useEmbeddedWallet/useSecureEnclaveEmbeddedWallet/constants.js';
160
161
  export { useExternalAuth } from './lib/utils/hooks/useExternalAuth/useExternalAuth.js';
161
- export { useRefreshUser } from './lib/utils/hooks/useRefreshUser/useRefreshUser.js';
162
162
  export { useWalletOptions } from './lib/utils/hooks/useWalletOptions/useWalletOptions.js';
163
163
  export { useSyncMfaFlow } from './lib/utils/hooks/useSyncMfaFlow/useSyncMfaFlow.js';
164
164
  export { useTelegramLogin } from './lib/utils/hooks/useTelegramLogin/useTelegramLogin.js';
@@ -107,11 +107,33 @@ const PhantomRedirectContext = React.createContext(undefined);
107
107
  const PhantomRedirectContextProvider = ({ children, }) => {
108
108
  const { sdkHasLoaded } = useInternalDynamicContext.useInternalDynamicContext();
109
109
  const { phantomRedirectConnector, handleConnectResponse, handleUserResponse, handleErrorResponse, } = useResponseHandlers.useResponseHandlers();
110
+ // Track the last processed redirect params to prevent infinite loops
111
+ // when useEffect re-runs due to callback dependency changes
112
+ const lastProcessedParamsRef = React.useRef('');
110
113
  React.useEffect(() => {
111
114
  if (!phantomRedirectConnector || !utils.isMobile() || !sdkHasLoaded) {
112
115
  return;
113
116
  }
114
117
  const params = utils.PlatformService.getUrl().searchParams;
118
+ // Create a unique key from the relevant params to track if we've already processed this redirect
119
+ const paramsKey = [
120
+ params.get('errorCode'),
121
+ params.get('phantom_encryption_public_key'),
122
+ params.get('data'),
123
+ params.get('nonce'),
124
+ ]
125
+ .filter(Boolean)
126
+ .join('|');
127
+ // If we've already processed these exact params, skip to prevent infinite loop
128
+ // This prevents the useEffect from processing the same redirect multiple times
129
+ // when callback dependencies change and cause the effect to re-run
130
+ if (paramsKey && paramsKey === lastProcessedParamsRef.current) {
131
+ return;
132
+ }
133
+ // Update the ref before processing to mark these params as processed
134
+ if (paramsKey) {
135
+ lastProcessedParamsRef.current = paramsKey;
136
+ }
115
137
  if (params.has('errorCode')) {
116
138
  handleErrorResponse(params);
117
139
  return;
@@ -1,6 +1,6 @@
1
1
  'use client'
2
2
  import { jsx } from 'react/jsx-runtime';
3
- import { createContext, useEffect } from 'react';
3
+ import { createContext, useRef, useEffect } from 'react';
4
4
  import { isMobile, PlatformService } from '@dynamic-labs/utils';
5
5
  import '../DynamicContext/DynamicContext.js';
6
6
  import '../../store/state/loadingAndLifecycle/loadingAndLifecycle.js';
@@ -103,11 +103,33 @@ const PhantomRedirectContext = createContext(undefined);
103
103
  const PhantomRedirectContextProvider = ({ children, }) => {
104
104
  const { sdkHasLoaded } = useInternalDynamicContext();
105
105
  const { phantomRedirectConnector, handleConnectResponse, handleUserResponse, handleErrorResponse, } = useResponseHandlers();
106
+ // Track the last processed redirect params to prevent infinite loops
107
+ // when useEffect re-runs due to callback dependency changes
108
+ const lastProcessedParamsRef = useRef('');
106
109
  useEffect(() => {
107
110
  if (!phantomRedirectConnector || !isMobile() || !sdkHasLoaded) {
108
111
  return;
109
112
  }
110
113
  const params = PlatformService.getUrl().searchParams;
114
+ // Create a unique key from the relevant params to track if we've already processed this redirect
115
+ const paramsKey = [
116
+ params.get('errorCode'),
117
+ params.get('phantom_encryption_public_key'),
118
+ params.get('data'),
119
+ params.get('nonce'),
120
+ ]
121
+ .filter(Boolean)
122
+ .join('|');
123
+ // If we've already processed these exact params, skip to prevent infinite loop
124
+ // This prevents the useEffect from processing the same redirect multiple times
125
+ // when callback dependencies change and cause the effect to re-run
126
+ if (paramsKey && paramsKey === lastProcessedParamsRef.current) {
127
+ return;
128
+ }
129
+ // Update the ref before processing to mark these params as processed
130
+ if (paramsKey) {
131
+ lastProcessedParamsRef.current = paramsKey;
132
+ }
111
133
  if (params.has('errorCode')) {
112
134
  handleErrorResponse(params);
113
135
  return;
@@ -135,6 +135,8 @@ const shouldNotRenderBottomNavBarOptions = [
135
135
  'choose-onramp-provider',
136
136
  'choose-linked-wallet',
137
137
  'manage-totp-mfa-no-footer',
138
+ 'waas-backup',
139
+ 'waas-backup-info',
138
140
  ];
139
141
  const DynamicUserProfileLayout = ({ variant, className, style, }) => {
140
142
  const { multiWallet } = useInternalDynamicContext.useInternalDynamicContext();
@@ -131,6 +131,8 @@ const shouldNotRenderBottomNavBarOptions = [
131
131
  'choose-onramp-provider',
132
132
  'choose-linked-wallet',
133
133
  'manage-totp-mfa-no-footer',
134
+ 'waas-backup',
135
+ 'waas-backup-info',
134
136
  ];
135
137
  const DynamicUserProfileLayout = ({ variant, className, style, }) => {
136
138
  const { multiWallet } = useInternalDynamicContext();
@@ -0,0 +1,52 @@
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 SvgBackupWaas = function SvgBackupWaas(_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: 65,
39
+ height: 64,
40
+ viewBox: "0 0 65 64",
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: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm10.325 34.635a.89.89 0 0 0-1.258-.016l-1.8 1.757a.89.89 0 0 0-.016 1.258l1.758 1.801a.89.89 0 0 0 1.273-1.242l-.338-.346a7.119 7.119 0 1 1-5.245.735.89.89 0 1 0-.886-1.543 8.897 8.897 0 1 0 6.321-.975l.176-.171a.89.89 0 0 0 .015-1.258ZM17.5 43.489c0 3.59 5.218 6.569 12.068 7.149a12.395 12.395 0 0 1-1.391-5.72c0-.594.041-1.179.122-1.751-4.569-.656-8.44-2.499-10.79-5-.01 1.5-.009 3.262-.009 5.322Zm.01-17.409c-.01 1.485-.01 3.246-.01 5.321 0 3.65 5.392 6.67 12.411 7.177 2.17-3.66 6.158-6.115 10.72-6.115 1.858 0 3.618.41 5.201 1.138.441-.694.68-1.433.68-2.2 0-2.225 0-3.953-.045-5.283-2.971 3.133-8.337 5.224-14.461 5.224-6.149 0-11.532-2.109-14.495-5.262ZM32.007 12C23.995 12 17.5 15.247 17.5 19.253s6.494 7.253 14.506 7.253c8.011 0 14.507-3.247 14.507-7.253S40.017 12 32.006 12Z",
48
+ fill: "#0A0B0C"
49
+ })));
50
+ };
51
+
52
+ exports.ReactComponent = SvgBackupWaas;
@@ -0,0 +1,28 @@
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 SvgBackupWaas = function SvgBackupWaas(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 65,
15
+ height: 64,
16
+ viewBox: "0 0 65 64",
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: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm10.325 34.635a.89.89 0 0 0-1.258-.016l-1.8 1.757a.89.89 0 0 0-.016 1.258l1.758 1.801a.89.89 0 0 0 1.273-1.242l-.338-.346a7.119 7.119 0 1 1-5.245.735.89.89 0 1 0-.886-1.543 8.897 8.897 0 1 0 6.321-.975l.176-.171a.89.89 0 0 0 .015-1.258ZM17.5 43.489c0 3.59 5.218 6.569 12.068 7.149a12.395 12.395 0 0 1-1.391-5.72c0-.594.041-1.179.122-1.751-4.569-.656-8.44-2.499-10.79-5-.01 1.5-.009 3.262-.009 5.322Zm.01-17.409c-.01 1.485-.01 3.246-.01 5.321 0 3.65 5.392 6.67 12.411 7.177 2.17-3.66 6.158-6.115 10.72-6.115 1.858 0 3.618.41 5.201 1.138.441-.694.68-1.433.68-2.2 0-2.225 0-3.953-.045-5.283-2.971 3.133-8.337 5.224-14.461 5.224-6.149 0-11.532-2.109-14.495-5.262ZM32.007 12C23.995 12 17.5 15.247 17.5 19.253s6.494 7.253 14.506 7.253c8.011 0 14.507-3.247 14.507-7.253S40.017 12 32.006 12Z",
24
+ fill: "#0A0B0C"
25
+ })));
26
+ };
27
+
28
+ export { SvgBackupWaas 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 SvgBackupArrow = function SvgBackupArrow(_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: 24,
39
+ height: 24,
40
+ viewBox: "0 0 24 24",
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: "M4.955 12.806a7.373 7.373 0 1 0 9.14-7.07l.35.358a.922.922 0 1 1-1.32 1.287l-1.82-1.866a.922.922 0 0 1 .015-1.303l1.866-1.82a.922.922 0 0 1 1.287 1.32l-.182.177a9.217 9.217 0 1 1-6.548 1.01.922.922 0 0 1 .918 1.598 7.37 7.37 0 0 0-3.706 6.31Z",
50
+ fill: "#7B7D86"
51
+ })));
52
+ };
53
+
54
+ exports.ReactComponent = SvgBackupArrow;
@@ -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 SvgBackupArrow = function SvgBackupArrow(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 24,
15
+ height: 24,
16
+ viewBox: "0 0 24 24",
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: "M4.955 12.806a7.373 7.373 0 1 0 9.14-7.07l.35.358a.922.922 0 1 1-1.32 1.287l-1.82-1.866a.922.922 0 0 1 .015-1.303l1.866-1.82a.922.922 0 0 1 1.287 1.32l-.182.177a9.217 9.217 0 1 1-6.548 1.01.922.922 0 0 1 .918 1.598 7.37 7.37 0 0 0-3.706 6.31Z",
26
+ fill: "#7B7D86"
27
+ })));
28
+ };
29
+
30
+ export { SvgBackupArrow as ReactComponent };
@@ -0,0 +1,52 @@
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 SvgFilledQuestionMark = function SvgFilledQuestionMark(_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: 65,
39
+ height: 64,
40
+ viewBox: "0 0 65 64",
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: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm.11 42.446c-1.561 0-2.828 1.243-2.828 2.777 0 1.533 1.267 2.777 2.828 2.777h.038c1.562 0 2.828-1.244 2.828-2.777 0-1.534-1.266-2.777-2.828-2.777h-.038Zm1.8-26.297a12.215 12.215 0 0 0-7.658 1.286c-2.326 1.25-4.14 3.242-5.07 5.659-.55 1.434.187 3.036 1.648 3.578 1.461.541 3.092-.183 3.644-1.617.428-1.116 1.294-2.103 2.495-2.75a6.458 6.458 0 0 1 3.783-.708l-1.595 10.396-.003.001c-1.488.457-2.319 2.012-1.856 3.475.463 1.464 2.048 2.283 3.539 1.828l-.839-2.652c.8 2.525.84 2.644.843 2.65l.004-.001.01-.003.032-.01.098-.031a23.601 23.601 0 0 0 1.448-.535c.906-.368 2.136-.93 3.388-1.693 2.28-1.392 5.665-4.095 5.665-8.304.004-2.583-.993-5.054-2.763-6.98-1.767-1.921-4.188-3.176-6.814-3.589Zm-.894 5.484c1.405.22 2.642.884 3.51 1.827.862.938 1.307 2.092 1.305 3.252v.005c0 1.075-.945 2.335-2.995 3.587-.913.557-1.848.988-2.566 1.28a17.913 17.913 0 0 1-1.064.393l1.81-10.344Z",
48
+ fill: "currentColor"
49
+ })));
50
+ };
51
+
52
+ exports.ReactComponent = SvgFilledQuestionMark;
@@ -0,0 +1,28 @@
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 SvgFilledQuestionMark = function SvgFilledQuestionMark(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 65,
15
+ height: 64,
16
+ viewBox: "0 0 65 64",
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: "M32.5 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32Zm.11 42.446c-1.561 0-2.828 1.243-2.828 2.777 0 1.533 1.267 2.777 2.828 2.777h.038c1.562 0 2.828-1.244 2.828-2.777 0-1.534-1.266-2.777-2.828-2.777h-.038Zm1.8-26.297a12.215 12.215 0 0 0-7.658 1.286c-2.326 1.25-4.14 3.242-5.07 5.659-.55 1.434.187 3.036 1.648 3.578 1.461.541 3.092-.183 3.644-1.617.428-1.116 1.294-2.103 2.495-2.75a6.458 6.458 0 0 1 3.783-.708l-1.595 10.396-.003.001c-1.488.457-2.319 2.012-1.856 3.475.463 1.464 2.048 2.283 3.539 1.828l-.839-2.652c.8 2.525.84 2.644.843 2.65l.004-.001.01-.003.032-.01.098-.031a23.601 23.601 0 0 0 1.448-.535c.906-.368 2.136-.93 3.388-1.693 2.28-1.392 5.665-4.095 5.665-8.304.004-2.583-.993-5.054-2.763-6.98-1.767-1.921-4.188-3.176-6.814-3.589Zm-.894 5.484c1.405.22 2.642.884 3.51 1.827.862.938 1.307 2.092 1.305 3.252v.005c0 1.075-.945 2.335-2.995 3.587-.913.557-1.848.988-2.566 1.28a17.913 17.913 0 0 1-1.064.393l1.81-10.344Z",
24
+ fill: "currentColor"
25
+ })));
26
+ };
27
+
28
+ export { SvgFilledQuestionMark as ReactComponent };
@@ -0,0 +1,75 @@
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 _g, _defs;
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 SvgGoogleDrive = function SvgGoogleDrive(_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: 20,
39
+ height: 24,
40
+ viewBox: "0 0 20 24",
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, _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
47
+ clipPath: "url(#google-drive_svg__a)"
48
+ }, /*#__PURE__*/React__namespace.createElement("path", {
49
+ d: "m1.512 21.141.882 1.705c.183.36.447.641.756.846L6.3 17.59H0c0 .397.092.795.275 1.154l1.237 2.397Z",
50
+ fill: "#0066DA"
51
+ }), /*#__PURE__*/React__namespace.createElement("path", {
52
+ d: "M10 10.41 6.85 4.308a2.22 2.22 0 0 0-.756.846L.274 16.436A2.54 2.54 0 0 0 0 17.59h6.3l3.7-7.18Z",
53
+ fill: "#00AC47"
54
+ }), /*#__PURE__*/React__namespace.createElement("path", {
55
+ d: "M16.85 23.692a2.22 2.22 0 0 0 .756-.846l.366-.705 1.753-3.397A2.54 2.54 0 0 0 20 17.59h-6.3l1.34 2.948 1.81 3.154Z",
56
+ fill: "#EA4335"
57
+ }), /*#__PURE__*/React__namespace.createElement("path", {
58
+ d: "m10 10.41 3.15-6.102A1.852 1.852 0 0 0 12.119 4H7.88a1.96 1.96 0 0 0-1.031.308L10 10.41Z",
59
+ fill: "#00832D"
60
+ }), /*#__PURE__*/React__namespace.createElement("path", {
61
+ d: "M13.7 17.59H6.3l-3.15 6.102c.31.205.665.308 1.031.308H15.82a1.96 1.96 0 0 0 1.031-.308L13.7 17.59Z",
62
+ fill: "#2684FC"
63
+ }), /*#__PURE__*/React__namespace.createElement("path", {
64
+ d: "m16.816 10.795-2.91-5.641a2.221 2.221 0 0 0-.756-.846L10 10.41l3.7 7.18h6.288a2.54 2.54 0 0 0-.274-1.154l-2.898-5.641Z",
65
+ fill: "#FFBA00"
66
+ }))), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
67
+ id: "google-drive_svg__a"
68
+ }, /*#__PURE__*/React__namespace.createElement("path", {
69
+ fill: "#fff",
70
+ transform: "translate(0 4)",
71
+ d: "M0 0h20v20H0z"
72
+ })))));
73
+ };
74
+
75
+ exports.ReactComponent = SvgGoogleDrive;
@@ -0,0 +1,51 @@
1
+ 'use client'
2
+ import * as React from 'react';
3
+
4
+ var _g, _defs;
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 SvgGoogleDrive = function SvgGoogleDrive(_ref) {
10
+ var title = _ref.title,
11
+ titleId = _ref.titleId,
12
+ props = _objectWithoutProperties(_ref, _excluded);
13
+ return /*#__PURE__*/React.createElement("svg", _extends({
14
+ width: 20,
15
+ height: 24,
16
+ viewBox: "0 0 20 24",
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(#google-drive_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ d: "m1.512 21.141.882 1.705c.183.36.447.641.756.846L6.3 17.59H0c0 .397.092.795.275 1.154l1.237 2.397Z",
26
+ fill: "#0066DA"
27
+ }), /*#__PURE__*/React.createElement("path", {
28
+ d: "M10 10.41 6.85 4.308a2.22 2.22 0 0 0-.756.846L.274 16.436A2.54 2.54 0 0 0 0 17.59h6.3l3.7-7.18Z",
29
+ fill: "#00AC47"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M16.85 23.692a2.22 2.22 0 0 0 .756-.846l.366-.705 1.753-3.397A2.54 2.54 0 0 0 20 17.59h-6.3l1.34 2.948 1.81 3.154Z",
32
+ fill: "#EA4335"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "m10 10.41 3.15-6.102A1.852 1.852 0 0 0 12.119 4H7.88a1.96 1.96 0 0 0-1.031.308L10 10.41Z",
35
+ fill: "#00832D"
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ d: "M13.7 17.59H6.3l-3.15 6.102c.31.205.665.308 1.031.308H15.82a1.96 1.96 0 0 0 1.031-.308L13.7 17.59Z",
38
+ fill: "#2684FC"
39
+ }), /*#__PURE__*/React.createElement("path", {
40
+ d: "m16.816 10.795-2.91-5.641a2.221 2.221 0 0 0-.756-.846L10 10.41l3.7 7.18h6.288a2.54 2.54 0 0 0-.274-1.154l-2.898-5.641Z",
41
+ fill: "#FFBA00"
42
+ }))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
43
+ id: "google-drive_svg__a"
44
+ }, /*#__PURE__*/React.createElement("path", {
45
+ fill: "#fff",
46
+ transform: "translate(0 4)",
47
+ d: "M0 0h20v20H0z"
48
+ })))));
49
+ };
50
+
51
+ export { SvgGoogleDrive as ReactComponent };
@@ -124,6 +124,10 @@ export { ReactComponent as WarningOrangeIcon } from './warning-orange.svg';
124
124
  export { ReactComponent as WarningRedIcon } from './warning-red.svg';
125
125
  export { ReactComponent as WorkSuitcaseIcon } from './work-suitcase.svg';
126
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';
127
131
  export { ReactComponent as UpgradeIcon } from './upgrade.svg';
128
132
  export { ReactComponent as WhiteCheck } from './white-check-black-circle.svg';
129
133
  export { ReactComponent as ConnectIcon } from './connect.svg';