@dynamic-labs/sdk-react-core 4.46.3 → 4.47.1

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 (64) hide show
  1. package/CHANGELOG.md +21 -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/ConnectWithOtpContext/utils/createEmailHandler.cjs +2 -0
  8. package/src/lib/context/ConnectWithOtpContext/utils/createEmailHandler.js +2 -0
  9. package/src/lib/context/ConnectWithOtpContext/utils/createSmsHandler.cjs +2 -0
  10. package/src/lib/context/ConnectWithOtpContext/utils/createSmsHandler.js +2 -0
  11. package/src/lib/context/SocialRedirectContext/SocialRedirectContext.cjs +2 -0
  12. package/src/lib/context/SocialRedirectContext/SocialRedirectContext.js +2 -0
  13. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.cjs +2 -0
  14. package/src/lib/layout/DynamicUserProfileLayout/DynamicUserProfileLayout.js +2 -0
  15. package/src/lib/shared/assets/backup-waas.cjs +52 -0
  16. package/src/lib/shared/assets/backup-waas.js +28 -0
  17. package/src/lib/shared/assets/backupArrow.cjs +54 -0
  18. package/src/lib/shared/assets/backupArrow.js +30 -0
  19. package/src/lib/shared/assets/filled-question-mark.cjs +52 -0
  20. package/src/lib/shared/assets/filled-question-mark.js +28 -0
  21. package/src/lib/shared/assets/google-drive.cjs +75 -0
  22. package/src/lib/shared/assets/google-drive.js +51 -0
  23. package/src/lib/shared/assets/index.d.ts +4 -0
  24. package/src/lib/styles/index.shadow.cjs +1 -1
  25. package/src/lib/styles/index.shadow.js +1 -1
  26. package/src/lib/utils/functions/clientSessionKeys/getClientSessionKeys.js +1 -1
  27. package/src/lib/utils/hooks/authenticationHooks/useConnectAndSign/useConnectAndSign.cjs +2 -0
  28. package/src/lib/utils/hooks/authenticationHooks/useConnectAndSign/useConnectAndSign.js +2 -0
  29. package/src/lib/utils/hooks/authenticationHooks/useConnectAndSignSplitSteps/useConnectAndSignSplitSteps.cjs +2 -0
  30. package/src/lib/utils/hooks/authenticationHooks/useConnectAndSignSplitSteps/useConnectAndSignSplitSteps.js +2 -0
  31. package/src/lib/utils/hooks/authenticationHooks/useSignConnectOnlyUser/useSignConnectOnlyUser.cjs +2 -0
  32. package/src/lib/utils/hooks/authenticationHooks/useSignConnectOnlyUser/useSignConnectOnlyUser.js +2 -0
  33. package/src/lib/utils/hooks/useClientSessionKeys/useClientSessionKeys.cjs +0 -6
  34. package/src/lib/utils/hooks/useClientSessionKeys/useClientSessionKeys.js +1 -7
  35. package/src/lib/utils/hooks/useExternalAuth/useExternalAuth.cjs +2 -0
  36. package/src/lib/utils/hooks/useExternalAuth/useExternalAuth.js +2 -0
  37. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.cjs +3 -1
  38. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.d.ts +5 -1
  39. package/src/lib/utils/hooks/useSocialAccounts/useSocialAccounts.js +3 -1
  40. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.cjs +6 -2
  41. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.d.ts +1 -0
  42. package/src/lib/utils/hooks/useSocialAuth/useSocialAuth.js +6 -2
  43. package/src/lib/utils/hooks/useVerifyWallet/useVerifyWallet.cjs +2 -0
  44. package/src/lib/utils/hooks/useVerifyWallet/useVerifyWallet.js +2 -0
  45. package/src/lib/views/EmailVerification/EmailVerification.cjs +2 -0
  46. package/src/lib/views/EmailVerification/EmailVerification.js +2 -0
  47. package/src/lib/views/SendBalanceView/SendBalanceView.cjs +1 -0
  48. package/src/lib/views/SendBalanceView/SendBalanceView.js +1 -0
  49. package/src/lib/views/SmsVerification/useSmsVerification/useSmsVerification.cjs +2 -0
  50. package/src/lib/views/SmsVerification/useSmsVerification/useSmsVerification.js +2 -0
  51. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.cjs +4 -0
  52. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.d.ts +2 -0
  53. package/src/lib/widgets/DynamicWidget/components/DynamicWidgetViews/mapViewToComponent.js +4 -0
  54. package/src/lib/widgets/DynamicWidget/context/DynamicWidgetContext.types.d.ts +1 -1
  55. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.cjs +15 -5
  56. package/src/lib/widgets/DynamicWidget/views/AccountAndSecuritySettingsView/EmbeddedWalletExportSection/EmbeddedWalletExportSection.js +15 -5
  57. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.cjs +36 -0
  58. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.d.ts +2 -0
  59. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupInfoView.js +32 -0
  60. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.cjs +191 -0
  61. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.d.ts +2 -0
  62. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/WaasBackupView.js +187 -0
  63. package/src/lib/widgets/DynamicWidget/views/WaasBackupView/index.d.ts +2 -0
  64. package/src/lib/widgets/DynamicWidget/views/index.d.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -1,4 +1,25 @@
1
1
 
2
+ ### [4.47.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.0...v4.47.1) (2025-11-24)
3
+
4
+
5
+ ### Features
6
+
7
+ * add aptos non-native coins to sendBalance ([#9914](https://github.com/dynamic-labs/dynamic-auth/issues/9914)) ([0f0f855](https://github.com/dynamic-labs/dynamic-auth/commit/0f0f855229a052eb280831c81d235b0164f26ff3))
8
+ * add aptos non-native token sending to dynamic widget ([#9915](https://github.com/dynamic-labs/dynamic-auth/issues/9915)) ([c91c117](https://github.com/dynamic-labs/dynamic-auth/commit/c91c1172d5185c151f9b4cac1a0757f6d72304ca))
9
+ * **react-native:** add waas wallet upgrade to react-native ([#9936](https://github.com/dynamic-labs/dynamic-auth/issues/9936)) ([024366e](https://github.com/dynamic-labs/dynamic-auth/commit/024366e179b284353d0b05667e916a01520b2874))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * remove noise from wallet connect when it is disabled ([#9945](https://github.com/dynamic-labs/dynamic-auth/issues/9945)) ([ada6511](https://github.com/dynamic-labs/dynamic-auth/commit/ada6511e2d25351f1b63312eb4810752f6d95ad6))
15
+
16
+ ## [4.47.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.3...v4.47.0) (2025-11-21)
17
+
18
+
19
+ ### Features
20
+
21
+ * 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))
22
+
2
23
  ### [4.46.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.46.2...v4.46.3) (2025-11-20)
3
24
 
4
25
 
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.3";
6
+ var version = "4.47.1";
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.3";
2
+ var version = "4.47.1";
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.3",
3
+ "version": "4.47.1",
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.3",
19
- "@dynamic-labs/iconic": "4.46.3",
20
- "@dynamic-labs/locale": "4.46.3",
21
- "@dynamic-labs/logger": "4.46.3",
22
- "@dynamic-labs/multi-wallet": "4.46.3",
23
- "@dynamic-labs/rpc-providers": "4.46.3",
24
- "@dynamic-labs/store": "4.46.3",
25
- "@dynamic-labs/types": "4.46.3",
26
- "@dynamic-labs/utils": "4.46.3",
27
- "@dynamic-labs/wallet-book": "4.46.3",
28
- "@dynamic-labs/wallet-connector-core": "4.46.3",
18
+ "@dynamic-labs/assert-package-version": "4.47.1",
19
+ "@dynamic-labs/iconic": "4.47.1",
20
+ "@dynamic-labs/locale": "4.47.1",
21
+ "@dynamic-labs/logger": "4.47.1",
22
+ "@dynamic-labs/multi-wallet": "4.47.1",
23
+ "@dynamic-labs/rpc-providers": "4.47.1",
24
+ "@dynamic-labs/store": "4.47.1",
25
+ "@dynamic-labs/types": "4.47.1",
26
+ "@dynamic-labs/utils": "4.47.1",
27
+ "@dynamic-labs/wallet-book": "4.47.1",
28
+ "@dynamic-labs/wallet-connector-core": "4.47.1",
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';
@@ -28,6 +28,7 @@ require('@dynamic-labs/locale');
28
28
  require('../../../store/state/dynamicContextProps/dynamicContextProps.cjs');
29
29
  require('../../../store/state/primaryWalletId/primaryWalletId.cjs');
30
30
  require('../../../store/state/connectedWalletsInfo/connectedWalletsInfo.cjs');
31
+ var getClientSessionKeys = require('../../../utils/functions/clientSessionKeys/getClientSessionKeys.cjs');
31
32
  require('../../../events/dynamicEvents.cjs');
32
33
  var storeTokenAndUser = require('../../../client/extension/storeTokenAndUser/storeTokenAndUser.cjs');
33
34
 
@@ -55,6 +56,7 @@ const createEmailHandler = (environmentId, { shouldRegisterSessionKeysOnSignin,
55
56
  const keypair = yield generateSessionKey();
56
57
  sessionPublicKey = keypair.publicKey;
57
58
  }
59
+ yield getClientSessionKeys.generateClientSessionKeys();
58
60
  const response = yield email.signInWithEmailVerification({
59
61
  captchaToken,
60
62
  environmentId,
@@ -24,6 +24,7 @@ import '@dynamic-labs/locale';
24
24
  import '../../../store/state/dynamicContextProps/dynamicContextProps.js';
25
25
  import '../../../store/state/primaryWalletId/primaryWalletId.js';
26
26
  import '../../../store/state/connectedWalletsInfo/connectedWalletsInfo.js';
27
+ import { generateClientSessionKeys } from '../../../utils/functions/clientSessionKeys/getClientSessionKeys.js';
27
28
  import '../../../events/dynamicEvents.js';
28
29
  import { storeTokenAndUser } from '../../../client/extension/storeTokenAndUser/storeTokenAndUser.js';
29
30
 
@@ -51,6 +52,7 @@ const createEmailHandler = (environmentId, { shouldRegisterSessionKeysOnSignin,
51
52
  const keypair = yield generateSessionKey();
52
53
  sessionPublicKey = keypair.publicKey;
53
54
  }
55
+ yield generateClientSessionKeys();
54
56
  const response = yield signInWithEmailVerification({
55
57
  captchaToken,
56
58
  environmentId,
@@ -27,6 +27,7 @@ var sms = require('../../../data/api/sms/sms.cjs');
27
27
  require('../../../store/state/dynamicContextProps/dynamicContextProps.cjs');
28
28
  require('../../../store/state/primaryWalletId/primaryWalletId.cjs');
29
29
  require('../../../store/state/connectedWalletsInfo/connectedWalletsInfo.cjs');
30
+ var getClientSessionKeys = require('../../../utils/functions/clientSessionKeys/getClientSessionKeys.cjs');
30
31
  require('../../../events/dynamicEvents.cjs');
31
32
  var storeTokenAndUser = require('../../../client/extension/storeTokenAndUser/storeTokenAndUser.cjs');
32
33
 
@@ -46,6 +47,7 @@ const createSmsHandler = (environmentId, { shouldRegisterSessionKeysOnSignin, ge
46
47
  const keypair = yield generateSessionKey();
47
48
  sessionPublicKey = keypair.publicKey;
48
49
  }
50
+ yield getClientSessionKeys.generateClientSessionKeys();
49
51
  const response = yield sms.signInWithSmsVerification({
50
52
  captchaToken,
51
53
  environmentId,
@@ -23,6 +23,7 @@ import { createSmsVerification, signInWithSmsVerification } from '../../../data/
23
23
  import '../../../store/state/dynamicContextProps/dynamicContextProps.js';
24
24
  import '../../../store/state/primaryWalletId/primaryWalletId.js';
25
25
  import '../../../store/state/connectedWalletsInfo/connectedWalletsInfo.js';
26
+ import { generateClientSessionKeys } from '../../../utils/functions/clientSessionKeys/getClientSessionKeys.js';
26
27
  import '../../../events/dynamicEvents.js';
27
28
  import { storeTokenAndUser } from '../../../client/extension/storeTokenAndUser/storeTokenAndUser.js';
28
29
 
@@ -42,6 +43,7 @@ const createSmsHandler = (environmentId, { shouldRegisterSessionKeysOnSignin, ge
42
43
  const keypair = yield generateSessionKey();
43
44
  sessionPublicKey = keypair.publicKey;
44
45
  }
46
+ yield generateClientSessionKeys();
45
47
  const response = yield signInWithSmsVerification({
46
48
  captchaToken,
47
49
  environmentId,
@@ -24,6 +24,7 @@ var updatePrimaryWalletId = require('../../utils/functions/updatePrimaryWalletId
24
24
  require('../../store/state/connectedWalletsInfo/connectedWalletsInfo.cjs');
25
25
  require('../../store/state/dynamicContextProps/dynamicContextProps.cjs');
26
26
  require('../../store/state/primaryWalletId/primaryWalletId.cjs');
27
+ var getClientSessionKeys = require('../../utils/functions/clientSessionKeys/getClientSessionKeys.cjs');
27
28
  require('@dynamic-labs-sdk/client/core');
28
29
  require('../../client/client.cjs');
29
30
  require('@dynamic-labs-sdk/client');
@@ -231,6 +232,7 @@ const SocialRedirectContextProvider = ({ children, }) => {
231
232
  yield connectWallet(socialWalletConnector);
232
233
  const address = yield socialWalletConnector.getAddress();
233
234
  walletUiUtils.disabledConfirmationOnce();
235
+ yield getClientSessionKeys.generateClientSessionKeys();
234
236
  yield verifyWallet({
235
237
  captchaToken: getCaptchaToken(),
236
238
  oauth: {
@@ -20,6 +20,7 @@ import { updatePrimaryWalletId } from '../../utils/functions/updatePrimaryWallet
20
20
  import '../../store/state/connectedWalletsInfo/connectedWalletsInfo.js';
21
21
  import '../../store/state/dynamicContextProps/dynamicContextProps.js';
22
22
  import '../../store/state/primaryWalletId/primaryWalletId.js';
23
+ import { generateClientSessionKeys } from '../../utils/functions/clientSessionKeys/getClientSessionKeys.js';
23
24
  import '@dynamic-labs-sdk/client/core';
24
25
  import '../../client/client.js';
25
26
  import '@dynamic-labs-sdk/client';
@@ -227,6 +228,7 @@ const SocialRedirectContextProvider = ({ children, }) => {
227
228
  yield connectWallet(socialWalletConnector);
228
229
  const address = yield socialWalletConnector.getAddress();
229
230
  walletUiUtils.disabledConfirmationOnce();
231
+ yield generateClientSessionKeys();
230
232
  yield verifyWallet({
231
233
  captchaToken: getCaptchaToken(),
232
234
  oauth: {
@@ -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;