wallet-stack 1.0.0-alpha.121

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 (1288) hide show
  1. package/README.md +86 -0
  2. package/app.plugin.js +1 -0
  3. package/locales/base/translation.json +2998 -0
  4. package/locales/de/translation.json +2998 -0
  5. package/locales/en-US/translation.json +2998 -0
  6. package/locales/es-419/translation.json +2998 -0
  7. package/locales/fr-FR/translation.json +2998 -0
  8. package/locales/index.ts +163 -0
  9. package/locales/it-IT/translation.json +2998 -0
  10. package/locales/pl-PL/translation.json +3004 -0
  11. package/locales/pt-BR/translation.json +2998 -0
  12. package/locales/ru-RU/translation.json +3004 -0
  13. package/locales/th-TH/translation.json +2995 -0
  14. package/locales/tr-TR/translation.json +2998 -0
  15. package/locales/uk-UA/translation.json +3004 -0
  16. package/locales/vi-VN/translation.json +2995 -0
  17. package/locales/zh-CN/translation.json +2995 -0
  18. package/metro-config.js +40 -0
  19. package/package.json +227 -0
  20. package/plugin/build/consts.d.ts +2 -0
  21. package/plugin/build/consts.js +6 -0
  22. package/plugin/build/index.d.ts +8 -0
  23. package/plugin/build/index.js +21 -0
  24. package/plugin/build/withAndroidUserAgent.d.ts +8 -0
  25. package/plugin/build/withAndroidUserAgent.js +86 -0
  26. package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.d.ts +6 -0
  27. package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.js +16 -0
  28. package/plugin/build/withIosAppDelegateResetKeychain.d.ts +2 -0
  29. package/plugin/build/withIosAppDelegateResetKeychain.js +77 -0
  30. package/plugin/build/withIosUserAgent.d.ts +8 -0
  31. package/plugin/build/withIosUserAgent.js +56 -0
  32. package/plugin/tsconfig.json +13 -0
  33. package/src/RevokePhoneNumber.tsx +117 -0
  34. package/src/abis/IWalletJumpstart.ts +472 -0
  35. package/src/account/AccountErrorScreen.test.tsx +47 -0
  36. package/src/account/AccountErrorScreen.tsx +72 -0
  37. package/src/account/AccountKeyEducation.test.tsx +20 -0
  38. package/src/account/AccountKeyEducation.tsx +83 -0
  39. package/src/account/AccountSetupFailureScreen.test.tsx +59 -0
  40. package/src/account/AccountSetupFailureScreen.tsx +42 -0
  41. package/src/account/Education.test.tsx +48 -0
  42. package/src/account/Education.tsx +235 -0
  43. package/src/account/GoldEducation.test.tsx +35 -0
  44. package/src/account/GoldEducation.tsx +82 -0
  45. package/src/account/LegalSubmenu.test.tsx +84 -0
  46. package/src/account/LegalSubmenu.tsx +74 -0
  47. package/src/account/LicenseDisclaimer.txt +15310 -0
  48. package/src/account/Licenses.test.tsx +17 -0
  49. package/src/account/Licenses.tsx +43 -0
  50. package/src/account/PreferencesSubmenu.test.tsx +66 -0
  51. package/src/account/PreferencesSubmenu.tsx +87 -0
  52. package/src/account/PrivateKey.test.tsx +241 -0
  53. package/src/account/PrivateKey.tsx +169 -0
  54. package/src/account/Profile.test.tsx +77 -0
  55. package/src/account/Profile.tsx +153 -0
  56. package/src/account/ProfileSubmenu.test.tsx +105 -0
  57. package/src/account/ProfileSubmenu.tsx +89 -0
  58. package/src/account/SecuritySubmenu.test.tsx +305 -0
  59. package/src/account/SecuritySubmenu.tsx +435 -0
  60. package/src/account/ShakeForSupport.test.tsx +23 -0
  61. package/src/account/ShakeForSupport.tsx +112 -0
  62. package/src/account/StoreWipeRecoveryScreen.test.tsx +39 -0
  63. package/src/account/StoreWipeRecoveryScreen.tsx +50 -0
  64. package/src/account/Support.test.tsx +67 -0
  65. package/src/account/Support.tsx +69 -0
  66. package/src/account/SupportContact.test.tsx +95 -0
  67. package/src/account/SupportContact.tsx +265 -0
  68. package/src/account/__snapshots__/AccountKeyEducation.test.tsx.snap +579 -0
  69. package/src/account/__snapshots__/Education.test.tsx.snap +286 -0
  70. package/src/account/__snapshots__/GoldEducation.test.tsx.snap +579 -0
  71. package/src/account/__snapshots__/Licenses.test.tsx.snap +33 -0
  72. package/src/account/__snapshots__/ShakeForSupport.test.tsx.snap +3 -0
  73. package/src/account/actions.ts +270 -0
  74. package/src/account/reducer.test.ts +28 -0
  75. package/src/account/reducer.ts +296 -0
  76. package/src/account/saga.test.ts +209 -0
  77. package/src/account/saga.ts +249 -0
  78. package/src/account/selectors.test.ts +18 -0
  79. package/src/account/selectors.ts +60 -0
  80. package/src/account/updateAccountRegistration.ts +35 -0
  81. package/src/account/utils.ts +36 -0
  82. package/src/account/zendesk.test.ts +166 -0
  83. package/src/account/zendesk.ts +199 -0
  84. package/src/alert/AlertBanner.test.tsx +123 -0
  85. package/src/alert/AlertBanner.tsx +84 -0
  86. package/src/alert/actions.ts +127 -0
  87. package/src/alert/reducer.ts +52 -0
  88. package/src/analytics/AppAnalytics.test.ts +334 -0
  89. package/src/analytics/AppAnalytics.ts +369 -0
  90. package/src/analytics/AsyncStoragePersistor.ts +34 -0
  91. package/src/analytics/Events.test.tsx +49 -0
  92. package/src/analytics/Events.tsx +648 -0
  93. package/src/analytics/InjectTraits.ts +34 -0
  94. package/src/analytics/Properties.tsx +1645 -0
  95. package/src/analytics/README.md +24 -0
  96. package/src/analytics/docs.ts +675 -0
  97. package/src/analytics/saga.test.ts +57 -0
  98. package/src/analytics/saga.ts +21 -0
  99. package/src/analytics/selectors.test.ts +391 -0
  100. package/src/analytics/selectors.ts +200 -0
  101. package/src/analytics/types.ts +46 -0
  102. package/src/app/App.test.tsx +25 -0
  103. package/src/app/App.tsx +124 -0
  104. package/src/app/AppInitGate.test.tsx +100 -0
  105. package/src/app/AppInitGate.tsx +77 -0
  106. package/src/app/AppLoading.test.tsx +11 -0
  107. package/src/app/AppLoading.tsx +79 -0
  108. package/src/app/DebugImages.tsx +110 -0
  109. package/src/app/ErrorBoundary.test.tsx +19 -0
  110. package/src/app/ErrorBoundary.tsx +41 -0
  111. package/src/app/ErrorMessages.ts +40 -0
  112. package/src/app/ErrorScreen.test.tsx +26 -0
  113. package/src/app/ErrorScreen.tsx +57 -0
  114. package/src/app/SanctionedCountryErrorScreen.tsx +37 -0
  115. package/src/app/UpgradeScreen.tsx +28 -0
  116. package/src/app/__snapshots__/AppLoading.test.tsx.snap +35 -0
  117. package/src/app/__snapshots__/ErrorScreen.test.tsx.snap +365 -0
  118. package/src/app/actions.ts +301 -0
  119. package/src/app/crowd_mobile.png +0 -0
  120. package/src/app/reducers.ts +204 -0
  121. package/src/app/saga.test.ts +651 -0
  122. package/src/app/saga.ts +367 -0
  123. package/src/app/selectors.ts +53 -0
  124. package/src/app/useDeepLinks.test.tsx +43 -0
  125. package/src/app/useDeepLinks.ts +72 -0
  126. package/src/app/utils.ts +14 -0
  127. package/src/appConfig.test.ts +37 -0
  128. package/src/appConfig.ts +20 -0
  129. package/src/backup/BackupComplete.test.tsx +61 -0
  130. package/src/backup/BackupComplete.tsx +69 -0
  131. package/src/backup/BackupIntroduction.test.tsx +37 -0
  132. package/src/backup/BackupIntroduction.tsx +157 -0
  133. package/src/backup/BackupPhrase.test.tsx +71 -0
  134. package/src/backup/BackupPhrase.tsx +208 -0
  135. package/src/backup/BackupPhraseContainer.test.tsx +43 -0
  136. package/src/backup/BackupPhraseContainer.tsx +207 -0
  137. package/src/backup/BackupQuiz.test.tsx +130 -0
  138. package/src/backup/BackupQuiz.tsx +429 -0
  139. package/src/backup/CancelConfirm.tsx +60 -0
  140. package/src/backup/QuizzBottom.tsx +57 -0
  141. package/src/backup/__snapshots__/BackupComplete.test.tsx.snap +58 -0
  142. package/src/backup/__snapshots__/BackupPhrase.test.tsx.snap +906 -0
  143. package/src/backup/__snapshots__/BackupPhraseContainer.test.tsx.snap +719 -0
  144. package/src/backup/__snapshots__/BackupQuiz.test.tsx.snap +1313 -0
  145. package/src/backup/utils.test.ts +91 -0
  146. package/src/backup/utils.ts +103 -0
  147. package/src/celoNews/CeloNewsFeed.test.tsx +157 -0
  148. package/src/celoNews/CeloNewsFeed.tsx +161 -0
  149. package/src/celoNews/CeloNewsFeedItem.test.tsx +46 -0
  150. package/src/celoNews/CeloNewsFeedItem.tsx +104 -0
  151. package/src/celoNews/types.ts +14 -0
  152. package/src/components/AccountNumber.test.tsx +25 -0
  153. package/src/components/AccountNumber.tsx +78 -0
  154. package/src/components/AccountNumberCard.tsx +23 -0
  155. package/src/components/Avatar.test.tsx +67 -0
  156. package/src/components/Avatar.tsx +72 -0
  157. package/src/components/BackButton.tsx +44 -0
  158. package/src/components/BeatingHeartLoader.tsx +39 -0
  159. package/src/components/BorderlessButton.tsx +25 -0
  160. package/src/components/BottomSheet.tsx +84 -0
  161. package/src/components/BottomSheetBase.tsx +87 -0
  162. package/src/components/BottomSheetScrollView.tsx +54 -0
  163. package/src/components/Button.test.tsx +94 -0
  164. package/src/components/Button.tsx +259 -0
  165. package/src/components/CallToActionsBar.tsx +68 -0
  166. package/src/components/CancelButton.test.tsx +11 -0
  167. package/src/components/CancelButton.tsx +58 -0
  168. package/src/components/Card.tsx +34 -0
  169. package/src/components/CircleButton.test.tsx +35 -0
  170. package/src/components/CircleButton.tsx +64 -0
  171. package/src/components/ClipboardAwarePasteButton.tsx +65 -0
  172. package/src/components/CloseButton.tsx +41 -0
  173. package/src/components/CodeInput.test.tsx +26 -0
  174. package/src/components/CodeInput.tsx +124 -0
  175. package/src/components/CodeRow.test.tsx +27 -0
  176. package/src/components/CodeRow.tsx +163 -0
  177. package/src/components/ContactCircle.test.tsx +67 -0
  178. package/src/components/ContactCircle.tsx +133 -0
  179. package/src/components/ContactCircleSelf.tsx +28 -0
  180. package/src/components/CurrencyDisplay.tsx +242 -0
  181. package/src/components/DataFieldWithCopy.tsx +75 -0
  182. package/src/components/DevSkipButton.tsx +105 -0
  183. package/src/components/Dialog.test.tsx +14 -0
  184. package/src/components/Dialog.tsx +124 -0
  185. package/src/components/Dropdown.tsx +98 -0
  186. package/src/components/EmptyView.tsx +34 -0
  187. package/src/components/ErrorMessageInline.tsx +78 -0
  188. package/src/components/ExchangesBottomSheet.test.tsx +84 -0
  189. package/src/components/ExchangesBottomSheet.tsx +74 -0
  190. package/src/components/Expandable.tsx +57 -0
  191. package/src/components/FeeDrawer.test.tsx +150 -0
  192. package/src/components/FeeDrawer.tsx +127 -0
  193. package/src/components/FeeIcon.test.tsx +14 -0
  194. package/src/components/FeeIcon.tsx +95 -0
  195. package/src/components/FeeInfoBottomSheet.test.tsx +320 -0
  196. package/src/components/FeeInfoBottomSheet.tsx +219 -0
  197. package/src/components/FilterChipsCarousel.tsx +143 -0
  198. package/src/components/FormField.tsx +23 -0
  199. package/src/components/FormLabel.tsx +21 -0
  200. package/src/components/FormTextInput.tsx +16 -0
  201. package/src/components/FullscreenCTA.test.tsx +58 -0
  202. package/src/components/FullscreenCTA.tsx +60 -0
  203. package/src/components/GasFeeWarning.test.tsx +126 -0
  204. package/src/components/GasFeeWarning.tsx +124 -0
  205. package/src/components/GradientBlock.tsx +20 -0
  206. package/src/components/HorizontalLine.tsx +18 -0
  207. package/src/components/IconWithNetworkBadge.test.tsx +49 -0
  208. package/src/components/IconWithNetworkBadge.tsx +69 -0
  209. package/src/components/InLineNotification.test.tsx +74 -0
  210. package/src/components/InLineNotification.tsx +160 -0
  211. package/src/components/InfoBottomSheet.test.tsx +55 -0
  212. package/src/components/InfoBottomSheet.tsx +79 -0
  213. package/src/components/ItemSeparator.test.tsx +8 -0
  214. package/src/components/ItemSeparator.tsx +16 -0
  215. package/src/components/KeyboardAwareScrollView.tsx +104 -0
  216. package/src/components/KeyboardSpacer.tsx +168 -0
  217. package/src/components/LabelWithInfo.tsx +57 -0
  218. package/src/components/LegacyTokenDisplay.test.tsx +282 -0
  219. package/src/components/LegacyTokenDisplay.tsx +63 -0
  220. package/src/components/LegacyTokenTotalLineItem.test.tsx +90 -0
  221. package/src/components/LegacyTokenTotalLineItem.tsx +38 -0
  222. package/src/components/LineItemRow.tsx +74 -0
  223. package/src/components/ListItem.test.tsx +19 -0
  224. package/src/components/ListItem.tsx +44 -0
  225. package/src/components/MessagingCard.tsx +21 -0
  226. package/src/components/Modal.tsx +57 -0
  227. package/src/components/NumberKeypad.test.tsx +21 -0
  228. package/src/components/NumberKeypad.tsx +102 -0
  229. package/src/components/NumberTicker.tsx +115 -0
  230. package/src/components/OnboardingCard.tsx +61 -0
  231. package/src/components/Pagination.tsx +39 -0
  232. package/src/components/PercentageIndicator.test.tsx +118 -0
  233. package/src/components/PercentageIndicator.tsx +75 -0
  234. package/src/components/PhoneNumberInput.test.tsx +99 -0
  235. package/src/components/PhoneNumberInput.tsx +132 -0
  236. package/src/components/PhoneNumberWithFlag.tsx +54 -0
  237. package/src/components/QrScanButton.test.tsx +21 -0
  238. package/src/components/QrScanButton.tsx +30 -0
  239. package/src/components/RecoveryPhraseInput.test.tsx +26 -0
  240. package/src/components/RecoveryPhraseInput.tsx +188 -0
  241. package/src/components/ReviewHeader.test.tsx +21 -0
  242. package/src/components/ReviewHeader.tsx +36 -0
  243. package/src/components/ReviewTransaction.test.tsx +474 -0
  244. package/src/components/ReviewTransaction.tsx +526 -0
  245. package/src/components/RowDivider.tsx +36 -0
  246. package/src/components/SearchInput.tsx +40 -0
  247. package/src/components/SectionHead.test.tsx +9 -0
  248. package/src/components/SectionHead.tsx +33 -0
  249. package/src/components/SegmentedControl.test.tsx +28 -0
  250. package/src/components/SegmentedControl.tsx +156 -0
  251. package/src/components/SelectRecipientButton.tsx +89 -0
  252. package/src/components/SelectionOption.test.tsx +18 -0
  253. package/src/components/SelectionOption.tsx +62 -0
  254. package/src/components/SettingsGearButton.tsx +30 -0
  255. package/src/components/SettingsItem.test.tsx +80 -0
  256. package/src/components/SettingsItem.tsx +195 -0
  257. package/src/components/SimpleMessagingCard.test.tsx +54 -0
  258. package/src/components/SimpleMessagingCard.tsx +90 -0
  259. package/src/components/SingleDigitInput.tsx +53 -0
  260. package/src/components/SkeletonPlaceholder.tsx +33 -0
  261. package/src/components/SmallButton.test.tsx +41 -0
  262. package/src/components/SmallButton.tsx +74 -0
  263. package/src/components/SmartTopAlert.test.tsx +22 -0
  264. package/src/components/SmartTopAlert.tsx +183 -0
  265. package/src/components/Switch.tsx +19 -0
  266. package/src/components/TextButton.tsx +22 -0
  267. package/src/components/TextInput.tsx +133 -0
  268. package/src/components/TextInputWithButtons.test.tsx +24 -0
  269. package/src/components/TextInputWithButtons.tsx +54 -0
  270. package/src/components/Toast.test.tsx +62 -0
  271. package/src/components/Toast.tsx +180 -0
  272. package/src/components/TokenBalance.test.tsx +389 -0
  273. package/src/components/TokenBalance.tsx +321 -0
  274. package/src/components/TokenBottomSheet.test.tsx +356 -0
  275. package/src/components/TokenBottomSheet.tsx +413 -0
  276. package/src/components/TokenDisplay.test.tsx +274 -0
  277. package/src/components/TokenDisplay.tsx +104 -0
  278. package/src/components/TokenEnterAmount.test.tsx +461 -0
  279. package/src/components/TokenEnterAmount.tsx +591 -0
  280. package/src/components/TokenIcon.test.tsx +93 -0
  281. package/src/components/TokenIcon.tsx +142 -0
  282. package/src/components/TokenTotalLineItem.test.tsx +199 -0
  283. package/src/components/TokenTotalLineItem.tsx +103 -0
  284. package/src/components/Touchable.tsx +48 -0
  285. package/src/components/ValidatedTextInput.tsx +96 -0
  286. package/src/components/WebView.tsx +43 -0
  287. package/src/components/WithPasteAware.tsx +113 -0
  288. package/src/components/WithTextInputPasteAware.tsx +51 -0
  289. package/src/components/__snapshots__/AccountNumber.test.tsx.snap +87 -0
  290. package/src/components/__snapshots__/Avatar.test.tsx.snap +435 -0
  291. package/src/components/__snapshots__/Button.test.tsx.snap +292 -0
  292. package/src/components/__snapshots__/CircleButton.test.tsx.snap +211 -0
  293. package/src/components/__snapshots__/CodeRow.test.tsx.snap +211 -0
  294. package/src/components/__snapshots__/ContactCircle.test.tsx.snap +46 -0
  295. package/src/components/__snapshots__/Dialog.test.tsx.snap +248 -0
  296. package/src/components/__snapshots__/FeeIcon.test.tsx.snap +147 -0
  297. package/src/components/__snapshots__/FullscreenCTA.test.tsx.snap +183 -0
  298. package/src/components/__snapshots__/ItemSeparator.test.tsx.snap +13 -0
  299. package/src/components/__snapshots__/NumberKeypad.test.tsx.snap +1434 -0
  300. package/src/components/__snapshots__/PhoneNumberInput.test.tsx.snap +202 -0
  301. package/src/components/__snapshots__/SectionHead.test.tsx.snap +32 -0
  302. package/src/components/__snapshots__/SelectionOption.test.tsx.snap +197 -0
  303. package/src/components/__snapshots__/SettingsItem.test.tsx.snap +226 -0
  304. package/src/components/__snapshots__/SmartTopAlert.test.tsx.snap +103 -0
  305. package/src/components/__snapshots__/TextInputWithButtons.test.tsx.snap +78 -0
  306. package/src/components/header/CustomHeader.tsx +56 -0
  307. package/src/components/multiSelect/MultiSelectBottomSheet.test.tsx +175 -0
  308. package/src/components/multiSelect/MultiSelectBottomSheet.tsx +249 -0
  309. package/src/components/multiSelect/NetworkMultiSelectBottomSheet.test.tsx +77 -0
  310. package/src/components/multiSelect/NetworkMultiSelectBottomSheet.tsx +56 -0
  311. package/src/components/useShowOrHideAnimation.tsx +33 -0
  312. package/src/config.enc +0 -0
  313. package/src/config.ts +186 -0
  314. package/src/dapps/DappShortcutTransactionRequest.test.tsx +187 -0
  315. package/src/dapps/DappShortcutTransactionRequest.tsx +270 -0
  316. package/src/dapps/DappShortcutsRewards.test.tsx +292 -0
  317. package/src/dapps/DappShortcutsRewards.tsx +284 -0
  318. package/src/dapps/DappsScreen.test.tsx +716 -0
  319. package/src/dapps/DappsScreen.tsx +365 -0
  320. package/src/dapps/saga.test.ts +194 -0
  321. package/src/dapps/saga.ts +136 -0
  322. package/src/dapps/selectors.test.ts +127 -0
  323. package/src/dapps/selectors.ts +123 -0
  324. package/src/dapps/slice.ts +110 -0
  325. package/src/dapps/types.ts +30 -0
  326. package/src/dappsExplorer/DappCard.tsx +141 -0
  327. package/src/dappsExplorer/DappFeaturedActions.test.tsx +72 -0
  328. package/src/dappsExplorer/DappFeaturedActions.tsx +121 -0
  329. package/src/dappsExplorer/DiscoverDappsCard.tsx +186 -0
  330. package/src/dappsExplorer/NoResults.tsx +126 -0
  331. package/src/dappsExplorer/TabDiscover.test.tsx +397 -0
  332. package/src/dappsExplorer/TabDiscover.tsx +76 -0
  333. package/src/dappsExplorer/searchDappList.test.tsx +69 -0
  334. package/src/dappsExplorer/searchDappList.tsx +113 -0
  335. package/src/dappsExplorer/useDappFavoritedToast.tsx +56 -0
  336. package/src/dappsExplorer/useOpenDapp.tsx +31 -0
  337. package/src/divviProtocol/saga.test.ts +51 -0
  338. package/src/divviProtocol/saga.ts +44 -0
  339. package/src/earn/ActionCard.tsx +46 -0
  340. package/src/earn/EarnDepositConfirmationScreen.test.tsx +603 -0
  341. package/src/earn/EarnDepositConfirmationScreen.tsx +596 -0
  342. package/src/earn/EarnEnterAmount.test.tsx +1296 -0
  343. package/src/earn/EarnEnterAmount.tsx +815 -0
  344. package/src/earn/EarnEntrypoint.test.tsx +100 -0
  345. package/src/earn/EarnEntrypoint.tsx +127 -0
  346. package/src/earn/EarnHome.test.tsx +237 -0
  347. package/src/earn/EarnHome.tsx +411 -0
  348. package/src/earn/EarnInfoScreen.test.tsx +96 -0
  349. package/src/earn/EarnInfoScreen.tsx +174 -0
  350. package/src/earn/EarnTabBar.test.tsx +43 -0
  351. package/src/earn/EarnTabBar.tsx +73 -0
  352. package/src/earn/EarnWithdrawConfirmationScreen.test.tsx +1022 -0
  353. package/src/earn/EarnWithdrawConfirmationScreen.tsx +476 -0
  354. package/src/earn/PoolCard.test.tsx +68 -0
  355. package/src/earn/PoolCard.tsx +218 -0
  356. package/src/earn/PoolList.tsx +87 -0
  357. package/src/earn/TabEarn.test.tsx +159 -0
  358. package/src/earn/TabEarn.tsx +354 -0
  359. package/src/earn/hooks.test.tsx +328 -0
  360. package/src/earn/hooks.ts +178 -0
  361. package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.test.tsx +411 -0
  362. package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.tsx +448 -0
  363. package/src/earn/poolInfoScreen/Cards.tsx +383 -0
  364. package/src/earn/poolInfoScreen/EarnPoolInfoScreen.test.tsx +498 -0
  365. package/src/earn/poolInfoScreen/EarnPoolInfoScreen.tsx +595 -0
  366. package/src/earn/poolInfoScreen/SafetyCard.test.tsx +108 -0
  367. package/src/earn/poolInfoScreen/SafetyCard.tsx +165 -0
  368. package/src/earn/poolInfoScreen/TokenIcons.tsx +37 -0
  369. package/src/earn/poolInfoScreen/WithdrawBottomSheet.test.tsx +235 -0
  370. package/src/earn/poolInfoScreen/WithdrawBottomSheet.tsx +168 -0
  371. package/src/earn/prepareTransactions.test.ts +616 -0
  372. package/src/earn/prepareTransactions.ts +281 -0
  373. package/src/earn/saga.test.ts +1149 -0
  374. package/src/earn/saga.ts +456 -0
  375. package/src/earn/selectors.ts +5 -0
  376. package/src/earn/simulateTransactions.test.ts +121 -0
  377. package/src/earn/simulateTransactions.ts +58 -0
  378. package/src/earn/slice.test.ts +87 -0
  379. package/src/earn/slice.ts +73 -0
  380. package/src/earn/types.ts +70 -0
  381. package/src/earn/utils.test.ts +48 -0
  382. package/src/earn/utils.ts +54 -0
  383. package/src/fiatExchanges/BidaliScreen.test.tsx +163 -0
  384. package/src/fiatExchanges/BidaliScreen.tsx +189 -0
  385. package/src/fiatExchanges/CashInSuccess.test.tsx +54 -0
  386. package/src/fiatExchanges/CashInSuccess.tsx +104 -0
  387. package/src/fiatExchanges/ExchangeQR.test.tsx +100 -0
  388. package/src/fiatExchanges/ExchangeQR.tsx +94 -0
  389. package/src/fiatExchanges/ExternalExchanges.test.tsx +67 -0
  390. package/src/fiatExchanges/ExternalExchanges.tsx +104 -0
  391. package/src/fiatExchanges/FiatExchangeAmount.test.tsx +418 -0
  392. package/src/fiatExchanges/FiatExchangeAmount.tsx +305 -0
  393. package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.test.tsx +309 -0
  394. package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.tsx +139 -0
  395. package/src/fiatExchanges/PaymentMethodSection.test.tsx +259 -0
  396. package/src/fiatExchanges/PaymentMethodSection.tsx +378 -0
  397. package/src/fiatExchanges/ReviewFees.test.tsx +74 -0
  398. package/src/fiatExchanges/ReviewFees.tsx +202 -0
  399. package/src/fiatExchanges/SelectProvider.test.tsx +415 -0
  400. package/src/fiatExchanges/SelectProvider.tsx +649 -0
  401. package/src/fiatExchanges/SimplexScreen.test.tsx +109 -0
  402. package/src/fiatExchanges/SimplexScreen.tsx +185 -0
  403. package/src/fiatExchanges/Spend.tsx +104 -0
  404. package/src/fiatExchanges/WithdrawSpend.test.tsx +37 -0
  405. package/src/fiatExchanges/WithdrawSpend.tsx +139 -0
  406. package/src/fiatExchanges/__snapshots__/CashInSuccess.test.tsx.snap +351 -0
  407. package/src/fiatExchanges/__snapshots__/FiatExchangeAmount.test.tsx.snap +397 -0
  408. package/src/fiatExchanges/__snapshots__/ReviewFees.test.tsx.snap +844 -0
  409. package/src/fiatExchanges/__snapshots__/SimplexScreen.test.tsx.snap +1083 -0
  410. package/src/fiatExchanges/actions.ts +67 -0
  411. package/src/fiatExchanges/amount.test.tsx +48 -0
  412. package/src/fiatExchanges/amount.tsx +45 -0
  413. package/src/fiatExchanges/quotes/ExternalQuote.test.ts +172 -0
  414. package/src/fiatExchanges/quotes/ExternalQuote.ts +121 -0
  415. package/src/fiatExchanges/quotes/FiatConnectQuote.test.ts +718 -0
  416. package/src/fiatExchanges/quotes/FiatConnectQuote.ts +343 -0
  417. package/src/fiatExchanges/quotes/NormalizedQuote.ts +47 -0
  418. package/src/fiatExchanges/quotes/constants.ts +63 -0
  419. package/src/fiatExchanges/quotes/normalizeQuotes.test.ts +102 -0
  420. package/src/fiatExchanges/quotes/normalizeQuotes.ts +76 -0
  421. package/src/fiatExchanges/quotes/utils.ts +31 -0
  422. package/src/fiatExchanges/reducer.ts +65 -0
  423. package/src/fiatExchanges/saga.test.ts +281 -0
  424. package/src/fiatExchanges/saga.ts +195 -0
  425. package/src/fiatExchanges/types.ts +104 -0
  426. package/src/fiatExchanges/utils.test.ts +159 -0
  427. package/src/fiatExchanges/utils.tsx +287 -0
  428. package/src/fiatconnect/FiatDetailsScreen.test.tsx +371 -0
  429. package/src/fiatconnect/FiatDetailsScreen.tsx +441 -0
  430. package/src/fiatconnect/LinkAccountScreen.test.tsx +107 -0
  431. package/src/fiatconnect/LinkAccountScreen.tsx +180 -0
  432. package/src/fiatconnect/RefetchQuoteScreen.test.tsx +119 -0
  433. package/src/fiatconnect/RefetchQuoteScreen.tsx +68 -0
  434. package/src/fiatconnect/ReviewScreen.test.tsx +505 -0
  435. package/src/fiatconnect/ReviewScreen.tsx +708 -0
  436. package/src/fiatconnect/TransferStatusScreen.test.tsx +399 -0
  437. package/src/fiatconnect/TransferStatusScreen.tsx +351 -0
  438. package/src/fiatconnect/clients.test.tsx +83 -0
  439. package/src/fiatconnect/clients.ts +69 -0
  440. package/src/fiatconnect/consts.ts +41 -0
  441. package/src/fiatconnect/fiatAccountSchemas/accountNumber.test.ts +60 -0
  442. package/src/fiatconnect/fiatAccountSchemas/accountNumber.ts +55 -0
  443. package/src/fiatconnect/fiatAccountSchemas/ibanNumber.test.ts +53 -0
  444. package/src/fiatconnect/fiatAccountSchemas/ibanNumber.ts +56 -0
  445. package/src/fiatconnect/fiatAccountSchemas/ifscAccount.test.ts +45 -0
  446. package/src/fiatconnect/fiatAccountSchemas/ifscAccount.ts +58 -0
  447. package/src/fiatconnect/fiatAccountSchemas/index.test.ts +119 -0
  448. package/src/fiatconnect/fiatAccountSchemas/index.ts +89 -0
  449. package/src/fiatconnect/fiatAccountSchemas/mobileMoney.test.ts +29 -0
  450. package/src/fiatconnect/fiatAccountSchemas/mobileMoney.ts +61 -0
  451. package/src/fiatconnect/fiatAccountSchemas/pixAccount.test.ts +45 -0
  452. package/src/fiatconnect/fiatAccountSchemas/pixAccount.ts +62 -0
  453. package/src/fiatconnect/fiatAccountSchemas/types.ts +40 -0
  454. package/src/fiatconnect/index.test.ts +244 -0
  455. package/src/fiatconnect/index.ts +179 -0
  456. package/src/fiatconnect/kyc/KycDenied.test.tsx +139 -0
  457. package/src/fiatconnect/kyc/KycDenied.tsx +144 -0
  458. package/src/fiatconnect/kyc/KycExpired.test.tsx +128 -0
  459. package/src/fiatconnect/kyc/KycExpired.tsx +127 -0
  460. package/src/fiatconnect/kyc/KycInactive.test.tsx +139 -0
  461. package/src/fiatconnect/kyc/KycInactive.tsx +100 -0
  462. package/src/fiatconnect/kyc/KycPending.test.tsx +82 -0
  463. package/src/fiatconnect/kyc/KycPending.tsx +106 -0
  464. package/src/fiatconnect/kyc/getNavigationOptions.tsx +72 -0
  465. package/src/fiatconnect/saga.test.ts +2594 -0
  466. package/src/fiatconnect/saga.ts +1133 -0
  467. package/src/fiatconnect/selectors.ts +24 -0
  468. package/src/fiatconnect/slice.test.ts +79 -0
  469. package/src/fiatconnect/slice.ts +380 -0
  470. package/src/fiatconnect/types.ts +24 -0
  471. package/src/firebase/actions.ts +11 -0
  472. package/src/firebase/db-rules.json +129 -0
  473. package/src/firebase/firebase.test.ts +190 -0
  474. package/src/firebase/firebase.ts +315 -0
  475. package/src/firebase/notifications.test.ts +180 -0
  476. package/src/firebase/notifications.ts +106 -0
  477. package/src/firebase/saga.test.ts +23 -0
  478. package/src/firebase/saga.ts +81 -0
  479. package/src/flags.ts +76 -0
  480. package/src/home/ActionsCarousel.test.tsx +162 -0
  481. package/src/home/ActionsCarousel.tsx +161 -0
  482. package/src/home/DivviBottomSheet.test.tsx +59 -0
  483. package/src/home/DivviBottomSheet.tsx +197 -0
  484. package/src/home/GetStarted.test.tsx +47 -0
  485. package/src/home/GetStarted.tsx +115 -0
  486. package/src/home/NotificationBell.test.tsx +81 -0
  487. package/src/home/NotificationBell.tsx +42 -0
  488. package/src/home/NotificationBox.test.tsx +373 -0
  489. package/src/home/NotificationBox.tsx +362 -0
  490. package/src/home/NotificationCenter.test.tsx +466 -0
  491. package/src/home/NotificationCenter.tsx +185 -0
  492. package/src/home/SendBar.tsx +60 -0
  493. package/src/home/TabHome.test.tsx +336 -0
  494. package/src/home/TabHome.tsx +181 -0
  495. package/src/home/__snapshots__/NotificationBox.test.tsx.snap +933 -0
  496. package/src/home/actions.ts +154 -0
  497. package/src/home/celebration/ConfettiCelebration.tsx +170 -0
  498. package/src/home/celebration/NftCelebration.test.tsx +137 -0
  499. package/src/home/celebration/NftCelebration.tsx +207 -0
  500. package/src/home/celebration/NftReward.test.tsx +94 -0
  501. package/src/home/celebration/NftReward.tsx +172 -0
  502. package/src/home/celebration/confettiAnimation.json +5126 -0
  503. package/src/home/celebration/utils.test.ts +32 -0
  504. package/src/home/celebration/utils.ts +21 -0
  505. package/src/home/reducers.test.ts +245 -0
  506. package/src/home/reducers.ts +191 -0
  507. package/src/home/saga.test.ts +34 -0
  508. package/src/home/saga.ts +87 -0
  509. package/src/home/selectors.test.ts +302 -0
  510. package/src/home/selectors.ts +82 -0
  511. package/src/home/types.ts +31 -0
  512. package/src/i18n/i18n.test.ts +106 -0
  513. package/src/i18n/index.ts +88 -0
  514. package/src/i18n/otaTranslations.test.ts +34 -0
  515. package/src/i18n/otaTranslations.ts +15 -0
  516. package/src/i18n/saga.test.ts +106 -0
  517. package/src/i18n/saga.ts +92 -0
  518. package/src/i18n/selectors.ts +12 -0
  519. package/src/i18n/slice.ts +46 -0
  520. package/src/i18n/useChangeLanguage.test.tsx +53 -0
  521. package/src/i18n/useChangeLanguage.ts +19 -0
  522. package/src/icons/Activity.tsx +21 -0
  523. package/src/icons/Apple.tsx +14 -0
  524. package/src/icons/ArrowDown.tsx +19 -0
  525. package/src/icons/ArrowRightThick.tsx +16 -0
  526. package/src/icons/Attention.tsx +22 -0
  527. package/src/icons/BackChevron.tsx +24 -0
  528. package/src/icons/Backspace.tsx +31 -0
  529. package/src/icons/BankIcon.tsx +23 -0
  530. package/src/icons/Celebration.tsx +18 -0
  531. package/src/icons/CheckCircle.tsx +19 -0
  532. package/src/icons/Checkmark.tsx +26 -0
  533. package/src/icons/CircleArrowIcon.tsx +39 -0
  534. package/src/icons/CircledIcon.tsx +47 -0
  535. package/src/icons/Clipboard.tsx +17 -0
  536. package/src/icons/ClockIcon.tsx +23 -0
  537. package/src/icons/CloudCheck.tsx +19 -0
  538. package/src/icons/ComingSoon.tsx +18 -0
  539. package/src/icons/CopyIcon.tsx +14 -0
  540. package/src/icons/CrossChainIndicator.tsx +36 -0
  541. package/src/icons/DataDown.tsx +16 -0
  542. package/src/icons/DataUp.tsx +16 -0
  543. package/src/icons/DownArrowIcon.tsx +37 -0
  544. package/src/icons/EarnCoins.tsx +22 -0
  545. package/src/icons/Error.tsx +30 -0
  546. package/src/icons/Exit.tsx +18 -0
  547. package/src/icons/ExploreTokens.tsx +17 -0
  548. package/src/icons/EyeIcon.tsx +22 -0
  549. package/src/icons/ForwardChevron.tsx +30 -0
  550. package/src/icons/GearIcon.tsx +19 -0
  551. package/src/icons/Google.tsx +14 -0
  552. package/src/icons/GradientIcon.tsx +70 -0
  553. package/src/icons/GreenLoadingSpinner.tsx +16 -0
  554. package/src/icons/GreenLoadingSpinnerToCheck.tsx +16 -0
  555. package/src/icons/HamburgerCard.tsx +55 -0
  556. package/src/icons/Help.tsx +21 -0
  557. package/src/icons/HiddenEyeIcon.tsx +26 -0
  558. package/src/icons/ImageErrorIcon.tsx +26 -0
  559. package/src/icons/InfoIcon.tsx +33 -0
  560. package/src/icons/KeylessBackup.tsx +32 -0
  561. package/src/icons/LinkArrow.tsx +27 -0
  562. package/src/icons/LoadingSpinner.tsx +25 -0
  563. package/src/icons/Lock.tsx +19 -0
  564. package/src/icons/MagicWand.tsx +20 -0
  565. package/src/icons/Manage.tsx +22 -0
  566. package/src/icons/NotificationBellIcon.tsx +25 -0
  567. package/src/icons/OpenLinkIcon.tsx +18 -0
  568. package/src/icons/Paste.tsx +33 -0
  569. package/src/icons/Phone.tsx +20 -0
  570. package/src/icons/Preferences.tsx +21 -0
  571. package/src/icons/QRCode.tsx +14 -0
  572. package/src/icons/RadioButton.tsx +39 -0
  573. package/src/icons/RedLoadingSpinnerToInfo.tsx +16 -0
  574. package/src/icons/Refresh.tsx +30 -0
  575. package/src/icons/Reward.tsx +29 -0
  576. package/src/icons/ScanIcon.tsx +26 -0
  577. package/src/icons/Search.tsx +25 -0
  578. package/src/icons/Share.tsx +21 -0
  579. package/src/icons/Social.tsx +15 -0
  580. package/src/icons/Stack.tsx +21 -0
  581. package/src/icons/StarOutline.tsx +14 -0
  582. package/src/icons/SwapAndDeposit.tsx +20 -0
  583. package/src/icons/SwapArrows.tsx +20 -0
  584. package/src/icons/ThumbsUpIllustration.tsx +64 -0
  585. package/src/icons/Times.tsx +38 -0
  586. package/src/icons/TripleDotVertical.tsx +18 -0
  587. package/src/icons/Trophy.tsx +18 -0
  588. package/src/icons/User.tsx +19 -0
  589. package/src/icons/Warning.tsx +22 -0
  590. package/src/icons/biometry/Face.tsx +28 -0
  591. package/src/icons/biometry/FaceID.tsx +18 -0
  592. package/src/icons/biometry/Fingerprint.tsx +16 -0
  593. package/src/icons/biometry/Iris.tsx +22 -0
  594. package/src/icons/biometry/TouchID.tsx +44 -0
  595. package/src/icons/loadingSpinnerGreen.json +401 -0
  596. package/src/icons/lottie-json/greenLoadingSpinner.json +370 -0
  597. package/src/icons/lottie-json/greenLoadingSpinnerToCheck.json +666 -0
  598. package/src/icons/lottie-json/redLoadingSpinnerToInfo.json +950 -0
  599. package/src/icons/navigator/Discover.tsx +17 -0
  600. package/src/icons/navigator/Home.tsx +18 -0
  601. package/src/icons/navigator/Wallet.tsx +18 -0
  602. package/src/icons/quick-actions/Add.tsx +18 -0
  603. package/src/icons/quick-actions/More.tsx +19 -0
  604. package/src/icons/quick-actions/Receive.tsx +18 -0
  605. package/src/icons/quick-actions/Send.tsx +18 -0
  606. package/src/icons/quick-actions/Withdraw.tsx +18 -0
  607. package/src/identity/actions.ts +244 -0
  608. package/src/identity/contactMapping.test.ts +391 -0
  609. package/src/identity/contactMapping.ts +422 -0
  610. package/src/identity/reducer.ts +243 -0
  611. package/src/identity/saga.test.ts +103 -0
  612. package/src/identity/saga.ts +122 -0
  613. package/src/identity/secureSend.ts +171 -0
  614. package/src/identity/selectors.ts +16 -0
  615. package/src/identity/types.ts +14 -0
  616. package/src/images/Blob.tsx +20 -0
  617. package/src/images/Celebration.tsx +35 -0
  618. package/src/images/DivviLogo.tsx +22 -0
  619. package/src/images/GuideKeyIcon.tsx +51 -0
  620. package/src/images/Images.ts +22 -0
  621. package/src/images/Logo.tsx +66 -0
  622. package/src/images/LogoHeart.tsx +206 -0
  623. package/src/images/NftReceivedIcon.tsx +18 -0
  624. package/src/images/NftSentIcon.tsx +18 -0
  625. package/src/images/Palm.tsx +21 -0
  626. package/src/images/Star.tsx +20 -0
  627. package/src/images/WelcomeLogo.tsx +19 -0
  628. package/src/images/assets/account-key-1.png +0 -0
  629. package/src/images/assets/account-key-1@1.5x.png +0 -0
  630. package/src/images/assets/account-key-1@2x.png +0 -0
  631. package/src/images/assets/account-key-1@3x.png +0 -0
  632. package/src/images/assets/account-key-1@4x.png +0 -0
  633. package/src/images/assets/account-key-2.png +0 -0
  634. package/src/images/assets/account-key-2@1.5x.png +0 -0
  635. package/src/images/assets/account-key-2@2x.png +0 -0
  636. package/src/images/assets/account-key-2@3x.png +0 -0
  637. package/src/images/assets/account-key-2@4x.png +0 -0
  638. package/src/images/assets/account-key-3.png +0 -0
  639. package/src/images/assets/account-key-3@1.5x.png +0 -0
  640. package/src/images/assets/account-key-3@2x.png +0 -0
  641. package/src/images/assets/account-key-3@3x.png +0 -0
  642. package/src/images/assets/account-key-3@4x.png +0 -0
  643. package/src/images/assets/account-key-4.png +0 -0
  644. package/src/images/assets/account-key-4@1.5x.png +0 -0
  645. package/src/images/assets/account-key-4@2x.png +0 -0
  646. package/src/images/assets/account-key-4@3x.png +0 -0
  647. package/src/images/assets/account-key-4@4x.png +0 -0
  648. package/src/images/assets/biometry-face-id.png +0 -0
  649. package/src/images/assets/biometry-face-id@1.5x.png +0 -0
  650. package/src/images/assets/biometry-face-id@2x.png +0 -0
  651. package/src/images/assets/biometry-face-id@3x.png +0 -0
  652. package/src/images/assets/biometry-face-id@4x.png +0 -0
  653. package/src/images/assets/biometry-face.png +0 -0
  654. package/src/images/assets/biometry-face@1.5x.png +0 -0
  655. package/src/images/assets/biometry-face@2x.png +0 -0
  656. package/src/images/assets/biometry-face@3x.png +0 -0
  657. package/src/images/assets/biometry-face@4x.png +0 -0
  658. package/src/images/assets/biometry-fingerprint.png +0 -0
  659. package/src/images/assets/biometry-fingerprint@1.5x.png +0 -0
  660. package/src/images/assets/biometry-fingerprint@2x.png +0 -0
  661. package/src/images/assets/biometry-fingerprint@3x.png +0 -0
  662. package/src/images/assets/biometry-fingerprint@4x.png +0 -0
  663. package/src/images/assets/biometry-iris.png +0 -0
  664. package/src/images/assets/biometry-iris@1.5x.png +0 -0
  665. package/src/images/assets/biometry-iris@2x.png +0 -0
  666. package/src/images/assets/biometry-iris@3x.png +0 -0
  667. package/src/images/assets/biometry-iris@4x.png +0 -0
  668. package/src/images/assets/biometry-touch-id.png +0 -0
  669. package/src/images/assets/biometry-touch-id@1.5x.png +0 -0
  670. package/src/images/assets/biometry-touch-id@2x.png +0 -0
  671. package/src/images/assets/biometry-touch-id@3x.png +0 -0
  672. package/src/images/assets/biometry-touch-id@4x.png +0 -0
  673. package/src/images/assets/celo-education-1.png +0 -0
  674. package/src/images/assets/celo-education-1@1.5x.png +0 -0
  675. package/src/images/assets/celo-education-1@2x.png +0 -0
  676. package/src/images/assets/celo-education-1@3x.png +0 -0
  677. package/src/images/assets/celo-education-1@4x.png +0 -0
  678. package/src/images/assets/celo-education-2.png +0 -0
  679. package/src/images/assets/celo-education-2@1.5x.png +0 -0
  680. package/src/images/assets/celo-education-2@2x.png +0 -0
  681. package/src/images/assets/celo-education-2@3x.png +0 -0
  682. package/src/images/assets/celo-education-2@4x.png +0 -0
  683. package/src/images/assets/celo-education-3.png +0 -0
  684. package/src/images/assets/celo-education-3@1.5x.png +0 -0
  685. package/src/images/assets/celo-education-3@2x.png +0 -0
  686. package/src/images/assets/celo-education-3@3x.png +0 -0
  687. package/src/images/assets/celo-education-3@4x.png +0 -0
  688. package/src/images/assets/celo-education-4.png +0 -0
  689. package/src/images/assets/celo-education-4@1.5x.png +0 -0
  690. package/src/images/assets/celo-education-4@2x.png +0 -0
  691. package/src/images/assets/celo-education-4@3x.png +0 -0
  692. package/src/images/assets/celo-education-4@4x.png +0 -0
  693. package/src/images/assets/earn-card-background.png +0 -0
  694. package/src/images/assets/earn-card-background@1.5x.png +0 -0
  695. package/src/images/assets/earn-card-background@2x.png +0 -0
  696. package/src/images/assets/earn-card-background@3x.png +0 -0
  697. package/src/images/assets/earn-card-background@4x.png +0 -0
  698. package/src/images/assets/email.png +0 -0
  699. package/src/images/assets/email@1.5x.png +0 -0
  700. package/src/images/assets/email@2x.png +0 -0
  701. package/src/images/assets/email@3x.png +0 -0
  702. package/src/images/assets/email@4x.png +0 -0
  703. package/src/images/assets/fiat-exchange.png +0 -0
  704. package/src/images/assets/fiat-exchange@1.5x.png +0 -0
  705. package/src/images/assets/fiat-exchange@2x.png +0 -0
  706. package/src/images/assets/fiat-exchange@3x.png +0 -0
  707. package/src/images/assets/fiat-exchange@4x.png +0 -0
  708. package/src/images/assets/get-verified.png +0 -0
  709. package/src/images/assets/get-verified@1.5x.png +0 -0
  710. package/src/images/assets/get-verified@2x.png +0 -0
  711. package/src/images/assets/get-verified@3x.png +0 -0
  712. package/src/images/assets/get-verified@4x.png +0 -0
  713. package/src/images/assets/learn-celo.png +0 -0
  714. package/src/images/assets/learn-celo@1.5x.png +0 -0
  715. package/src/images/assets/learn-celo@2x.png +0 -0
  716. package/src/images/assets/learn-celo@3x.png +0 -0
  717. package/src/images/assets/learn-celo@4x.png +0 -0
  718. package/src/images/assets/pie.png +0 -0
  719. package/src/images/assets/pie@1.5x.png +0 -0
  720. package/src/images/assets/pie@2x.png +0 -0
  721. package/src/images/assets/pie@3x.png +0 -0
  722. package/src/images/assets/pie@4x.png +0 -0
  723. package/src/images/assets/points-card-background.png +0 -0
  724. package/src/images/assets/points-card-background@1.5x.png +0 -0
  725. package/src/images/assets/points-card-background@2x.png +0 -0
  726. package/src/images/assets/points-card-background@3x.png +0 -0
  727. package/src/images/assets/points-card-background@4x.png +0 -0
  728. package/src/images/assets/points-illustration.png +0 -0
  729. package/src/images/assets/points-illustration@1.5x.png +0 -0
  730. package/src/images/assets/points-illustration@2x.png +0 -0
  731. package/src/images/assets/points-illustration@3x.png +0 -0
  732. package/src/images/assets/points-illustration@4x.png +0 -0
  733. package/src/images/assets/wallet-safe.png +0 -0
  734. package/src/images/assets/wallet-safe@1.5x.png +0 -0
  735. package/src/images/assets/wallet-safe@2x.png +0 -0
  736. package/src/images/assets/wallet-safe@3x.png +0 -0
  737. package/src/images/assets/wallet-safe@4x.png +0 -0
  738. package/src/import/ImportWallet.test.tsx +102 -0
  739. package/src/import/ImportWallet.tsx +277 -0
  740. package/src/import/actions.ts +41 -0
  741. package/src/import/reducer.ts +28 -0
  742. package/src/import/saga.test.ts +165 -0
  743. package/src/import/saga.ts +250 -0
  744. package/src/in-house-liquidity/client.test.ts +34 -0
  745. package/src/in-house-liquidity/client.ts +38 -0
  746. package/src/in-house-liquidity/index.test.ts +258 -0
  747. package/src/in-house-liquidity/index.ts +187 -0
  748. package/src/index.d.ts +25 -0
  749. package/src/jumpstart/JumpstartTransactionDetailsScreen.test.tsx +329 -0
  750. package/src/jumpstart/JumpstartTransactionDetailsScreen.tsx +407 -0
  751. package/src/jumpstart/fetchClaimStatus.ts +46 -0
  752. package/src/jumpstart/saga.test.ts +117 -0
  753. package/src/jumpstart/saga.ts +82 -0
  754. package/src/jumpstart/selectors.ts +5 -0
  755. package/src/jumpstart/slice.test.ts +51 -0
  756. package/src/jumpstart/slice.ts +64 -0
  757. package/src/keylessBackup/EnvelopeIcon.tsx +19 -0
  758. package/src/keylessBackup/KeylessBackupCancelButton.test.tsx +55 -0
  759. package/src/keylessBackup/KeylessBackupCancelButton.tsx +26 -0
  760. package/src/keylessBackup/KeylessBackupIntro.test.tsx +76 -0
  761. package/src/keylessBackup/KeylessBackupIntro.tsx +175 -0
  762. package/src/keylessBackup/KeylessBackupPhoneCodeInput.test.tsx +256 -0
  763. package/src/keylessBackup/KeylessBackupPhoneCodeInput.tsx +257 -0
  764. package/src/keylessBackup/KeylessBackupPhoneInput.test.tsx +67 -0
  765. package/src/keylessBackup/KeylessBackupPhoneInput.tsx +203 -0
  766. package/src/keylessBackup/KeylessBackupProgress.test.tsx +371 -0
  767. package/src/keylessBackup/KeylessBackupProgress.tsx +495 -0
  768. package/src/keylessBackup/LinkPhoneNumber.test.tsx +57 -0
  769. package/src/keylessBackup/LinkPhoneNumber.tsx +107 -0
  770. package/src/keylessBackup/SignInWithEmail.test.tsx +271 -0
  771. package/src/keylessBackup/SignInWithEmail.tsx +348 -0
  772. package/src/keylessBackup/SmartphoneIcon.tsx +19 -0
  773. package/src/keylessBackup/WalletSecurityPrimer.test.tsx +31 -0
  774. package/src/keylessBackup/WalletSecurityPrimer.tsx +81 -0
  775. package/src/keylessBackup/encryption.test.ts +139 -0
  776. package/src/keylessBackup/encryption.ts +121 -0
  777. package/src/keylessBackup/hooks.ts +179 -0
  778. package/src/keylessBackup/index.test.ts +204 -0
  779. package/src/keylessBackup/index.ts +98 -0
  780. package/src/keylessBackup/keychain.test.ts +55 -0
  781. package/src/keylessBackup/keychain.ts +30 -0
  782. package/src/keylessBackup/saga.test.ts +427 -0
  783. package/src/keylessBackup/saga.ts +264 -0
  784. package/src/keylessBackup/selectors.ts +8 -0
  785. package/src/keylessBackup/slice.ts +108 -0
  786. package/src/keylessBackup/types.ts +25 -0
  787. package/src/keylessBackup/web3auth.test.ts +74 -0
  788. package/src/keylessBackup/web3auth.ts +54 -0
  789. package/src/language/Language.test.tsx +41 -0
  790. package/src/language/Language.tsx +99 -0
  791. package/src/localCurrency/SelectLocalCurrency.test.tsx +19 -0
  792. package/src/localCurrency/SelectLocalCurrency.tsx +83 -0
  793. package/src/localCurrency/actions.ts +49 -0
  794. package/src/localCurrency/consts.test.ts +9 -0
  795. package/src/localCurrency/consts.ts +97 -0
  796. package/src/localCurrency/convert.test.ts +30 -0
  797. package/src/localCurrency/convert.ts +66 -0
  798. package/src/localCurrency/hooks.test.tsx +146 -0
  799. package/src/localCurrency/hooks.ts +47 -0
  800. package/src/localCurrency/reducer.ts +59 -0
  801. package/src/localCurrency/saga.test.ts +34 -0
  802. package/src/localCurrency/saga.ts +61 -0
  803. package/src/localCurrency/selectors.test.ts +47 -0
  804. package/src/localCurrency/selectors.ts +66 -0
  805. package/src/localCurrency/types.ts +6 -0
  806. package/src/missingGlobals.ts +21 -0
  807. package/src/nameGenerator/index.test.ts +46 -0
  808. package/src/nameGenerator/index.ts +17 -0
  809. package/src/nameGenerator/names.ts +938 -0
  810. package/src/navigator/DemoModeAuthBlock.test.tsx +60 -0
  811. package/src/navigator/DemoModeAuthBlock.tsx +61 -0
  812. package/src/navigator/DemoModeChipIndicator.test.tsx +109 -0
  813. package/src/navigator/DemoModeChipIndicator.tsx +76 -0
  814. package/src/navigator/Headers.tsx +263 -0
  815. package/src/navigator/NavigationService.test.tsx +74 -0
  816. package/src/navigator/NavigationService.ts +244 -0
  817. package/src/navigator/Navigator.tsx +760 -0
  818. package/src/navigator/NavigatorWrapper.test.tsx +65 -0
  819. package/src/navigator/NavigatorWrapper.tsx +248 -0
  820. package/src/navigator/QRNavigator.test.tsx +61 -0
  821. package/src/navigator/QRNavigator.tsx +144 -0
  822. package/src/navigator/Screens.tsx +107 -0
  823. package/src/navigator/ScrollAwareHeader.tsx +57 -0
  824. package/src/navigator/SettingsMenu.test.tsx +253 -0
  825. package/src/navigator/SettingsMenu.tsx +353 -0
  826. package/src/navigator/TabNavigator.test.tsx +181 -0
  827. package/src/navigator/TabNavigator.tsx +142 -0
  828. package/src/navigator/TopBarButton.test.tsx +44 -0
  829. package/src/navigator/TopBarButton.tsx +88 -0
  830. package/src/navigator/TopBarIconButtonV2.test.tsx +17 -0
  831. package/src/navigator/TopBarIconButtonV2.tsx +85 -0
  832. package/src/navigator/initialRoute.test.tsx +32 -0
  833. package/src/navigator/initialRoute.tsx +29 -0
  834. package/src/navigator/types.tsx +346 -0
  835. package/src/networkInfo/actions.ts +28 -0
  836. package/src/networkInfo/reducer.ts +44 -0
  837. package/src/networkInfo/saga.test.ts +43 -0
  838. package/src/networkInfo/saga.ts +100 -0
  839. package/src/networkInfo/selectors.ts +4 -0
  840. package/src/nfts/NftMedia.test.tsx +114 -0
  841. package/src/nfts/NftMedia.tsx +205 -0
  842. package/src/nfts/NftsInfoCarousel.test.tsx +218 -0
  843. package/src/nfts/NftsInfoCarousel.tsx +344 -0
  844. package/src/nfts/NftsLoadError.test.tsx +37 -0
  845. package/src/nfts/NftsLoadError.tsx +111 -0
  846. package/src/nfts/saga.test.tsx +502 -0
  847. package/src/nfts/saga.ts +198 -0
  848. package/src/nfts/selectors.ts +13 -0
  849. package/src/nfts/slice.ts +45 -0
  850. package/src/nfts/types.ts +51 -0
  851. package/src/notifications/NotificationList.test.tsx +25 -0
  852. package/src/notifications/NotificationList.tsx +45 -0
  853. package/src/notifications/__snapshots__/NotificationList.test.tsx.snap +35 -0
  854. package/src/notifications/types.ts +31 -0
  855. package/src/onboarding/LanguageButton.tsx +26 -0
  856. package/src/onboarding/TopBarTextButtonOnboarding.test.tsx +22 -0
  857. package/src/onboarding/TopBarTextButtonOnboarding.tsx +17 -0
  858. package/src/onboarding/actions.ts +46 -0
  859. package/src/onboarding/registration/EnableBiometry.test.tsx +168 -0
  860. package/src/onboarding/registration/EnableBiometry.tsx +207 -0
  861. package/src/onboarding/registration/ImportSelect.test.tsx +54 -0
  862. package/src/onboarding/registration/ImportSelect.tsx +167 -0
  863. package/src/onboarding/registration/OnboardingRecoveryPhrase.test.tsx +83 -0
  864. package/src/onboarding/registration/OnboardingRecoveryPhrase.tsx +197 -0
  865. package/src/onboarding/registration/ProtectWallet.test.tsx +96 -0
  866. package/src/onboarding/registration/ProtectWallet.tsx +153 -0
  867. package/src/onboarding/registration/RegulatoryTerms.test.tsx +75 -0
  868. package/src/onboarding/registration/RegulatoryTerms.tsx +174 -0
  869. package/src/onboarding/registration/SelectCountry.test.tsx +51 -0
  870. package/src/onboarding/registration/SelectCountry.tsx +88 -0
  871. package/src/onboarding/registration/SelectCountryItem.tsx +59 -0
  872. package/src/onboarding/steps.test.ts +464 -0
  873. package/src/onboarding/steps.ts +303 -0
  874. package/src/onboarding/success/OnboardingSuccessScreen.tsx +64 -0
  875. package/src/onboarding/types.ts +14 -0
  876. package/src/onboarding/welcome/Welcome.test.tsx +234 -0
  877. package/src/onboarding/welcome/Welcome.tsx +182 -0
  878. package/src/pincode/PasswordCache.ts +71 -0
  879. package/src/pincode/Pincode.tsx +109 -0
  880. package/src/pincode/PincodeDisplay.tsx +92 -0
  881. package/src/pincode/PincodeEnter.test.tsx +85 -0
  882. package/src/pincode/PincodeEnter.tsx +103 -0
  883. package/src/pincode/PincodeLock.test.tsx +144 -0
  884. package/src/pincode/PincodeLock.tsx +121 -0
  885. package/src/pincode/PincodeSet.test.tsx +213 -0
  886. package/src/pincode/PincodeSet.tsx +263 -0
  887. package/src/pincode/authentication.test.ts +654 -0
  888. package/src/pincode/authentication.ts +425 -0
  889. package/src/points/ActivityCard.test.tsx +63 -0
  890. package/src/points/ActivityCard.tsx +101 -0
  891. package/src/points/ActivityCardSection.tsx +126 -0
  892. package/src/points/PointsDiscoverCard.test.tsx +106 -0
  893. package/src/points/PointsDiscoverCard.tsx +122 -0
  894. package/src/points/PointsHistoryBottomSheet.test.tsx +179 -0
  895. package/src/points/PointsHistoryBottomSheet.tsx +264 -0
  896. package/src/points/PointsHome.test.tsx +230 -0
  897. package/src/points/PointsHome.tsx +357 -0
  898. package/src/points/PointsIntro.test.tsx +67 -0
  899. package/src/points/PointsIntro.tsx +85 -0
  900. package/src/points/cardDefinitions.tsx +94 -0
  901. package/src/points/cardSort.test.ts +58 -0
  902. package/src/points/cardSort.ts +18 -0
  903. package/src/points/saga.test.ts +769 -0
  904. package/src/points/saga.ts +379 -0
  905. package/src/points/selectors.test.ts +73 -0
  906. package/src/points/selectors.ts +68 -0
  907. package/src/points/slice.test.ts +76 -0
  908. package/src/points/slice.ts +164 -0
  909. package/src/points/types.ts +94 -0
  910. package/src/positions/HooksPreviewModeBanner.test.tsx +56 -0
  911. package/src/positions/HooksPreviewModeBanner.tsx +69 -0
  912. package/src/positions/actions.ts +11 -0
  913. package/src/positions/getPositionBalanceUsd.ts +14 -0
  914. package/src/positions/saga.test.ts +468 -0
  915. package/src/positions/saga.ts +378 -0
  916. package/src/positions/selectors.test.ts +281 -0
  917. package/src/positions/selectors.ts +189 -0
  918. package/src/positions/slice.ts +219 -0
  919. package/src/positions/transactions.ts +21 -0
  920. package/src/positions/types.ts +137 -0
  921. package/src/priceHistory/PriceHistoryChart.test.tsx +200 -0
  922. package/src/priceHistory/PriceHistoryChart.tsx +345 -0
  923. package/src/priceHistory/__snapshots__/PriceHistoryChart.test.tsx.snap +419 -0
  924. package/src/priceHistory/saga.test.ts +120 -0
  925. package/src/priceHistory/saga.ts +62 -0
  926. package/src/priceHistory/selectors.test.ts +52 -0
  927. package/src/priceHistory/selectors.ts +17 -0
  928. package/src/priceHistory/slice.test.ts +94 -0
  929. package/src/priceHistory/slice.ts +68 -0
  930. package/src/public/components/Button.tsx +66 -0
  931. package/src/public/createApp.ts +67 -0
  932. package/src/public/getFees.test.ts +24 -0
  933. package/src/public/getFees.ts +8 -0
  934. package/src/public/getPublicClient.test.ts +19 -0
  935. package/src/public/getPublicClient.ts +25 -0
  936. package/src/public/getWalletClient.test.ts +30 -0
  937. package/src/public/getWalletClient.ts +32 -0
  938. package/src/public/hooks/toAsyncStatus.ts +19 -0
  939. package/src/public/hooks/usePrepareTransactions.test.ts +63 -0
  940. package/src/public/hooks/usePrepareTransactions.ts +15 -0
  941. package/src/public/hooks/usePublicClient.test.ts +24 -0
  942. package/src/public/hooks/usePublicClient.ts +7 -0
  943. package/src/public/hooks/useSendTransactions.test.ts +49 -0
  944. package/src/public/hooks/useSendTransactions.ts +15 -0
  945. package/src/public/hooks/useWallet.ts +52 -0
  946. package/src/public/hooks/useWalletClient.test.ts +35 -0
  947. package/src/public/hooks/useWalletClient.ts +24 -0
  948. package/src/public/index.ts +29 -0
  949. package/src/public/navigate.test.ts +168 -0
  950. package/src/public/navigate.ts +168 -0
  951. package/src/public/prepareTransactions.test.ts +76 -0
  952. package/src/public/prepareTransactions.ts +78 -0
  953. package/src/public/sendTransactions.test.ts +37 -0
  954. package/src/public/sendTransactions.ts +25 -0
  955. package/src/public/types.tsx +278 -0
  956. package/src/public/unlockAccount.test.ts +79 -0
  957. package/src/public/unlockAccount.ts +43 -0
  958. package/src/qrcode/NotAuthorizedView.test.tsx +11 -0
  959. package/src/qrcode/NotAuthorizedView.tsx +47 -0
  960. package/src/qrcode/QRCode.test.tsx +117 -0
  961. package/src/qrcode/QRCode.tsx +190 -0
  962. package/src/qrcode/QRScanner.tsx +249 -0
  963. package/src/qrcode/QRTabBar.tsx +137 -0
  964. package/src/qrcode/StyledQRCode.tsx +31 -0
  965. package/src/qrcode/StyledQRGen.tsx +26 -0
  966. package/src/qrcode/__snapshots__/NotAuthorizedView.test.tsx.snap +90 -0
  967. package/src/qrcode/schema.test.ts +121 -0
  968. package/src/qrcode/schema.ts +45 -0
  969. package/src/qrcode/utils.test.tsx +293 -0
  970. package/src/qrcode/utils.ts +230 -0
  971. package/src/recaptcha/RecaptchaService.ts +105 -0
  972. package/src/recaptcha/saga.ts +24 -0
  973. package/src/recipients/RecipientItemV2.test.tsx +153 -0
  974. package/src/recipients/RecipientItemV2.tsx +142 -0
  975. package/src/recipients/RecipientPickerV2.test.tsx +110 -0
  976. package/src/recipients/RecipientPickerV2.tsx +61 -0
  977. package/src/recipients/recipient.test.ts +113 -0
  978. package/src/recipients/recipient.ts +313 -0
  979. package/src/recipients/reducer.ts +107 -0
  980. package/src/recipients/resolve-id.ts +21 -0
  981. package/src/recipients/saga.ts +87 -0
  982. package/src/redux/apiReducersList.ts +11 -0
  983. package/src/redux/createMigrate.test.ts +113 -0
  984. package/src/redux/createMigrate.ts +46 -0
  985. package/src/redux/hooks.ts +7 -0
  986. package/src/redux/migrations.test.ts +1925 -0
  987. package/src/redux/migrations.ts +2069 -0
  988. package/src/redux/persist-helper.ts +14 -0
  989. package/src/redux/reducers.ts +29 -0
  990. package/src/redux/reducersForSchemaGeneration.ts +20 -0
  991. package/src/redux/reducersList.ts +57 -0
  992. package/src/redux/sagas-helpers.ts +29 -0
  993. package/src/redux/sagas.test.ts +19 -0
  994. package/src/redux/sagas.ts +155 -0
  995. package/src/redux/selectors.ts +3 -0
  996. package/src/redux/store.test.ts +391 -0
  997. package/src/redux/store.ts +151 -0
  998. package/src/send/EnterAmount.test.tsx +1030 -0
  999. package/src/send/EnterAmount.tsx +360 -0
  1000. package/src/send/EnterAmountOptions.tsx +170 -0
  1001. package/src/send/PasteAddressButton.tsx +81 -0
  1002. package/src/send/SelectRecipientButtons.test.tsx +256 -0
  1003. package/src/send/SelectRecipientButtons.tsx +202 -0
  1004. package/src/send/SendConfirmation.test.tsx +233 -0
  1005. package/src/send/SendConfirmation.tsx +317 -0
  1006. package/src/send/SendEnterAmount.test.tsx +235 -0
  1007. package/src/send/SendEnterAmount.tsx +123 -0
  1008. package/src/send/SendSelectRecipient.test.tsx +765 -0
  1009. package/src/send/SendSelectRecipient.tsx +504 -0
  1010. package/src/send/SendSelectRecipientSearchInput.tsx +72 -0
  1011. package/src/send/ValidateRecipientAccount.test.tsx +181 -0
  1012. package/src/send/ValidateRecipientAccount.tsx +387 -0
  1013. package/src/send/ValidateRecipientIntro.test.tsx +61 -0
  1014. package/src/send/ValidateRecipientIntro.tsx +136 -0
  1015. package/src/send/__snapshots__/ValidateRecipientAccount.test.tsx.snap +777 -0
  1016. package/src/send/actions.ts +142 -0
  1017. package/src/send/hooks.test.tsx +371 -0
  1018. package/src/send/hooks.ts +445 -0
  1019. package/src/send/reducers.ts +90 -0
  1020. package/src/send/saga.test.ts +247 -0
  1021. package/src/send/saga.ts +176 -0
  1022. package/src/send/selectors.ts +22 -0
  1023. package/src/send/types.ts +18 -0
  1024. package/src/send/useFetchRecipientVerificationStatus.ts +67 -0
  1025. package/src/send/usePrepareSendTransactions.test.ts +135 -0
  1026. package/src/send/usePrepareSendTransactions.ts +69 -0
  1027. package/src/send/utils.test.ts +361 -0
  1028. package/src/send/utils.ts +116 -0
  1029. package/src/sendCalls/constants.ts +11 -0
  1030. package/src/sendCalls/saga.test.ts +31 -0
  1031. package/src/sendCalls/saga.ts +15 -0
  1032. package/src/sendCalls/selectors.test.ts +40 -0
  1033. package/src/sendCalls/selectors.ts +8 -0
  1034. package/src/sendCalls/slice.test.ts +85 -0
  1035. package/src/sendCalls/slice.ts +72 -0
  1036. package/src/sentry/Sentry.ts +75 -0
  1037. package/src/sentry/SentrySpanHub.ts +27 -0
  1038. package/src/sentry/SentrySpans.tsx +57 -0
  1039. package/src/sentry/actions.ts +11 -0
  1040. package/src/sentry/saga.ts +8 -0
  1041. package/src/shared/DisconnectBanner.test.tsx +25 -0
  1042. package/src/shared/DisconnectBanner.tsx +81 -0
  1043. package/src/shared/__snapshots__/DisconnectBanner.test.tsx.snap +29 -0
  1044. package/src/shared/conts.ts +16 -0
  1045. package/src/statsig/client.test.ts +62 -0
  1046. package/src/statsig/client.ts +97 -0
  1047. package/src/statsig/constants.ts +177 -0
  1048. package/src/statsig/index.test.ts +351 -0
  1049. package/src/statsig/index.ts +186 -0
  1050. package/src/statsig/selector.ts +17 -0
  1051. package/src/statsig/types.ts +52 -0
  1052. package/src/storage/keychain.tsx +92 -0
  1053. package/src/styles/accessibility.ts +7 -0
  1054. package/src/styles/appTheme.ts +13 -0
  1055. package/src/styles/colors.tsx +78 -0
  1056. package/src/styles/fonts.tsx +143 -0
  1057. package/src/styles/hapticFeedback.ts +27 -0
  1058. package/src/styles/progressDots.ts +23 -0
  1059. package/src/styles/styles.ts +67 -0
  1060. package/src/styles/variables.tsx +16 -0
  1061. package/src/swap/SwapAmountInput.tsx +228 -0
  1062. package/src/swap/SwapScreen.test.tsx +1927 -0
  1063. package/src/swap/SwapScreen.tsx +1156 -0
  1064. package/src/swap/SwapScreenV2.test.tsx +2180 -0
  1065. package/src/swap/SwapScreenV2.tsx +1201 -0
  1066. package/src/swap/SwapTransactionDetails.test.tsx +217 -0
  1067. package/src/swap/SwapTransactionDetails.tsx +274 -0
  1068. package/src/swap/UnfavorableRateBottomSheet.test.tsx +150 -0
  1069. package/src/swap/UnfavorableRateBottomSheet.tsx +288 -0
  1070. package/src/swap/getCrossChainFee.ts +64 -0
  1071. package/src/swap/getSwapTxsAnalyticsProperties.tsx +49 -0
  1072. package/src/swap/saga.test.ts +863 -0
  1073. package/src/swap/saga.ts +324 -0
  1074. package/src/swap/selectors.ts +5 -0
  1075. package/src/swap/slice.test.ts +133 -0
  1076. package/src/swap/slice.ts +93 -0
  1077. package/src/swap/types.ts +98 -0
  1078. package/src/swap/useFilterChips.ts +69 -0
  1079. package/src/swap/useSwapQuote.ts +292 -0
  1080. package/src/tokens/AssetList.test.tsx +270 -0
  1081. package/src/tokens/AssetList.tsx +388 -0
  1082. package/src/tokens/AssetTabBar.test.tsx +130 -0
  1083. package/src/tokens/AssetTabBar.tsx +106 -0
  1084. package/src/tokens/PasteButton.test.tsx +30 -0
  1085. package/src/tokens/PasteButton.tsx +34 -0
  1086. package/src/tokens/PositionIcon.tsx +22 -0
  1087. package/src/tokens/PositionItem.test.tsx +132 -0
  1088. package/src/tokens/PositionItem.tsx +131 -0
  1089. package/src/tokens/TabWallet.test.tsx +386 -0
  1090. package/src/tokens/TabWallet.tsx +237 -0
  1091. package/src/tokens/TokenBalanceItem.test.tsx +119 -0
  1092. package/src/tokens/TokenBalanceItem.tsx +143 -0
  1093. package/src/tokens/TokenDetails.test.tsx +476 -0
  1094. package/src/tokens/TokenDetails.tsx +391 -0
  1095. package/src/tokens/TokenDetailsMoreActions.test.tsx +120 -0
  1096. package/src/tokens/TokenDetailsMoreActions.tsx +87 -0
  1097. package/src/tokens/TokenImport.test.tsx +376 -0
  1098. package/src/tokens/TokenImport.tsx +381 -0
  1099. package/src/tokens/hooks.test.tsx +419 -0
  1100. package/src/tokens/hooks.ts +164 -0
  1101. package/src/tokens/saga.test.ts +527 -0
  1102. package/src/tokens/saga.ts +248 -0
  1103. package/src/tokens/selectors.test.ts +888 -0
  1104. package/src/tokens/selectors.ts +516 -0
  1105. package/src/tokens/slice.ts +173 -0
  1106. package/src/tokens/types.ts +29 -0
  1107. package/src/tokens/utils.test.tsx +330 -0
  1108. package/src/tokens/utils.ts +218 -0
  1109. package/src/transactions/NoActivity.test.tsx +30 -0
  1110. package/src/transactions/NoActivity.tsx +73 -0
  1111. package/src/transactions/TransferAvatars.tsx +39 -0
  1112. package/src/transactions/UserSection.tsx +133 -0
  1113. package/src/transactions/api.ts +67 -0
  1114. package/src/transactions/apiTestHelpers.ts +55 -0
  1115. package/src/transactions/feed/ClaimRewardFeedItem.test.tsx +164 -0
  1116. package/src/transactions/feed/ClaimRewardFeedItem.tsx +142 -0
  1117. package/src/transactions/feed/DepositOrWithdrawFeedItem.test.tsx +138 -0
  1118. package/src/transactions/feed/DepositOrWithdrawFeedItem.tsx +178 -0
  1119. package/src/transactions/feed/EarnFeedItem.test.tsx +189 -0
  1120. package/src/transactions/feed/EarnFeedItem.tsx +190 -0
  1121. package/src/transactions/feed/NftFeedItem.test.tsx +102 -0
  1122. package/src/transactions/feed/NftFeedItem.tsx +99 -0
  1123. package/src/transactions/feed/SwapFeedItem.test.tsx +137 -0
  1124. package/src/transactions/feed/SwapFeedItem.tsx +128 -0
  1125. package/src/transactions/feed/TokenApprovalFeedItem.test.tsx +37 -0
  1126. package/src/transactions/feed/TokenApprovalFeedItem.tsx +59 -0
  1127. package/src/transactions/feed/TransactionDetails.tsx +160 -0
  1128. package/src/transactions/feed/TransactionDetailsScreen.test.tsx +1228 -0
  1129. package/src/transactions/feed/TransactionDetailsScreen.tsx +157 -0
  1130. package/src/transactions/feed/TransactionFeed.test.tsx +474 -0
  1131. package/src/transactions/feed/TransactionFeed.tsx +172 -0
  1132. package/src/transactions/feed/TransactionFeedItemImage.test.tsx +66 -0
  1133. package/src/transactions/feed/TransactionFeedItemImage.tsx +116 -0
  1134. package/src/transactions/feed/TransactionFeedV2.test.tsx +576 -0
  1135. package/src/transactions/feed/TransactionFeedV2.tsx +504 -0
  1136. package/src/transactions/feed/TransactionPrimaryAction.test.tsx +62 -0
  1137. package/src/transactions/feed/TransactionPrimaryAction.tsx +83 -0
  1138. package/src/transactions/feed/TransactionStatusIndicator.test.tsx +15 -0
  1139. package/src/transactions/feed/TransactionStatusIndicator.tsx +63 -0
  1140. package/src/transactions/feed/TransferFeedItem.test.tsx +579 -0
  1141. package/src/transactions/feed/TransferFeedItem.tsx +148 -0
  1142. package/src/transactions/feed/detailContent/ClaimRewardContent.tsx +84 -0
  1143. package/src/transactions/feed/detailContent/DepositOrWithdrawContent.tsx +169 -0
  1144. package/src/transactions/feed/detailContent/EarnContent.tsx +259 -0
  1145. package/src/transactions/feed/detailContent/FeeRowItem.tsx +90 -0
  1146. package/src/transactions/feed/detailContent/RewardReceivedContent.tsx +46 -0
  1147. package/src/transactions/feed/detailContent/SwapContent.tsx +127 -0
  1148. package/src/transactions/feed/detailContent/TokenApprovalDetails.tsx +59 -0
  1149. package/src/transactions/feed/detailContent/TransferReceivedContent.tsx +73 -0
  1150. package/src/transactions/feed/detailContent/TransferSentContent.tsx +117 -0
  1151. package/src/transactions/feed/queryHelper.test.ts +229 -0
  1152. package/src/transactions/feed/queryHelper.ts +941 -0
  1153. package/src/transactions/saga.test.ts +482 -0
  1154. package/src/transactions/saga.ts +322 -0
  1155. package/src/transactions/selectors.ts +120 -0
  1156. package/src/transactions/send.test.ts +29 -0
  1157. package/src/transactions/send.ts +51 -0
  1158. package/src/transactions/slice.test.ts +372 -0
  1159. package/src/transactions/slice.ts +262 -0
  1160. package/src/transactions/transferFeedUtils.ts +225 -0
  1161. package/src/transactions/types.ts +355 -0
  1162. package/src/transactions/utils.test.ts +98 -0
  1163. package/src/transactions/utils.ts +122 -0
  1164. package/src/utils/AppRestart.ts +12 -0
  1165. package/src/utils/Countries.test.ts +180 -0
  1166. package/src/utils/Countries.ts +121 -0
  1167. package/src/utils/IosVersionUtils.ts +6 -0
  1168. package/src/utils/Logger.test.ts +113 -0
  1169. package/src/utils/Logger.ts +304 -0
  1170. package/src/utils/LoggerLevels.ts +6 -0
  1171. package/src/utils/account.test.ts +390 -0
  1172. package/src/utils/account.ts +497 -0
  1173. package/src/utils/accountChecker.test.ts +75 -0
  1174. package/src/utils/accountChecker.ts +77 -0
  1175. package/src/utils/address.test.ts +62 -0
  1176. package/src/utils/address.ts +34 -0
  1177. package/src/utils/aes.test.ts +36 -0
  1178. package/src/utils/aes.ts +46 -0
  1179. package/src/utils/contacts.ts +78 -0
  1180. package/src/utils/contentTranslations.ts +18 -0
  1181. package/src/utils/country.json +257 -0
  1182. package/src/utils/countryFeatures.ts +21 -0
  1183. package/src/utils/currencies.ts +72 -0
  1184. package/src/utils/displayFormatting.ts +11 -0
  1185. package/src/utils/ensureError.test.ts +32 -0
  1186. package/src/utils/ensureError.ts +13 -0
  1187. package/src/utils/fetchWithTimeout.test.ts +55 -0
  1188. package/src/utils/fetchWithTimeout.ts +15 -0
  1189. package/src/utils/formatting.test.ts +93 -0
  1190. package/src/utils/formatting.ts +107 -0
  1191. package/src/utils/getCountryEmoji.ts +28 -0
  1192. package/src/utils/getPhoneHash.ts +29 -0
  1193. package/src/utils/gql.ts +8 -0
  1194. package/src/utils/identifier.ts +81 -0
  1195. package/src/utils/inputValidation.test.ts +53 -0
  1196. package/src/utils/inputValidation.ts +76 -0
  1197. package/src/utils/io.ts +39 -0
  1198. package/src/utils/linking.ts +42 -0
  1199. package/src/utils/moneyAmount.ts +16 -0
  1200. package/src/utils/parsing.test.ts +30 -0
  1201. package/src/utils/parsing.ts +20 -0
  1202. package/src/utils/phoneNumber.test.ts +236 -0
  1203. package/src/utils/phoneNumbers.ts +240 -0
  1204. package/src/utils/random.test.ts +53 -0
  1205. package/src/utils/random.ts +48 -0
  1206. package/src/utils/safely.test.ts +101 -0
  1207. package/src/utils/safely.ts +30 -0
  1208. package/src/utils/sleep.ts +3 -0
  1209. package/src/utils/string.ts +8 -0
  1210. package/src/utils/stylize.ts +30 -0
  1211. package/src/utils/time.test.ts +76 -0
  1212. package/src/utils/time.ts +99 -0
  1213. package/src/utils/typescript.ts +38 -0
  1214. package/src/utils/useBackHandler.ts +10 -0
  1215. package/src/utils/useClipboard.ts +56 -0
  1216. package/src/utils/versionCheck.test.ts +47 -0
  1217. package/src/utils/versionCheck.ts +35 -0
  1218. package/src/verify/ResendButtonWithDelay.tsx +56 -0
  1219. package/src/verify/VerificationCodeInput.test.tsx +87 -0
  1220. package/src/verify/VerificationCodeInput.tsx +103 -0
  1221. package/src/verify/VerificationCodeInputScreen.test.tsx +364 -0
  1222. package/src/verify/VerificationCodeInputScreen.tsx +138 -0
  1223. package/src/verify/VerificationStartScreen.test.tsx +218 -0
  1224. package/src/verify/VerificationStartScreen.tsx +311 -0
  1225. package/src/verify/hooks.test.tsx +85 -0
  1226. package/src/verify/hooks.ts +261 -0
  1227. package/src/viem/estimateFeesPerGas.test.ts +129 -0
  1228. package/src/viem/estimateFeesPerGas.ts +70 -0
  1229. package/src/viem/getLockableWallet.test.ts +263 -0
  1230. package/src/viem/getLockableWallet.ts +120 -0
  1231. package/src/viem/index.ts +86 -0
  1232. package/src/viem/keychainAccountToAccount.test.ts +55 -0
  1233. package/src/viem/keychainAccountToAccount.ts +58 -0
  1234. package/src/viem/prepareTransactions.test.ts +1668 -0
  1235. package/src/viem/prepareTransactions.ts +741 -0
  1236. package/src/viem/preparedTransactionSerialization.test.ts +192 -0
  1237. package/src/viem/preparedTransactionSerialization.ts +100 -0
  1238. package/src/viem/saga.test.ts +227 -0
  1239. package/src/viem/saga.ts +118 -0
  1240. package/src/walletConnect/actions.test.ts +94 -0
  1241. package/src/walletConnect/actions.ts +232 -0
  1242. package/src/walletConnect/analytics.ts +58 -0
  1243. package/src/walletConnect/capabilities.ts +175 -0
  1244. package/src/walletConnect/constants.ts +157 -0
  1245. package/src/walletConnect/reducer.ts +105 -0
  1246. package/src/walletConnect/request.test.ts +698 -0
  1247. package/src/walletConnect/request.ts +225 -0
  1248. package/src/walletConnect/saga.test.ts +1875 -0
  1249. package/src/walletConnect/saga.ts +1159 -0
  1250. package/src/walletConnect/screens/ActionRequest.test.tsx +727 -0
  1251. package/src/walletConnect/screens/ActionRequest.tsx +227 -0
  1252. package/src/walletConnect/screens/ActionRequestPayload.tsx +84 -0
  1253. package/src/walletConnect/screens/ConnectionTimedOut.tsx +34 -0
  1254. package/src/walletConnect/screens/DappsDisclaimer.tsx +31 -0
  1255. package/src/walletConnect/screens/EstimatedNetworkFee.test.tsx +88 -0
  1256. package/src/walletConnect/screens/EstimatedNetworkFee.tsx +134 -0
  1257. package/src/walletConnect/screens/Logos.tsx +89 -0
  1258. package/src/walletConnect/screens/RequestContent.tsx +224 -0
  1259. package/src/walletConnect/screens/SessionRequest.test.tsx +274 -0
  1260. package/src/walletConnect/screens/SessionRequest.tsx +221 -0
  1261. package/src/walletConnect/screens/Sessions.tsx +142 -0
  1262. package/src/walletConnect/screens/WalletConnectRequest.tsx +63 -0
  1263. package/src/walletConnect/screens/useIsDappListed.test.tsx +51 -0
  1264. package/src/walletConnect/screens/useIsDappListed.ts +20 -0
  1265. package/src/walletConnect/selectors.ts +25 -0
  1266. package/src/walletConnect/types.ts +99 -0
  1267. package/src/walletConnect/walletConnect.ts +87 -0
  1268. package/src/web3/KeychainAccounts.test.ts +326 -0
  1269. package/src/web3/KeychainAccounts.ts +309 -0
  1270. package/src/web3/actions.ts +30 -0
  1271. package/src/web3/consts.ts +8 -0
  1272. package/src/web3/contracts.test.ts +115 -0
  1273. package/src/web3/contracts.ts +74 -0
  1274. package/src/web3/networkConfig.test.ts +18 -0
  1275. package/src/web3/networkConfig.ts +621 -0
  1276. package/src/web3/reducer.ts +39 -0
  1277. package/src/web3/saga.test.ts +200 -0
  1278. package/src/web3/saga.ts +229 -0
  1279. package/src/web3/selectors.ts +47 -0
  1280. package/src/web3/utils.test.ts +12 -0
  1281. package/src/web3/utils.ts +11 -0
  1282. package/src/webview/WebViewAndroidBottomSheet.test.tsx +58 -0
  1283. package/src/webview/WebViewAndroidBottomSheet.tsx +83 -0
  1284. package/src/webview/WebViewScreen.test.tsx +84 -0
  1285. package/src/webview/WebViewScreen.tsx +296 -0
  1286. package/src/webview/__snapshots__/WebViewAndroidBottomSheet.test.tsx.snap +249 -0
  1287. package/tsconfig.base.json +5 -0
  1288. package/tsconfig.json +30 -0
@@ -0,0 +1,64 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors from 'src/styles/colors'
4
+
5
+ export interface Props {
6
+ size?: number
7
+ }
8
+
9
+ const ThumbsUpIllustration = ({ size = 72 }: Props) => (
10
+ <Svg width={size} height={size} fill="none" viewBox="0 0 72 72">
11
+ <Path
12
+ fill={`${Colors.accent}80`}
13
+ fill-rule="evenodd"
14
+ d="M22.95 36.138c3.475-7.578-.332-20.911 13.982-18.603 14.466 2.332 18.973 15.283 24.031 24.732 3.496 6.532 4.065 12.679-2.324 15.822-12.112 5.958-27.096 16.644-43.348 6.647-16.057-9.875 3.113-18.682 7.66-28.598Z"
15
+ clip-rule="evenodd"
16
+ />
17
+ <Path
18
+ fill={Colors.contentPrimary}
19
+ d="M17.982 49.61c.3-.306.768-.87 1.22-1.403a30.77 30.77 0 0 0-1.22 1.403ZM52.278 26.061l-.554-.27.554.27Z"
20
+ />
21
+ <Path
22
+ fill={Colors.contentPrimary}
23
+ d="m31.02 17.198-.043-.11c.067-1.649.079-.478.128-2.005-.067-.612 0-2.543-.067-3.064v-.356a1.41 1.41 0 0 1 0-.33c-.055-.228-.061-.773-.104-1.227v.252l-.085-1.079c0-.417 0-.527.03-.067 0-.356-.097-.87-.177-1.514l-.128-1.055-.036-.288v-.257a1.316 1.316 0 0 1 0-.374 2.221 2.221 0 0 1 1.329-1.434 2.255 2.255 0 0 1 1.085-.141c.093.006.185.025.274.055.093.016.183.045.268.086a.865.865 0 0 1 .39.233c.275.31.503.659.677 1.035.213.417.396.859.61 1.318.318.782.511 1.61.572 2.452.07 1.256.07 2.514 0 3.77.043-.393.061-1.312.116-1.655 0 .784-.049 1.158-.037 1.514-.069.803-.095 1.609-.079 2.415l.037.27v.416c.064.587.18 1.168.347 1.735.085.3.128.392.152.466a6.54 6.54 0 0 0 .902 1.79 7.334 7.334 0 0 0 1.646 1.642c.462.327.957.606 1.475.834-.152-.068-.536-.276-.067-.068.224.11.46.196.7.258.348.098.72.165.836.202.379.066.761.107 1.146.122h.378c.268.05 1.633-.036.822.037.464 0 .902-.067 1.22-.116l-.61.055a27.957 27.957 0 0 0 3.285-.533l-.542.085c.644-.14 1.295-.246 1.95-.318l-.89.135c1.445-.27 2.304-.417 3.48-.534l-.42.031c.7-.086 1.404-.114 2.109-.086 1.06.028 2.1.292 3.047.772a6.742 6.742 0 0 1 2.383 1.999c.371.52.634 1.11.774 1.734-.042-.196-.055-.392-.103-.582.12.35.19.715.207 1.085a3.578 3.578 0 0 0-.17-.613c0 .073.036.153.048.245v.294c.02.246.008.493-.037.736a4.118 4.118 0 0 1-.81 1.839 5.6 5.6 0 0 1-1.865 1.66c-.415.23-.842.434-1.28.614-.464.184-.933.374-1.408.533a30.557 30.557 0 0 1-5.486 1.379 31.69 31.69 0 0 1-3.547.319c-.975 0-.177-.055-.164-.061-1.183.036-.512.049-1.518.042h.213c-.445 0-.853-.036-.883 0 .548 0 .316.068.548.105h-.652a2.525 2.525 0 0 1-.53-.092h.054l-.2-.055a1.283 1.283 0 0 1-.287-.105 1.876 1.876 0 0 1-.872-.84 2.272 2.272 0 0 1-.298-1.311c.02-.233.077-.46.17-.674.1-.247.22-.485.36-.711a7.892 7.892 0 0 1 2.097-2.385c0 .037-.36.3-.665.613.231-.222.478-.426.738-.613-.427.264.695-.509.372-.294a6.782 6.782 0 0 1 2.249-.993 9.163 9.163 0 0 1 2.328-.22 7.16 7.16 0 0 1 1.603-.338 9.208 9.208 0 0 1 1.121-.043c.177.012.354.012.53 0 .337.155.662.331.976.528a6.724 6.724 0 0 0-1.402-.711h-.092a8.894 8.894 0 0 0-1.328-.411 6.33 6.33 0 0 1 1.828.533 6.902 6.902 0 0 0-1.883-.582c-.756-.141.097-.05-.823-.178a11.658 11.658 0 0 0-2.292.067 7.598 7.598 0 0 0-2.236.614 9.8 9.8 0 0 0-1.902 1.133l.14-.122a9.172 9.172 0 0 0-1.993 2.047c.19-.245.36-.447 0 .086-.32.442-.594.916-.817 1.416a3.548 3.548 0 0 0-.304 1.575c.023.334.095.662.213.974a3.383 3.383 0 0 0 1.64 1.84c.24.127.496.222.761.281.136.035.275.058.415.068.132.008.264.008.396 0h1.524c2.388.007 4.77-.254 7.1-.779a32.458 32.458 0 0 0 3.56-1.078 38.84 38.84 0 0 0 1.651-.662 8.433 8.433 0 0 0 1.548-.859c.761-.503 1.4-1.17 1.87-1.954.471-.784.76-1.664.849-2.575v.184a5.086 5.086 0 0 0-.646-2.844 7.223 7.223 0 0 0-2.243-2.421 8.356 8.356 0 0 0-3.31-1.367 13.867 13.867 0 0 0-3.657-.055c-2.389.257-4.656.876-6.704 1.078a9.439 9.439 0 0 1-2.846-.092 5.386 5.386 0 0 1-2.127-.937 6.736 6.736 0 0 1-1.829-2.354c.207.466.11.319-.06-.043a7.946 7.946 0 0 1-.39-1.226c-.044-.196-.056-.22-.062-.245a6.459 6.459 0 0 1-.213-1.588c-.08-.864 0-2.36.055-4.26a14.24 14.24 0 0 0-.262-3.064 8.735 8.735 0 0 0-.525-1.612 16.619 16.619 0 0 0-.694-1.514 4.108 4.108 0 0 0-1.201-1.471 2.566 2.566 0 0 0-.463-.22 2.37 2.37 0 0 0-.445-.148c-.3-.081-.61-.12-.92-.116a3.678 3.678 0 0 0-2.938 1.587 2.91 2.91 0 0 0-.53 1.508v.398c0 .129 0 .203.03.3l.067.534c.08.68.146 1.226.195 1.63.134.84.165 1.802.244 2.752.079.95.042 1.9.085 2.734v-.165a51.654 51.654 0 0 1-.42 6.89c-.116.74-.226 1.495-.336 2.212-.11.717-.28 1.397-.396 2.023-.231 1.256-.53 2.237-.646 2.745l.073-.27c-.217.98-.506 1.94-.865 2.875a10.598 10.598 0 0 1-.549 1.888l-.676 1.84c-.275.76-.64 1.556-.927 2.236v-.061c-.297.725-.63 1.435-1 2.127-.377.754-.743 1.471-.974 1.839a64.169 64.169 0 0 1-4.346 6.552l-1.176 1.293-.159.203c-.134.346-.21.713-.225 1.085.03.373.377.435 1.627-.908v.062l.463-.558c.567-.65.75-1.024.744-.95-.232.319-.47.613-.726.938.561-.662.183-.19 0 .08a7.14 7.14 0 0 0 .61-.785c.091-.141-.085.098-.17.202.267-.386.609-.925.987-1.38.53-.716.073 0 .688-.857a53.694 53.694 0 0 0 7.168-14.674c.049-.122 0 0-.043.178.256-.797.494-1.557.67-2.311.177-.754.397-1.471.555-2.225.098-.41.134-.521.171-.643-.043.122.427-1.937.7-4.083.038-.27.074-.533.117-.797l.073-.784c.049-.509.091-.987.134-1.404.091-.827.091-1.397.098-1.428Z"
24
+ />
25
+ <Path
26
+ fill={Colors.contentPrimary}
27
+ d="M42.32 33.57a1.273 1.273 0 0 0-.757-.08 2.2 2.2 0 0 1 .756.08Z"
28
+ />
29
+ <Path
30
+ fill={Colors.contentPrimary}
31
+ d="m42.746 40.214.037-.043c.408.062.115.074.487.117.153-.055.61.085.75.06 0 0 .177 0 .158.056-.018.055.19 0 .305 0 .116 0-.03 0-.055-.03h.262c.098 0 .122.048 0 .042.342.043 1.335.154 2.34.215 1.006.061 2.024.073 2.396.061a3.077 3.077 0 0 1-.414-.055h.378c.073.074.432 0 .579.086l.06-.043h.098c.32-.035.642-.047.963-.037.439 0 .646-.092.896-.086-.037 0-.134 0 0-.037.134-.036.305-.042.366 0 .06.043.475 0 .347-.067.061 0 .39 0 .201.037.098.008.195.008.293 0h-.14c.274-.006.548-.04.816-.098h-.14c.167-.032.339-.032.506 0l-.232.043c.307-.034.61-.091.909-.172h-.11c.189-.055.804-.202 1.402-.417.459-.157.9-.362 1.316-.613l-.177.043c.095-.054.186-.113.275-.178 0 0-.08.178-.116.184a6.66 6.66 0 0 0 1.98-1.6c.337-.405.615-.857.824-1.342.126-.313.226-.637.298-.968.061-.276.067-.043.073-.037v-.441c0-.086.03 0 .03.061a1.32 1.32 0 0 0 0-.264c0 .166-.06.092-.097.16.01-.125.01-.25 0-.374a5.287 5.287 0 0 1-.128-.57 4.063 4.063 0 0 0-.725-1.716s.11.092.189.196l-.158-.24c.067.136-.183-.19-.116-.091a3.845 3.845 0 0 0-1.164-.858c-.216.103-.42.228-.61.374a1.757 1.757 0 0 0-.427.496.936.936 0 0 1-.176-.037c.079.034.164.053.25.056v-.037c.182.037.036 0 .213.086 0 0-.165 0-.305-.037.1.034.201.059.305.073.11.056 0 .031.11.098a.949.949 0 0 1 .335.166c.225.208.408.27.567.533.1.136.188.282.262.435 0-.049 0-.104.036 0 .076.163.135.334.177.51l.067.14c.072.303.088.617.049.926a3.45 3.45 0 0 1-.42 1.305 5.175 5.175 0 0 1-1.83 1.76 8.103 8.103 0 0 1-2.62.919c-1.067.202-2.2.27-2.956.337h-.798c.085 0 .134 0 0 0-.744 0-.05 0-.805.055-.433 0-1.481 0-2.517-.037a25.455 25.455 0 0 1-2.438-.214c-.384-.055-.926-.086-1.329-.11h.055a8.083 8.083 0 0 1-1.566-.301 2.528 2.528 0 0 1-.768-.374 3.939 3.939 0 0 1-.415-.398l.037.049c-.268-.276-.195-.27-.341-.527 0 .06-.214-.209-.256-.325a2.161 2.161 0 0 1-.256-.846c-.03-.148-.03-.3 0-.448a.278.278 0 0 1 .054-.153.841.841 0 0 1 .08-.122c.366-.39.817-.69 1.316-.877a.497.497 0 0 1 .244.043.66.66 0 0 1 .06-.147.917.917 0 0 1 .214-.3.484.484 0 0 0 .183-.35.612.612 0 0 0-.579-.392 1.125 1.125 0 0 0-.256.037c-.293.043-.384.128-.378.092.12-.041.242-.074.366-.098-.28.055-.098 0 0-.043-.134 0-.232.049-.33.067-.097.018.043 0 .092 0-.152.05-.317.147-.475.209-.159.06-.037-.037-.299.104a4.23 4.23 0 0 0-.945.717c-.16.162-.297.346-.408.545-.069.121-.12.251-.152.387 0 .104-.05.214-.067.318-.1.834.096 1.676.554 2.378 0 .037 0 0-.036-.036.236.384.528.73.865 1.03.047.05.09.102.128.159 0 0 .116.092.33.214.246.146.508.265.78.356.258.09.523.162.792.214l.475.037Z"
32
+ />
33
+ <Path
34
+ fill={Colors.contentPrimary}
35
+ d="M43.782 39.546c-.159.01-.316.037-.47.08.16-.01.317-.036.47-.08ZM43.307 39.638v.007l.006-.007h-.006ZM57.429 39.056h.11a.331.331 0 0 0-.11 0Z"
36
+ />
37
+ <Path
38
+ fill={Colors.contentPrimary}
39
+ d="m43.624 46.098.042-.043c.427.086.116.086.512.141.17-.043.659.092.799.062 0 0 .189 0 .17.042-.018.043.202 0 .317 0h-.06.267c.104 0 .129.043 0 .043.69.043 3.968.215 4.706.227a2.758 2.758 0 0 1-.403-.073h.372c.073.073.427 0 .573.11l.055-.037h.098c.318-.026.638-.026.956 0 .44 0 .653-.037.896 0-.134 0-.036 0 0 0h.354c.049 0 .475 0 .353-.037.061 0 .39.05.196.062.099.005.199.005.298 0h-.14c.276.021.553.021.829 0h-.14c.17-.019.34-.006.505.036h-.237c.31 0 .62-.02.926-.06h-.116c.202 0 .835-.099 1.463-.246.49-.1.963-.265 1.408-.49h-.183l.299-.154c-.037 0-.104.172-.14.172.319-.132.623-.296.908-.49a4.52 4.52 0 0 0 1.158-1.159c.3-.46.508-.974.61-1.514.068-.324.103-.655.103-.987 0-.282.055-.055.061-.049-.043-.349-.043-.147-.085-.44 0-.08.03 0 .042.054 0-.129 0-.245-.054-.257 0 .165-.037.104-.055.177a.99.99 0 0 0-.073-.367 4.415 4.415 0 0 1-.244-.527 3.878 3.878 0 0 0-1.128-1.52s.122.067.226.147c-.061-.056-.159-.135-.214-.197.104.117-.213-.147-.128-.06a4.866 4.866 0 0 0-1.286-.614c-.189.139-.368.29-.536.454-.163.149-.299.325-.402.52H57.3c.091.023.185.036.28.038v-.037c.213 0 .043.03.25.067 0 .03-.183 0-.348 0 .115.034.234.053.354.056.128.048 0 .03.134.091.137.016.27.057.39.123.25.115.485.259.701.429h-.037c.13.113.248.238.354.374 0-.05-.043-.098.037 0 .11.14.204.292.28.453l.097.123c.132.289.216.597.25.913.05.467-.01.939-.17 1.38-.165.44-.432.832-.78 1.146a3.787 3.787 0 0 1-.836.545 6.988 6.988 0 0 1-2.694.613c-1.09.068-2.242 0-3.047 0-.238-.037-.567-.043-.817-.067.134 0 .086.043 0 .036-.761-.036-.054 0-.822 0-.89 0-4.267-.177-5.071-.239-.44.01-.88-.008-1.317-.055h.043a5.724 5.724 0 0 1-1.439-.478 3.655 3.655 0 0 1-1.219-.84l.037.043c-.262-.257-.189-.257-.317-.496 0 .055-.195-.202-.207-.307a1.109 1.109 0 0 1-.043-.741c.115-.258.299-.478.53-.638a6.737 6.737 0 0 1 1.591-.73l.42-.03h.056s.469-1.146-.482-1.11v-.03l-.177.05c-.22.042-.31.11-.304.079a2.39 2.39 0 0 1 .298-.08c-.22.05-.073 0 0-.043l-.256.056h.067a3.418 3.418 0 0 1-.414.171c-.22.074 0-.043-.287.05a4.211 4.211 0 0 0-1.938 1.378 2.535 2.535 0 0 0-.402 1.33c.02.458.149.904.378 1.3 0 .043 0 0-.043-.037.233.415.544.782.914 1.079l.128.153c.325.235.67.44 1.03.613.254.11.514.203.78.276l.39.067Z"
40
+ />
41
+ <Path
42
+ fill={Colors.contentPrimary}
43
+ d="M43.843 45.179a.849.849 0 0 0-.22.19.867.867 0 0 0 .22-.19Z"
44
+ />
45
+ <Path
46
+ fill={Colors.contentPrimary}
47
+ d="M45.184 49.898v-.042c.238.073.049.073.274.128.104-.043.36.11.445.086.086-.024.104.037.092.055-.013.019.11 0 .182 0 0 0 .074 0 0 0h.159c.055 0 .067.05 0 .043.452.108.91.191 1.371.252.463.07.929.112 1.396.128-.055 0-.189 0-.238-.067h.22c.042.073.25.03.335.104l.036-.037h.055c.189-.018.379-.018.567 0 .262 0 .384-.061.53-.043 0 0-.079 0 0-.03.08-.031.177 0 .214 0 .036 0 .286 0 .207-.056.036 0 .232 0 .122.05a.803.803 0 0 0 .177 0h-.086c.171 0 .341-.023.506-.068h-.122c.14 0 .25-.049.317 0l-.14.037a2.86 2.86 0 0 0 .536-.135h-.06c.53-.165 1.048-.37 1.547-.613h-.103l.158-.098s-.042.147-.06.141c.182-.074.737-.313 1.267-.613.53-.3 1.042-.613 1.22-.711.176-.098.054 0 .054.037.146-.117.043-.074.17-.166.129-.092 0 0 0 .05 0 .048.11-.074.104-.093-.006-.018-.073 0-.116 0l.159-.116c.036 0 .043-.135.201-.245.28-.225.529-.485.744-.773 0 0 0 .08-.067.148.033-.046.07-.09.11-.13-.074.062.072-.14 0-.091a2.18 2.18 0 0 0 .292-.92 1.561 1.561 0 0 0-.61-.226 1.164 1.164 0 0 0-.579.08v.042h.037v.037c0 .037-.043 0-.049 0-.006 0 0 0 0 0h-.049a.062.062 0 0 1 0 .074c-.055.073-.036.196-.146.3-.049 0-.097.135-.189.208 0 0 .061 0 0 0-.06 0-.152.166-.25.209l-.049.092a9.057 9.057 0 0 1-1.218.882c-.453.266-.921.503-1.402.711a9.717 9.717 0 0 1-1.542.51c-.279.068-.562.115-.847.14l-.659.037c-.15-.022-.3-.034-.45-.037.078 0 .048.037 0 .037h-.458c-.475-.006-.95-.041-1.42-.104a10.913 10.913 0 0 1-1.353-.245 5.46 5.46 0 0 1-.762-.117 5.61 5.61 0 0 1-.853-.294 4.773 4.773 0 0 1-.744-.417c-.164-.098-.122-.123-.2-.233 0 .05-.16-.043-.178-.086a.682.682 0 0 1-.176-.325.732.732 0 0 1 .048-.41c.147-.273.317-.534.506-.779l.214-.11s-.427-.993-.951-.723l-.073.086c-.098.085-.116.159-.128.134.037-.047.078-.093.121-.134-.097.092-.042 0 0-.037a.614.614 0 0 1-.115.104h.042c-.04.082-.09.16-.146.233-.085.11-.043 0-.146.11a2.945 2.945 0 0 0-.58 1.367 2.039 2.039 0 0 0 .635 1.514h-.037c.198.202.419.379.658.527.055.043.067.068.074.086.006.018.298.16.609.294l.433.166.207.085ZM45.135 50.524c-.16.073-.316.16-.463.257.163-.07.318-.156.463-.257ZM11.217 69.917l.146-.067-.146.067Z"
48
+ />
49
+ <Path
50
+ fill={Colors.contentPrimary}
51
+ d="M36.444 55.721v.062c-.409.233-.153 0-.518.245-.11.147-.61.355-.744.466 0 0-.183.098-.183.067-.036.068-.183.123-.292.196-.11.074.036 0 .073 0l-.262.166c-.11.049-.146.043-.037 0l-4.876 2.642c.148-.068.298-.127.451-.178-.189.129-.304.153-.378.22-.073.068-.45.227-.64.246l-.036.06-.11.038c-.316.201-.646.38-.987.533-.457.245-.646.404-.914.52.042 0 .152-.054.036 0-.036 0-.305.185-.378.185-.073 0-.493.257-.34.233-.074 0-.415.178-.227.055a2.322 2.322 0 0 0-.304.16l.152-.062c-.29.125-.57.27-.84.435l.151-.055c-.163.103-.342.18-.53.227l.226-.135c-.378.196-.61.313-.915.496l.116-.055c-.39.245-2.499 1.33-2.858 1.557l.189-.049-.311.184c.043 0 .11-.184.146-.19-.695.343-4.315 2.078-4.98 2.33-.274.097-.073 0-.073-.038-.31.154-.121.092-.39.215-.079 0 0-.037.043-.055a1.308 1.308 0 0 0-.238.073c.153-.055.11 0 .183 0l-.347.153v-.036a2.36 2.36 0 0 1-.518.3l-1.756.81a.897.897 0 0 1 .238-.142c-.08 0-.195.086-.274.11.152-.036-.238.123-.122.086-.402.252-.981.423-1.347.613 0 .068-.396 1.336-.372 1.41-.089.04-.18.075-.274.104.136-.032.267-.081.39-.147v-.049c.28-.129.08 0 .353-.123.031 0-.225.135-.45.233.171-.047.336-.12.487-.214.195-.068 0 .049.232-.037.178-.1.363-.186.554-.257h-.024c.47-.166.683-.337 1.11-.49l-.043.03c.158-.05.432-.196.707-.294-.08 0-.153 0 0-.043.31-.11.511-.22.743-.294l.201-.123c1.067-.454 5.205-2.397 6.241-2.924h-.036c1.59-.772 4.876-2.39 6.442-3.291.268-.098.61-.288.878-.417-.153.067-.11 0 0-.037.798-.423.049-.049.84-.49L34.97 58.1c.408-.282.963-.57 1.377-.84h-.036c.45-.27 3.047-1.747 3.547-2.078l-.073.037c.243-.165.5-.309.768-.43-.073 0 .298-.275.445-.373l1.066-.73c.293-.214.872-.563 1.091-.704.512-.3 1.31-.76 1.957-1.226l.475-.209.061-.049s.165-1.268-.829-.882l-.17.116c-.22.117-.299.209-.299.178l.286-.184c-.213.129-.073 0 0-.043l-.25.141c-.036.037.037 0 .074 0a3.006 3.006 0 0 1-.397.282c-.219.135-.036 0-.292.129l-3.986 2.451c-.037 0 0 0 .036-.042l-1.133.71a.64.64 0 0 1-.183.062c.037 0-.475.3-1.006.613l-.731.435-.323.257ZM31.11 10.585c.037 0 .056 0 .08-.031a.072.072 0 0 0-.08.03Z"
52
+ />
53
+ <Path
54
+ fill={Colors.contentPrimary}
55
+ d="M32.08 9.426h-.043c0-.067.061 0 .08-.061.018-.061.048-.092 0-.129-.05-.037 0 0 .036 0 .037 0 0-.03 0-.055s0 0-.03 0v-.05h.036c.125-.244.214-.506.262-.777 0 0 0 .055-.067.06-.067.007 0-.048 0-.067.073 0 0-.073.104-.085h-.037.03v-.166c0-.165-.042-.116 0-.16.043-.042 0 0-.036 0s0-.054 0-.06c0-.007 0-.08-.043-.062-.042.018.043-.067.061-.03.019.036 0-.037 0-.05 0-.067.037-.098 0-.14 0-.037 0-.068.043-.08v.037a.32.32 0 0 0 0-.154c-.043-.067-.091-.41-.158-.46h-.037l-.037-.048h.11c0-.11-.122-.675-.146-.779-.024-.104.055 0 .06 0 .007 0-.042 0-.054-.055-.012-.055 0 0 .037 0 .036 0 0-.037 0-.03 0 .005-.055.03-.08.042v-.049h.03s-.078 0-.085-.067c-.006-.068-.06-.178-.085-.264-.024-.086 0 0 .049 0s0 0 0-.043-.037 0-.043 0c-.006 0-.067-.14-.134-.177-.067-.037-1.012.373-1.073.416-.06.043 0 0 0 0v.05h.037v.042c0 .043-.043 0-.061 0-.018 0 0 .05 0 .043 0-.006-.037 0-.037.043s.055 0 .043.05c0 .054.085.048.067.103v.074c0 .03 0 0 .03 0 .031 0 0 .049 0 .08h.037c.082.22.146.448.19.68.036.184.036.564.048.76-.037.03-.037.067-.049.098-.012.03.037 0 .037 0v.11c-.02.217-.09.427-.201.613.03.068-.037.117 0 .172-.062.13-.132.257-.208.38 0 .061-.048 0-.085.055a.08.08 0 0 1 .037.098v.147c0 .05-.055.098-.067.123-.013.024-.153.08-.183.172h-.092l.335.392c.137.182.315.329.519.429.036 0 0-.05.042-.03l-.036.036h.042s0-.061.03-.074c.031-.012.037.031.068 0 .18-.15.337-.328.463-.527.035-.058.066-.12.091-.184h.05c.02-.134.054-.265.103-.392ZM46.281 29.64a.383.383 0 0 0-.189-.079c.057.04.121.067.189.08ZM42.051 29.28v.054c-.238.092-.091-.037-.31.074a.562.562 0 0 1-.22.153.882.882 0 0 0-.256.178l-.092.061h-.036c0 .067-.098.129-.128.233-.03.104 0 0 .042-.037a.862.862 0 0 0-.079.209c-.042.08-.073.092-.042 0a1.412 1.412 0 0 0-.086.294 2.206 2.206 0 0 0-.055.313c-.027.254-.037.51-.03.766-.005.313.04.626.134.925.092.27.275.5.518.65-.06-.067-.225-.184-.232-.276.128.104.171.178.25.196.08.019.305.196.415.294h.06l.068.043c.28.037.298 0 .323 0l.231.031c.145-.007.289-.007.433 0 0 0-.06 0 0-.037.061-.037.146 0 .17 0 .025 0 .232 0 .172-.049.03 0 .188 0 .097.055a.514.514 0 0 0 .14 0h-.067c.13.024.261.024.39 0h-.067c.104 0 .195 0 .238.031h-.11a1.82 1.82 0 0 0 .427-.061h-.037c.438-.083.87-.196 1.292-.337h-.085l.134-.056s-.042.13-.06.123c.4-.091.788-.229 1.157-.41.282-.138.523-.35.695-.614.117-.195.188-.416.207-.643 0-.19.061-.037.067 0 0-.24-.036-.104-.06-.294 0-.05.03 0 .042.036a.615.615 0 0 0-.043-.165c0 .104-.042.073-.06.122a1.912 1.912 0 0 0-.062-.22 1.749 1.749 0 0 1-.195-.276c-.174-.3-.43-.545-.737-.705 0 0 .073 0 .134.037a.843.843 0 0 1-.122-.08c.055.061-.128-.043-.08 0a5.188 5.188 0 0 0-.651-.171c-.226.335-.43.685-.61 1.048h-.11a.305.305 0 0 0 .153.043v-.037c.116 0 0 0 .128.049 0 .037-.098 0-.183 0 .08 0 .146.061.183.03.037-.03 0 .037.06.074a.358.358 0 0 1 .196.03c.128.08.22 0 .305.111 0 0 .103.055.122.098 0-.037.018.043 0 0 0 .037.073.068.079.117h.049c.03.046.05.098.06.153 0 .037 0 .043-.048.122a2.236 2.236 0 0 1-.896.362c-.852.193-1.723.288-2.597.282a2.316 2.316 0 0 0-.341-.055c.049 0 0 .043 0 .037 0-.007-.128 0-.14 0h-.098a.127.127 0 0 1-.103-.05.407.407 0 0 1 0-.08v-.269c-.022-.309.007-.62.085-.92a.055.055 0 0 1 0-.073l.073-.061c.16-.094.34-.149.524-.16.234-.012.468-.012.701 0 .19 0 .165.031.311.056 0-.055.146-.068.213-.068h.482v.03c.164.003.327.02.488.05.279.085.564.149.853.19l.177.116s.5-.907.146-1.189h-.08c-.09-.036-.14 0-.127-.036l.128.03c-.092-.03 0-.03 0-.037l-.11-.036a.68.68 0 0 1-.19 0c-.097 0 0-.043-.109-.068a10.632 10.632 0 0 0-1.828-.49h-.573a.298.298 0 0 1-.086-.037s-.25 0-.536.055c-.198.031-.393.076-.585.135ZM39.827 36.26h.079c.037 0-.049-.006-.08 0ZM41.966 36.665v-.049c.11 0 0 .061.122.068.121.006.164.036.207 0 .042-.037.042 0 .036.042-.006.043.055 0 .086 0 0 0 .03 0 0 0h.067s.03.043 0 .037l.61.147c.127.033.252.078.371.135v-.073c0-.074.03 0 .055 0 .024 0 .036.042 0 .11v-.03c.067 0 0 0 .043.03.042.03.067 0 .054 0-.012 0 0 0 0 0s.03 0 0 0 0 .043.05 0c.048-.043-.031.043-.05 0-.018-.043 0 0 0 0v.098c0 .03 0 .061-.054.061-.055 0 0 0 0-.036a.31.31 0 0 0 0 .128.192.192 0 0 1 0 .098V37.548a.82.82 0 0 1-.043.11h.036a.14.14 0 0 1 0 .043v-.11a4.855 4.855 0 0 1-1.103.312c-.073 0 0-.055 0-.061 0-.006 0 .043-.097.055-.098.012 0 0 0-.037 0-.036-.061 0-.061 0l.055.074h-.086s-.036.086-.128.092c-.091.006-.298.055-.45.086 0 0 0-.037.054-.056.055-.018-.049 0-.067 0-.018 0-.06.037-.03.043-.092.092-.256.068-.348.141.012.389.073.774.183 1.147l-.097-.172c.031.063.066.124.103.184v-.037h.061c.061 0-.043.055-.043.061 0 .006.068 0 .061 0-.006 0 0 .037.05.037.048 0 .066-.061.109-.049.104 0 .14-.086.25-.074.042 0 .103-.03.17 0-.036 0 .067.031 0 0h.183l.05-.042a10.717 10.717 0 0 0 1.657-.479c.213-.089.404-.222.56-.392.117-.14.211-.297.281-.466.068-.159.117-.325.146-.496a1.57 1.57 0 0 0-.14-.956.916.916 0 0 0-.17-.356c0 .062 0 .062-.031 0-.232-.257 0 0-.286-.233a2.77 2.77 0 0 0-.86-.386c-.353-.086-.573-.135-.695-.178a2.614 2.614 0 0 1-.378-.03c-.122 0-.804-.178-.95-.184-.135 0-.11-.037-.202-.068-.09-.03-.11.068-.152.062h-.317c-.105.01-.211.01-.317 0a1.667 1.667 0 0 0-.61-.062l-.158-.073a2.466 2.466 0 0 0 0 .52c-.002.23.05.457.153.663v.03h.091-.06c.048 0 0 0 0 .037h.048s.06-.036.091 0c.03.037 0 .05.061.056.311.036.646.116.994.165h.298a.08.08 0 0 1 .037.049c.17.035.337.085.5.147ZM42.642 45.62c.05.03.107.048.165.05a.28.28 0 0 0-.165-.05ZM45.403 44.89v-.042c.122-.104.073 0 .183-.104 0-.092.183-.197.183-.264s.055-.061.067-.043c.012.019.037-.073.049-.122 0 0 .012-.05 0 0l.042-.098c0-.037.055-.037.037 0 .16-.278.255-.588.28-.908a1.99 1.99 0 0 0-.115-.944v.172c-.043-.067 0-.11-.055-.135.055-.049-.043-.165 0-.245h-.043v-.043a1.401 1.401 0 0 1-.189-.319c-.103-.14-.195-.165-.238-.245v.03c0-.024-.091-.067-.079-.103.012-.037-.116-.129-.122-.062 0 0-.073-.116 0-.085a.273.273 0 0 0-.079-.068v.043c-.104-.08-.14-.153-.232-.172v.043c-.067-.043-.121-.073-.121-.128l.079.03a.923.923 0 0 0-.28-.14h.03c-.067 0-.262-.099-.457-.154a2.318 2.318 0 0 0-.311-.061.555.555 0 0 0-.189 0l.049.043h-.104s.061-.11.073-.092c-.237-.062-1.219-.05-1.39-.062-.066 0 0-.06 0-.067 0-.006-.036.043-.11.043-.072 0 0 0 0-.037s-.06 0-.066 0c-.006 0 0 .055.042.086h-.09s-.05.08-.141.067c-.092-.012-.323 0-.476 0 0 0 .037 0 .068-.043.03-.042-.055 0-.074 0-.018 0-.06 0 0 .037-.11.08-.262 0-.353.08-.092.08-.104 1.097-.085 1.17.018.074-.055 0-.061 0h.085v-.042h.08c.078 0-.056.049-.104.055h.11c.011 0 0 .037.054.049.055.012.085-.05.134-.037.11 0 .165-.061.262-.037h.171c.067 0-.037 0 0-.036.037-.037.128 0 .183 0l.049-.037c.49-.027.983-.027 1.475 0a.822.822 0 0 1 .225.043c.108.033.213.078.31.135.177.1.339.224.482.367a.49.49 0 0 0 .061.141s0-.03.03 0c.062.123 0 0 .098.117a.746.746 0 0 1 .092.441.714.714 0 0 1-.128.405c0 .085-.061.135-.08.196 0 .049-.48.325-.609.374-.085.067-.091 0-.177 0 0 .043-.042.104-.079.116-.072.055-.15.102-.231.141a.738.738 0 0 1-.25.08 2.606 2.606 0 0 0-.433 0 .35.35 0 0 1-.08-.086l-.11.515c-.048.263-.09.564.068.68H42.984h-.104c.073 0 0 0 0 .037a.348.348 0 0 1 .085 0 .31.31 0 0 1 .147 0c.079 0 0 .043.097.043.438-.005.872-.09 1.28-.251.115-.051.227-.109.335-.172a.14.14 0 0 1 .067 0s.5-.258.512-.294ZM44.819 49.598v.037s-.056-.018 0-.037ZM43.855 46.699Z"
56
+ />
57
+ <Path
58
+ fill={Colors.contentPrimary}
59
+ d="M46.482 49.47v-.05c.104 0 .037.055.17 0 .037-.08.239-.073.263-.135.024-.06.067-.03.073 0 .006.031.067-.036.092-.08.024-.042 0 0-.031 0l.067-.073c.043 0 .061 0 0 0 .215-.164.391-.373.518-.613.137-.272.186-.58.14-.882 0 .036 0 .122-.042.153v-.135c.067-.037 0-.153.042-.227h-.042v-.043a3.906 3.906 0 0 1-.159-.355c-.097-.153-.195-.178-.237-.264v.031-.037c0-.037-.08-.037-.074-.061.007-.025-.152-.104-.14-.043 0 0-.11-.098-.03-.08a.324.324 0 0 0-.098-.055l.037.037c-.128-.068-.183-.117-.244-.098v.03c-.055 0-.098-.03-.098-.08h.061a.497.497 0 0 0-.2-.042 5.45 5.45 0 0 0-.61-.043v.043h-.073s.06-.104.067-.092c-.134-.043-.841-.208-.963-.258-.122-.049 0-.055 0-.06 0-.007-.037.03-.092 0-.055-.031 0 0 0 0h-.048c-.007 0 0 .06 0 .091h-.068s-.054.068-.115.037c-.061-.03-.232-.055-.354-.086h.061-.055c-.048 0-.012 0 0 0-.097.05-.207 0-.292 0-.086 0-.098.294-.153.564a3.172 3.172 0 0 0-.06.374.844.844 0 0 0 0 .086 1.56 1.56 0 0 0-.05-.466c.024.088.038.178.043.27V47.128s0 .037 0 0v-.043h.03s.031 0 0 0v-.123a.738.738 0 0 1 0 .123v.055c0 .013.062 0 .08 0 .06.05.122 0 .183 0 0 0 .073 0 .116.037 0-.037.042.037 0 0 0 .037.085 0 .121.055h.043c.183.043.945.202 1.134.258.134 0 .329.091.518.147l.256.085h.067v.043c0 .043.03 0 .03 0h.043a.179.179 0 0 1 0 .178c-.03.074-.152.184-.152.166 0-.019 0 0-.03.06H45.993a3.272 3.272 0 0 0-.347.044c-.091.043-.085 0-.158 0s-.055.092-.086.104a2.205 2.205 0 0 1-.219.092.81.81 0 0 1-.225.055.97.97 0 0 0-.44.05l-.146-.05h-.036c-.003.178.034.354.11.515.054.123.127.245.188.355.028.049.048.1.061.154 0 .049 0 .086.03.11 0 0 .038-.03.038 0h-.037v.037h.03s.037-.043.061-.037c.025.006 0 .043.055.043.244 0 .518 0 .799-.067 0 0 .158 0 .231-.056a.066.066 0 0 1 .043.037c.176-.042.355-.07.536-.086Z"
60
+ />
61
+ </Svg>
62
+ )
63
+
64
+ export default ThumbsUpIllustration
@@ -0,0 +1,38 @@
1
+ import * as React from 'react'
2
+ import colors from 'src/styles/colors'
3
+ import Svg, { Path } from 'svgs'
4
+
5
+ export interface Props {
6
+ height?: number
7
+ color?: string
8
+ strokeWidth?: number
9
+ }
10
+
11
+ function Times({ color = colors.contentPrimary, height = 16, strokeWidth = 2 }: Props) {
12
+ return (
13
+ <Svg
14
+ testID="Times"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ height={height}
17
+ width={height}
18
+ viewBox="0 0 16 16"
19
+ >
20
+ <Path
21
+ d="M13.9999 2.00146L1.99994 14.0015"
22
+ stroke={color}
23
+ strokeWidth={strokeWidth}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ <Path
28
+ d="M1.99994 2.00146L13.9999 14.0015"
29
+ stroke={color}
30
+ strokeWidth={strokeWidth}
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ </Svg>
35
+ )
36
+ }
37
+
38
+ export default React.memo(Times)
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors from 'src/styles/colors'
4
+
5
+ interface Props {
6
+ color?: string
7
+ }
8
+
9
+ const TripleDotVertical = ({ color = Colors.contentPrimary }: Props) => (
10
+ <Svg width={4} height={16} fill="none">
11
+ <Path
12
+ d="M.688 1.414a1.313 1.313 0 1 0 2.625 0 1.313 1.313 0 0 0-2.626 0Zm0 6.563a1.313 1.313 0 1 0 2.625 0 1.313 1.313 0 0 0-2.626 0Zm0 6.562a1.312 1.312 0 1 0 2.624 0 1.312 1.312 0 0 0-2.624 0Z"
13
+ fill={color}
14
+ />
15
+ </Svg>
16
+ )
17
+
18
+ export default TripleDotVertical
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ interface Props {
6
+ color?: ColorValue
7
+ }
8
+
9
+ const Trophy = ({ color = Colors.contentPrimary }: Props) => (
10
+ <Svg width={24} height={24} viewBox="0 0 24 24" fill="none">
11
+ <Path
12
+ d="M12 11c.55 0 1.02-.196 1.412-.588C13.804 10.021 14 9.55 14 9c0-.55-.196-1.02-.588-1.412A1.926 1.926 0 0 0 12 7c-.55 0-1.02.196-1.412.588A1.926 1.926 0 0 0 10 9c0 .55.196 1.02.588 1.412.391.392.862.588 1.412.588ZM7 21v-2h4v-3.1a5.369 5.369 0 0 1-2.188-1.037A4.48 4.48 0 0 1 7.4 12.95a4.854 4.854 0 0 1-3.138-1.637A4.812 4.812 0 0 1 3 8V7c0-.55.196-1.02.587-1.412A1.926 1.926 0 0 1 5 5h2V3h10v2h2c.55 0 1.02.196 1.413.588.391.391.587.862.587 1.412v1c0 1.267-.42 2.37-1.262 3.313A4.854 4.854 0 0 1 16.6 12.95c-.3.767-.77 1.404-1.413 1.913A5.37 5.37 0 0 1 13 15.9V19h4v2H7Zm0-10.2V7H5v1c0 .633.183 1.204.55 1.713.367.508.85.87 1.45 1.087Zm5 3.2c.833 0 1.542-.292 2.125-.875A2.893 2.893 0 0 0 15 11V5H9v6c0 .833.292 1.542.875 2.125A2.893 2.893 0 0 0 12 14Zm5-3.2c.6-.217 1.083-.58 1.45-1.088.367-.508.55-1.079.55-1.712V7h-2v3.8Z"
13
+ fill={color}
14
+ />
15
+ </Svg>
16
+ )
17
+
18
+ export default React.memo(Trophy)
@@ -0,0 +1,19 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ interface Props {
6
+ color?: ColorValue
7
+ size?: number
8
+ }
9
+
10
+ export default function User({ color = Colors.contentPrimary, size = 24 }: Props) {
11
+ return (
12
+ <Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
13
+ <Path
14
+ fill={color}
15
+ d="M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4Zm0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"
16
+ />
17
+ </Svg>
18
+ )
19
+ }
@@ -0,0 +1,22 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ function Warning({
6
+ color = Colors.warningPrimary,
7
+ size = 16,
8
+ }: {
9
+ color?: ColorValue
10
+ size?: number
11
+ }) {
12
+ return (
13
+ <Svg width={size} height={size} viewBox="0 0 20 20" fill="none">
14
+ <Path
15
+ fill={color}
16
+ d="M1.27 15.5a.811.811 0 0 1-.708-.417.915.915 0 0 1-.114-.406.749.749 0 0 1 .115-.427L8.27.917a.82.82 0 0 1 .323-.313A.862.862 0 0 1 9 .5c.139 0 .274.035.406.104a.82.82 0 0 1 .323.313l7.709 13.333a.748.748 0 0 1 .114.427.913.913 0 0 1-.114.406.81.81 0 0 1-.709.417H1.271Zm1.438-1.667h12.584L9 3 2.708 13.833ZM9 13c.236 0 .434-.08.594-.24.16-.16.24-.357.24-.593a.806.806 0 0 0-.24-.594.806.806 0 0 0-.594-.24.806.806 0 0 0-.594.24.806.806 0 0 0-.24.594c0 .236.08.434.24.593.16.16.358.24.594.24Zm0-2.5c.236 0 .434-.08.594-.24.16-.16.24-.357.24-.593v-2.5a.806.806 0 0 0-.24-.594.806.806 0 0 0-.594-.24.806.806 0 0 0-.594.24.806.806 0 0 0-.24.594v2.5c0 .236.08.434.24.593.16.16.358.24.594.24Z"
17
+ />
18
+ </Svg>
19
+ )
20
+ }
21
+
22
+ export default Warning
@@ -0,0 +1,28 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ export function Face({ color = Colors.contentPrimary }: { color?: ColorValue }) {
6
+ return (
7
+ <Svg testID="FaceBiometryIcon" width={24} height={24} fill="none">
8
+ <Path
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ d="M12 21.707c5.361 0 9.707-4.346 9.707-9.707 0-5.361-4.346-9.708-9.707-9.708-5.361 0-9.708 4.347-9.708 9.708S6.64 21.707 12 21.707Zm0 .793c5.799 0 10.5-4.701 10.5-10.5S17.799 1.5 12 1.5 1.5 6.201 1.5 12 6.201 22.5 12 22.5Z"
12
+ fill={color}
13
+ />
14
+ <Path
15
+ fillRule="evenodd"
16
+ clipRule="evenodd"
17
+ d="M13.782 17.562a.436.436 0 0 1-.212.579c-1.009.468-2.008.554-2.827.178-.831-.381-1.373-1.19-1.55-2.287l.86-.14c.144.887.55 1.404 1.053 1.635.516.236 1.237.222 2.097-.177a.436.436 0 0 1 .58.212ZM12.594 13.189v-1.783h.793v2.575h-2.18v-.792h1.387Z"
18
+ fill={color}
19
+ />
20
+ <Path
21
+ d="M17.547 9.425a.792.792 0 1 1-1.585 0 .792.792 0 0 1 1.585 0ZM8.038 9.425a.792.792 0 1 1-1.585 0 .792.792 0 0 1 1.585 0Z"
22
+ fill={color}
23
+ />
24
+ </Svg>
25
+ )
26
+ }
27
+
28
+ export default React.memo(Face)
@@ -0,0 +1,18 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ export function FaceID({ color = Colors.contentPrimary }: { color?: ColorValue }) {
6
+ return (
7
+ <Svg testID="FaceIDBiometryIcon" width={24} height={24} fill="none">
8
+ <Path
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ d="M1.719 6.586V3.89A2.675 2.675 0 0 1 4.39 1.219h2.695a.61.61 0 0 0 0-1.219H4.39A3.895 3.895 0 0 0 .5 3.89v2.696a.61.61 0 0 0 1.219 0ZM7.086 22.78a.61.61 0 0 1 0 1.219H4.39A3.895 3.895 0 0 1 .5 20.11v-2.696a.61.61 0 1 1 1.219 0v2.695a2.675 2.675 0 0 0 2.672 2.672h2.695ZM24.5 17.414v2.695A3.895 3.895 0 0 1 20.61 24h-2.696a.61.61 0 1 1 0-1.219h2.695a2.675 2.675 0 0 0 2.672-2.672v-2.695a.61.61 0 0 1 1.219 0Zm0-13.523v2.695a.61.61 0 1 1-1.219 0V3.89a2.675 2.675 0 0 0-2.672-2.672h-2.695a.61.61 0 1 1 0-1.219h2.695A3.895 3.895 0 0 1 24.5 3.89Zm-7.795 13.847a.633.633 0 0 0-.858-.93 4.918 4.918 0 0 1-3.347 1.31 4.918 4.918 0 0 1-3.347-1.31.633.633 0 0 0-.858.93 6.18 6.18 0 0 0 4.205 1.645 6.18 6.18 0 0 0 4.205-1.645Zm-2.94-8.691v4.5c0 .892-.725 1.617-1.617 1.617h-.515a.633.633 0 0 1 0-1.266h.515a.352.352 0 0 0 .352-.351v-4.5a.633.633 0 1 1 1.266 0Zm4.36 1.77V9.011a.598.598 0 0 0-1.195 0v1.804a.598.598 0 1 0 1.195 0Zm-11.11 0a.598.598 0 1 0 1.196 0V9.011a.598.598 0 0 0-1.195 0v1.804Z"
12
+ fill={color}
13
+ />
14
+ </Svg>
15
+ )
16
+ }
17
+
18
+ export default React.memo(FaceID)
@@ -0,0 +1,16 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ export function Fingerprint({ color = Colors.contentPrimary }: { color?: ColorValue }) {
6
+ return (
7
+ <Svg testID="FingerprintBiometryIcon" width={24} height={24} fill="none">
8
+ <Path
9
+ d="M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2a.506.506 0 0 1 .2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67a.49.49 0 0 1-.44.28ZM3.5 9.72a.499.499 0 0 1-.41-.79c.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25a.5.5 0 0 1-.12.7c-.23.16-.54.11-.7-.12a9.388 9.388 0 0 0-3.39-2.94c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21Zm6.25 12.07a.47.47 0 0 1-.35-.15c-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15Zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12ZM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1a7.297 7.297 0 0 1-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29a11.14 11.14 0 0 1-.73-3.96c0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94-1.7 0-3.08-1.32-3.08-2.94 0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38Z"
10
+ fill={color}
11
+ />
12
+ </Svg>
13
+ )
14
+ }
15
+
16
+ export default React.memo(Fingerprint)
@@ -0,0 +1,22 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ export function Iris({ color = Colors.contentPrimary }: { color?: ColorValue }) {
6
+ return (
7
+ <Svg testID="IrisBiometryIcon" width={24} height={24} fill="none">
8
+ <Path
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ d="M24 20.11v-2.696a.61.61 0 1 0-1.219 0v2.695a2.675 2.675 0 0 1-2.672 2.672h-2.695a.61.61 0 0 0 0 1.219h2.695A3.895 3.895 0 0 0 24 20.11ZM7.195 23.39a.61.61 0 0 0-.61-.609H3.892a2.675 2.675 0 0 1-2.672-2.672v-2.695a.61.61 0 1 0-1.219 0v2.695A3.895 3.895 0 0 0 3.89 24h2.696a.61.61 0 0 0 .61-.61ZM1.219 6.586V3.89A2.675 2.675 0 0 1 3.89 1.219h2.695a.61.61 0 0 0 0-1.219H3.89A3.895 3.895 0 0 0 0 3.89v2.696a.61.61 0 0 0 1.219 0ZM24 6.586V3.89A3.895 3.895 0 0 0 20.11 0h-2.696a.61.61 0 1 0 0 1.219h2.695a2.675 2.675 0 0 1 2.672 2.672v2.695a.61.61 0 0 0 1.219 0Z"
12
+ fill={color}
13
+ />
14
+ <Path
15
+ d="M12 9.25A4.885 4.885 0 0 1 16.41 12 4.88 4.88 0 0 1 12 14.75 4.88 4.88 0 0 1 7.59 12 4.885 4.885 0 0 1 12 9.25Zm0-1A5.913 5.913 0 0 0 6.5 12c.865 2.195 3 3.75 5.5 3.75s4.635-1.555 5.5-3.75A5.913 5.913 0 0 0 12 8.25Zm0 2.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm0-1c-1.24 0-2.25 1.01-2.25 2.25s1.01 2.25 2.25 2.25 2.25-1.01 2.25-2.25S13.24 9.75 12 9.75Z"
16
+ fill={color}
17
+ />
18
+ </Svg>
19
+ )
20
+ }
21
+
22
+ export default React.memo(Iris)
@@ -0,0 +1,44 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path } from 'react-native-svg'
3
+ import Colors, { ColorValue } from 'src/styles/colors'
4
+
5
+ function TouchID({ color = Colors.contentPrimary }: { color?: ColorValue }) {
6
+ return (
7
+ <Svg testID="TouchIDBiometryIcon" width={24} height={24} fill="none">
8
+ <Path
9
+ d="M14.488.354c-1.68-.42-3.45-.48-5.171-.108a.246.246 0 1 0 .104.482c1.648-.356 3.346-.297 4.962.108 3.863.968 7.078 3.872 8.303 7.666.473 1.467.674 3.03.715 4.667a.246.246 0 0 0 .492-.012c-.04-1.66-.244-3.263-.73-4.778-1.271-3.972-4.632-7.017-8.675-8.025ZM8.066 1.1a.246.246 0 1 0-.131-.476c-1.8.497-4.333 2.213-5.898 4.505l-.002.003C.661 7.203-.2 9.806.04 12.332a17.024 17.024 0 0 0 .252 1.39c.204.969.409 1.942.25 2.93a.246.246 0 0 0 .486.079c.167-1.033-.04-2.041-.247-3.05-.096-.465-.192-.931-.25-1.4-.227-2.387.588-4.876 1.914-6.875C3.951 3.201 6.39 1.562 8.066 1.099Z"
10
+ fill={color}
11
+ />
12
+ <Path
13
+ d="M11.3 1.65a10.115 10.115 0 0 1 8.264 3.493.246.246 0 0 1-.373.32 9.622 9.622 0 0 0-7.866-3.32c-3.722.18-7.207 2.704-8.49 6.242a.246.246 0 0 1-.463-.168C3.722 4.49 7.382 1.84 11.3 1.65ZM20.315 6.22a.246.246 0 0 0-.409.274c1.152 1.715 1.628 3.581 1.816 5.795a.246.246 0 1 0 .491-.041c-.192-2.263-.683-4.22-1.898-6.029ZM22.048 13.294a.246.246 0 0 1 .262.23c.093 1.487.094 3.168-.07 4.41a.247.247 0 0 1-.49-.065c.159-1.197.16-2.843.068-4.314a.246.246 0 0 1 .23-.261ZM2.463 9.579a.246.246 0 0 0-.479-.116 9.967 9.967 0 0 0-.278 2.289c-.004.794.144 1.569.292 2.344.121.634.242 1.269.28 1.914.05.847-.128 1.696-.436 2.504a.246.246 0 0 0 .46.175c.327-.853.524-1.773.469-2.708-.038-.64-.16-1.272-.28-1.902-.148-.77-.296-1.538-.292-2.325a9.474 9.474 0 0 1 .264-2.175Z"
14
+ fill={color}
15
+ />
16
+ <Path
17
+ d="M8.93 4.103c.05.126-.01.27-.137.32-2.555 1.026-4.473 3.341-4.865 6.071-.163 1.141.013 2.27.19 3.4.1.637.199 1.273.237 1.91.084 1.383-.073 2.902-.973 4.285a.246.246 0 0 1-.413-.27c.82-1.259.975-2.657.895-3.985-.04-.647-.139-1.29-.237-1.933-.177-1.154-.354-2.306-.187-3.476.418-2.916 2.461-5.372 5.17-6.46.125-.05.269.011.32.138ZM17.58 5.506c-2.015-1.888-4.936-2.547-7.59-1.965a.246.246 0 1 0 .105.482c2.514-.552 5.264.077 7.149 1.842 1.588 1.488 2.51 3.653 2.752 6.014a.246.246 0 0 0 .49-.05c-.25-2.452-1.212-4.737-2.905-6.323ZM20.435 13.003a.246.246 0 0 1 .27.22c.234 2.278.133 4.74-.22 7.12a.246.246 0 1 1-.488-.072c.349-2.348.447-4.767.218-6.998a.246.246 0 0 1 .22-.27Z"
18
+ fill={color}
19
+ />
20
+ <Path
21
+ d="M11.843 5.008C8.067 5.008 5 8.021 5 11.746c0 .398.035.787.102 1.166a.246.246 0 0 0 .486-.086 6.177 6.177 0 0 1-.095-1.08c0-3.445 2.84-6.245 6.351-6.245a6.39 6.39 0 0 1 4.15 1.517.246.246 0 0 0 .319-.375 6.882 6.882 0 0 0-4.469-1.635ZM16.864 7.561a.246.246 0 0 1 .349.008c1.087 1.134 1.435 2.916 1.666 4.412.26 1.685.299 3.329.299 4.09a.246.246 0 1 1-.493 0c0-.749-.04-2.365-.293-4.015-.214-1.389-.523-3.09-1.535-4.146a.246.246 0 0 1 .007-.349ZM19.115 17.483a.246.246 0 1 0-.491-.039c-.121 1.518-.28 3.034-.6 4.435a.246.246 0 1 0 .48.11c.33-1.438.49-2.984.611-4.506ZM5.498 13.82a.246.246 0 0 1 .29.194c.52 2.646.16 5.05-1.22 7.155a.246.246 0 0 1-.411-.27c1.298-1.981 1.647-4.25 1.147-6.79a.246.246 0 0 1 .194-.29Z"
22
+ fill={color}
23
+ />
24
+ <Path
25
+ d="M11.843 6.612c-2.451 0-4.856 1.897-5.101 4.282-.108 1.044.043 2.072.194 3.101.132.899.264 1.797.224 2.707-.092 2.082-.702 3.8-1.752 5.216a.246.246 0 1 0 .396.293c1.113-1.501 1.753-3.316 1.848-5.487.04-.906-.092-1.802-.224-2.697-.151-1.024-.303-2.047-.196-3.083.216-2.095 2.372-3.84 4.611-3.84 1.045 0 3.747.566 4.607 3.366.538 1.755.685 4.13.555 6.437-.13 2.307-.537 4.513-1.082 5.928a.246.246 0 0 0 .46.177c.57-1.48.982-3.742 1.114-6.077.132-2.335-.013-4.776-.576-6.61-.954-3.108-3.946-3.713-5.078-3.713Z"
26
+ fill={color}
27
+ />
28
+ <Path
29
+ d="M8.05 21.17a.246.246 0 0 1 .073.34c-.153.234-.288.48-.422.725s-.269.49-.422.724a.246.246 0 0 1-.413-.269c.153-.234.288-.48.422-.724.135-.245.269-.49.422-.725a.246.246 0 0 1 .34-.072ZM10.161 9.17a.246.246 0 0 0-.274-.41c-.976.653-1.575 1.55-1.575 2.865 0 .783.14 1.423.281 2.08.213.982.358 1.962.332 2.97a9.04 9.04 0 0 1-.732 3.412.246.246 0 1 0 .452.195c.487-1.128.74-2.31.772-3.594.027-1.048-.121-2.067-.342-3.088-.142-.66-.27-1.248-.27-1.975 0-1.127.496-1.88 1.356-2.455ZM11.123 8.304a3.575 3.575 0 0 1 2.933.705c1.447 1.17 1.639 3.306 1.795 5.037l.008.088c.201 2.23-.03 4.397-.494 6.573a.246.246 0 1 1-.482-.103c.458-2.143.68-4.258.485-6.426l-.02-.218v-.001c-.138-1.564-.312-3.523-1.602-4.567a3.083 3.083 0 0 0-2.525-.605.246.246 0 0 1-.098-.483ZM15.017 21.933a.246.246 0 1 0-.478-.121 5.953 5.953 0 0 1-.67 1.6.246.246 0 1 0 .424.252 6.444 6.444 0 0 0 .724-1.73ZM13.812 18.357a.246.246 0 0 1 .216.274c-.233 1.966-.759 3.72-1.602 5.242a.247.247 0 0 1-.43-.239c.806-1.456 1.316-3.146 1.542-5.061a.246.246 0 0 1 .274-.216Z"
30
+ fill={color}
31
+ />
32
+ <Path
33
+ d="M13.761 11.496c-.17-.913-.954-1.611-1.905-1.611-1.288 0-2.192 1.298-1.874 2.506.54 2.132.628 4.187.263 6.166v.002c-.317 1.776-.925 3.375-1.754 4.73a.246.246 0 1 0 .42.257c.863-1.41 1.492-3.067 1.819-4.9.378-2.056.284-4.183-.27-6.377v-.003c-.24-.903.426-1.889 1.395-1.889.7 0 1.29.515 1.421 1.208.359 2.08.546 4.01.413 5.671a.246.246 0 1 0 .491.04c.138-1.723-.057-3.7-.418-5.797l-.001-.003ZM11.12 22.169c.121.062.169.21.107.332l-.653 1.27a.246.246 0 0 1-.439-.225l.653-1.27a.246.246 0 0 1 .332-.107Z"
34
+ fill={color}
35
+ />
36
+ <Path
37
+ d="M12.039 11.733a.246.246 0 1 0-.48.113c.831 3.538.717 6.644-.295 9.29a.246.246 0 0 0 .46.176c1.055-2.759 1.163-5.97.315-9.579Z"
38
+ fill={color}
39
+ />
40
+ </Svg>
41
+ )
42
+ }
43
+
44
+ export default TouchID