@app-brew/brewery 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1422) hide show
  1. package/package.json +99 -0
  2. package/src/analytics/src/analytics-provider-v2.ts +288 -0
  3. package/src/analytics/src/analytics-provider-v2.web.ts +36 -0
  4. package/src/analytics/src/analytics-provider.ts +266 -0
  5. package/src/analytics/src/analytics-provider.web.ts +48 -0
  6. package/src/analytics/src/analytics-tracker-v2.ts +96 -0
  7. package/src/analytics/src/anaylytics-tracker.ts +96 -0
  8. package/src/analytics/src/index.ts +6 -0
  9. package/src/analytics/src/user-permission.ts +1 -0
  10. package/src/analytics/src/utils.ts +162 -0
  11. package/src/app-update/src/index.ts +1 -0
  12. package/src/app-update/src/lib/app-update.ts +45 -0
  13. package/src/block-registry/src/common.tsx +439 -0
  14. package/src/block-registry/src/common.web.tsx +46 -0
  15. package/src/block-registry/src/index.ts +1 -0
  16. package/src/block-registry/src/keys.ts +43 -0
  17. package/src/block-registry/src/register.tsx +66 -0
  18. package/src/block-registry/src/register.web.tsx +129 -0
  19. package/src/bottom-sheet/src/block-bottom-sheet.tsx +183 -0
  20. package/src/bottom-sheet/src/block-bottom-sheet.web.tsx +4 -0
  21. package/src/bottom-sheet/src/bottom-sheet.tsx +269 -0
  22. package/src/bottom-sheet/src/bottom-sheet.web.tsx +13 -0
  23. package/src/bottom-sheet/src/index.ts +3 -0
  24. package/src/brewery/babel.config.js +3 -0
  25. package/src/brewery/src/ModalBrewery.tsx +222 -0
  26. package/src/brewery/src/ScreenBrewery.tsx +415 -0
  27. package/src/brewery/src/ScreenContainer.tsx +76 -0
  28. package/src/brewery/src/ScreenContextProvider.tsx +27 -0
  29. package/src/brewery/src/app-init.tsx +507 -0
  30. package/src/brewery/src/common.ts +5 -0
  31. package/src/brewery/src/default-content.tsx +234 -0
  32. package/src/brewery/src/index.ts +8 -0
  33. package/src/brewery/src/lazy-screen.tsx +101 -0
  34. package/src/brewery/src/onboarding-screen.tsx +31 -0
  35. package/src/brewery/src/plp-content.tsx +19 -0
  36. package/src/brewery/src/preview-footer.tsx +83 -0
  37. package/src/brewery/src/profile-screen.tsx +74 -0
  38. package/src/brewery/src/refreshing-screen.tsx +129 -0
  39. package/src/brewery/src/safe-area-container.tsx +1 -0
  40. package/src/brewery/src/screen-content.tsx +89 -0
  41. package/src/brewery/src/secondary-splash-screen.tsx +190 -0
  42. package/src/brewery/src/shell.tsx +509 -0
  43. package/src/brewery/src/tab-bar.tsx +252 -0
  44. package/src/brewery/src/tabbed-brewery.tsx +175 -0
  45. package/src/brewery/src/templates.ts +87 -0
  46. package/src/brewery/src/types.ts +123 -0
  47. package/src/brewery/src/utils/bottombar.tsx +266 -0
  48. package/src/brewery/src/utils/colorUtils.ts +71 -0
  49. package/src/brewery/src/utils/createBottombarVisibility.ts +48 -0
  50. package/src/brewery/src/utils/index.tsx +3 -0
  51. package/src/brewery/src/utils/renderItem.tsx +112 -0
  52. package/src/brewery/src/utils/screens.tsx +270 -0
  53. package/src/brewery/src/utils/tabReload.ts +57 -0
  54. package/src/brewery/test-setup.ts +1 -0
  55. package/src/child-navigator/babel.config.js +3 -0
  56. package/src/child-navigator/src/index.tsx +52 -0
  57. package/src/child-navigator/src/view.tsx +197 -0
  58. package/src/components/babel.config.js +3 -0
  59. package/src/components/src/atoms/badge/index.tsx +85 -0
  60. package/src/components/src/atoms/block-section/index.ts +6 -0
  61. package/src/components/src/atoms/button/index.tsx +112 -0
  62. package/src/components/src/atoms/check-box/index.tsx +57 -0
  63. package/src/components/src/atoms/countdown-timer/index.tsx +48 -0
  64. package/src/components/src/atoms/country-selector/constants.ts +3 -0
  65. package/src/components/src/atoms/country-selector/index.tsx +146 -0
  66. package/src/components/src/atoms/date-picker/calendar-date-picker.tsx +509 -0
  67. package/src/components/src/atoms/date-picker/index.tsx +93 -0
  68. package/src/components/src/atoms/flex/index.tsx +24 -0
  69. package/src/components/src/atoms/header/index.ts +2 -0
  70. package/src/components/src/atoms/header/types.ts +1 -0
  71. package/src/components/src/atoms/icon/index.tsx +31 -0
  72. package/src/components/src/atoms/icon-button/index.tsx +29 -0
  73. package/src/components/src/atoms/image/image1.tsx +8 -0
  74. package/src/components/src/atoms/image/image1.web.tsx +5 -0
  75. package/src/components/src/atoms/image/index.ts +1 -0
  76. package/src/components/src/atoms/image/types.ts +12 -0
  77. package/src/components/src/atoms/input/index.tsx +34 -0
  78. package/src/components/src/atoms/link/index.tsx +60 -0
  79. package/src/components/src/atoms/password-input/index.tsx +89 -0
  80. package/src/components/src/atoms/product-card-button/index.tsx +203 -0
  81. package/src/components/src/atoms/radio-group-input/index.tsx +84 -0
  82. package/src/components/src/atoms/rating-input/index.tsx +47 -0
  83. package/src/components/src/atoms/safe-area-container.tsx +29 -0
  84. package/src/components/src/atoms/section/index.ts +1 -0
  85. package/src/components/src/atoms/section/section.tsx +76 -0
  86. package/src/components/src/atoms/select/index.tsx +100 -0
  87. package/src/components/src/atoms/spacer/index.tsx +26 -0
  88. package/src/components/src/atoms/stars/index.tsx +124 -0
  89. package/src/components/src/atoms/stars/star-filled.png +0 -0
  90. package/src/components/src/atoms/stars/star-unfilled.png +0 -0
  91. package/src/components/src/atoms/text/index.tsx +1 -0
  92. package/src/components/src/atoms/video/index.tsx +242 -0
  93. package/src/components/src/atoms/video/index.web.tsx +144 -0
  94. package/src/components/src/blocks/base-blocks/base-rich-text/index.tsx +49 -0
  95. package/src/components/src/blocks/bundle-list-block/index.tsx +21 -0
  96. package/src/components/src/blocks/divider-block/index.tsx +22 -0
  97. package/src/components/src/blocks/dummy/index.tsx +3 -0
  98. package/src/components/src/blocks/manage-address-form-block/index.tsx +172 -0
  99. package/src/components/src/blocks/otp-signin/hooks.tsx +180 -0
  100. package/src/components/src/blocks/otp-signin/index.tsx +139 -0
  101. package/src/components/src/blocks/otp-verification/hooks.tsx +304 -0
  102. package/src/components/src/blocks/otp-verification/index.tsx +212 -0
  103. package/src/components/src/blocks/prefetch-metafields/index.tsx +16 -0
  104. package/src/components/src/blocks/product-card-block/index.tsx +53 -0
  105. package/src/components/src/blocks/product-card-block-v2/index.tsx +71 -0
  106. package/src/components/src/blocks/product-card-block-v2/index.web.tsx +76 -0
  107. package/src/components/src/blocks/product-recommendations-block/index.tsx +152 -0
  108. package/src/components/src/blocks/product-recommendations-block/index.web.tsx +175 -0
  109. package/src/components/src/blocks/rich-text-block/index.tsx +1 -0
  110. package/src/components/src/blocks/rich-text-block/rich-text.tsx +117 -0
  111. package/src/components/src/blocks/rich-text-block/rich-text.web.tsx +91 -0
  112. package/src/components/src/blocks/social-signin/index.tsx +46 -0
  113. package/src/components/src/blocks/status-bar-block/index.tsx +28 -0
  114. package/src/components/src/blocks/variant-selector-2-block/index.tsx +58 -0
  115. package/src/components/src/blocks/variant-selector-3-block/index.tsx +44 -0
  116. package/src/components/src/declaration.d.ts +4 -0
  117. package/src/components/src/hocs/withMetafield.tsx +109 -0
  118. package/src/components/src/index.ts +13 -0
  119. package/src/components/src/molecules/accordion/index.tsx +8 -0
  120. package/src/components/src/molecules/add-to-cart/index.tsx +471 -0
  121. package/src/components/src/molecules/address/addressCard.tsx +171 -0
  122. package/src/components/src/molecules/address-form/index.tsx +270 -0
  123. package/src/components/src/molecules/announcement-strip/icon.tsx +47 -0
  124. package/src/components/src/molecules/announcement-strip/index.tsx +51 -0
  125. package/src/components/src/molecules/app-bar/buttons/back.tsx +59 -0
  126. package/src/components/src/molecules/app-bar/buttons/cart.tsx +63 -0
  127. package/src/components/src/molecules/app-bar/buttons/index.ts +6 -0
  128. package/src/components/src/molecules/app-bar/buttons/logo.tsx +46 -0
  129. package/src/components/src/molecules/app-bar/buttons/logo.web.tsx +42 -0
  130. package/src/components/src/molecules/app-bar/buttons/profile.tsx +25 -0
  131. package/src/components/src/molecules/app-bar/buttons/search.tsx +23 -0
  132. package/src/components/src/molecules/app-bar/buttons/wishlist.tsx +27 -0
  133. package/src/components/src/molecules/app-bar/expanded-search.tsx +28 -0
  134. package/src/components/src/molecules/app-bar/index.tsx +308 -0
  135. package/src/components/src/molecules/app-bar/index.web.tsx +284 -0
  136. package/src/components/src/molecules/appbar-layout-elements.tsx +71 -0
  137. package/src/components/src/molecules/appbar-template/back.tsx +20 -0
  138. package/src/components/src/molecules/appbar-template/cart.tsx +39 -0
  139. package/src/components/src/molecules/appbar-template/default.tsx +52 -0
  140. package/src/components/src/molecules/appbar-template/index.tsx +93 -0
  141. package/src/components/src/molecules/appbar-template/minimal.tsx +27 -0
  142. package/src/components/src/molecules/appbar-template/tabs.tsx +41 -0
  143. package/src/components/src/molecules/appbar-template/wishlist.tsx +42 -0
  144. package/src/components/src/molecules/appbar-v2/appbar-v2.tsx +497 -0
  145. package/src/components/src/molecules/appbar-v2/appbar-v2.web.tsx +512 -0
  146. package/src/components/src/molecules/appbar-v2/appbar-variants/back.ts +42 -0
  147. package/src/components/src/molecules/appbar-v2/appbar-variants/cart.ts +183 -0
  148. package/src/components/src/molecules/appbar-v2/appbar-variants/default.ts +189 -0
  149. package/src/components/src/molecules/appbar-v2/appbar-variants/minimal.ts +52 -0
  150. package/src/components/src/molecules/appbar-v2/appbar-variants/tabs.ts +170 -0
  151. package/src/components/src/molecules/appbar-v2/appbar-variants/wishlist.ts +180 -0
  152. package/src/components/src/molecules/appbar-v2/appbar-variants.ts +15 -0
  153. package/src/components/src/molecules/appbar-v2/index.ts +2 -0
  154. package/src/components/src/molecules/avatar/index.tsx +43 -0
  155. package/src/components/src/molecules/base-accordion-list/index.tsx +56 -0
  156. package/src/components/src/molecules/bottom-bar/bottom-bar.tsx +11 -0
  157. package/src/components/src/molecules/bottom-bar/bottom-bar.web.tsx +111 -0
  158. package/src/components/src/molecules/bottom-bar/index.tsx +1 -0
  159. package/src/components/src/molecules/bundle-list-item/index.tsx +200 -0
  160. package/src/components/src/molecules/carousel/carousel-item.tsx +206 -0
  161. package/src/components/src/molecules/carousel/eye-close.tsx +19 -0
  162. package/src/components/src/molecules/carousel/horizontal-carousel.tsx +418 -0
  163. package/src/components/src/molecules/carousel/index.tsx +85 -0
  164. package/src/components/src/molecules/carousel/index.web.tsx +111 -0
  165. package/src/components/src/molecules/carousel/indicator.tsx +133 -0
  166. package/src/components/src/molecules/carousel/indicator.web.tsx +77 -0
  167. package/src/components/src/molecules/carousel/rich-subtitle.tsx +27 -0
  168. package/src/components/src/molecules/carousel/rich-subtitle.web.tsx +31 -0
  169. package/src/components/src/molecules/carousel/types.ts +41 -0
  170. package/src/components/src/molecules/carousel/utils.ts +116 -0
  171. package/src/components/src/molecules/carousel/v2.tsx +46 -0
  172. package/src/components/src/molecules/carousel/vertical-carousel.tsx +275 -0
  173. package/src/components/src/molecules/cart-goals/components/amount-saved.tsx +82 -0
  174. package/src/components/src/molecules/cart-goals/components/goal-achieved/label.tsx +56 -0
  175. package/src/components/src/molecules/cart-goals/components/header.tsx +106 -0
  176. package/src/components/src/molecules/cart-goals/components/ineligible-text.tsx +61 -0
  177. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/index.tsx +27 -0
  178. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-1.tsx +50 -0
  179. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-10.tsx +53 -0
  180. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-2.tsx +43 -0
  181. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-3.tsx +44 -0
  182. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-4.tsx +53 -0
  183. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-7.tsx +44 -0
  184. package/src/components/src/molecules/cart-goals/components/multi-tier-layout/types.ts +13 -0
  185. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/CircleWithProgress.tsx +94 -0
  186. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/constants.ts +6 -0
  187. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/index.tsx +28 -0
  188. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-1.tsx +183 -0
  189. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-10.tsx +242 -0
  190. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-2.tsx +160 -0
  191. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-3.tsx +113 -0
  192. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-4-utils.ts +39 -0
  193. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-4.tsx +216 -0
  194. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-7.tsx +113 -0
  195. package/src/components/src/molecules/cart-goals/components/multi-tier-progress/types.ts +18 -0
  196. package/src/components/src/molecules/cart-goals/components/single-tier-progress.tsx +210 -0
  197. package/src/components/src/molecules/cart-goals/components/success-modal/index.tsx +117 -0
  198. package/src/components/src/molecules/cart-goals/haptics.ts +40 -0
  199. package/src/components/src/molecules/cart-goals/index.tsx +2 -0
  200. package/src/components/src/molecules/cart-goals/multi-tier-utils.ts +139 -0
  201. package/src/components/src/molecules/cart-goals/multi-tier.tsx +466 -0
  202. package/src/components/src/molecules/cart-goals/single-tier-utils.ts +45 -0
  203. package/src/components/src/molecules/cart-goals/single-tier.tsx +521 -0
  204. package/src/components/src/molecules/cart-goals/types.ts +105 -0
  205. package/src/components/src/molecules/cart-goals/use-goal-success-modal.tsx +103 -0
  206. package/src/components/src/molecules/cart-goals/use-tier-change.ts +42 -0
  207. package/src/components/src/molecules/cart-goals/utils.ts +153 -0
  208. package/src/components/src/molecules/checkout-bar/index.tsx +155 -0
  209. package/src/components/src/molecules/checkout-bar-v2/cart-custom-attributes-interceptor.tsx +130 -0
  210. package/src/components/src/molecules/checkout-bar-v2/circle.tsx +63 -0
  211. package/src/components/src/molecules/checkout-bar-v2/goals.tsx +391 -0
  212. package/src/components/src/molecules/checkout-bar-v2/goals.web.tsx +374 -0
  213. package/src/components/src/molecules/checkout-bar-v2/index.tsx +267 -0
  214. package/src/components/src/molecules/checkout-bar-v2/index.web.tsx +115 -0
  215. package/src/components/src/molecules/checkout-bar-v2/interceptor.tsx +73 -0
  216. package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/index.tsx +216 -0
  217. package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/item.tsx +94 -0
  218. package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/styles.ts +136 -0
  219. package/src/components/src/molecules/chips-navigation/chip.tsx +83 -0
  220. package/src/components/src/molecules/chips-navigation/horizontal.tsx +140 -0
  221. package/src/components/src/molecules/chips-navigation/horizontal.web.tsx +145 -0
  222. package/src/components/src/molecules/chips-navigation/index.tsx +13 -0
  223. package/src/components/src/molecules/chips-navigation/index.web.ts +13 -0
  224. package/src/components/src/molecules/chips-navigation/utils.ts +35 -0
  225. package/src/components/src/molecules/chips-navigation/vertical.tsx +108 -0
  226. package/src/components/src/molecules/choice-sheet-content/index.tsx +111 -0
  227. package/src/components/src/molecules/confirmation-popup/index.tsx +51 -0
  228. package/src/components/src/molecules/controlled-video/index.tsx +316 -0
  229. package/src/components/src/molecules/currency-selection-prompt/index.tsx +24 -0
  230. package/src/components/src/molecules/currency-selector/index.tsx +244 -0
  231. package/src/components/src/molecules/currency-selector/layout-element.tsx +24 -0
  232. package/src/components/src/molecules/direct-navigation/index.tsx +48 -0
  233. package/src/components/src/molecules/discount-label/index.tsx +55 -0
  234. package/src/components/src/molecules/divider/index.tsx +23 -0
  235. package/src/components/src/molecules/dropdown-picker/index.tsx +217 -0
  236. package/src/components/src/molecules/empty-screen-v2/index.tsx +83 -0
  237. package/src/components/src/molecules/fallback/index.tsx +70 -0
  238. package/src/components/src/molecules/filter/color-filter.tsx +173 -0
  239. package/src/components/src/molecules/filter/index.tsx +244 -0
  240. package/src/components/src/molecules/filter/index.web.tsx +111 -0
  241. package/src/components/src/molecules/filter/selectors.tsx +623 -0
  242. package/src/components/src/molecules/form-input/index.tsx +451 -0
  243. package/src/components/src/molecules/full-screen-loading/index.tsx +20 -0
  244. package/src/components/src/molecules/generic-form/common.tsx +298 -0
  245. package/src/components/src/molecules/generic-form/index.tsx +131 -0
  246. package/src/components/src/molecules/generic-form/types.tsx +30 -0
  247. package/src/components/src/molecules/generic-product-card/card.tsx +5 -0
  248. package/src/components/src/molecules/generic-product-card/card.web.tsx +1 -0
  249. package/src/components/src/molecules/generic-product-card/cardV2.tsx +342 -0
  250. package/src/components/src/molecules/generic-product-card/common.tsx +590 -0
  251. package/src/components/src/molecules/generic-product-card/index.tsx +2 -0
  252. package/src/components/src/molecules/generic-product-card/tags.tsx +178 -0
  253. package/src/components/src/molecules/generic-product-card/types.tsx +219 -0
  254. package/src/components/src/molecules/generic-product-card/wrapper.tsx +39 -0
  255. package/src/components/src/molecules/gift-item-card/index.tsx +44 -0
  256. package/src/components/src/molecules/gift-item-selected-card/index.tsx +28 -0
  257. package/src/components/src/molecules/hidden-block/index.tsx +8 -0
  258. package/src/components/src/molecules/hidden-block/index.web.tsx +81 -0
  259. package/src/components/src/molecules/image-compare/index.tsx +236 -0
  260. package/src/components/src/molecules/image-compare/index.web.tsx +213 -0
  261. package/src/components/src/molecules/image-navigation/index.tsx +32 -0
  262. package/src/components/src/molecules/image-preview/image-preview.tsx +295 -0
  263. package/src/components/src/molecules/image-preview/image-preview.web.tsx +157 -0
  264. package/src/components/src/molecules/image-preview-2/close-icon-button.tsx +11 -0
  265. package/src/components/src/molecules/image-preview-2/constants.ts +2 -0
  266. package/src/components/src/molecules/image-preview-2/footer-item.tsx +52 -0
  267. package/src/components/src/molecules/image-preview-2/footer.tsx +58 -0
  268. package/src/components/src/molecules/image-preview-2/index.tsx +139 -0
  269. package/src/components/src/molecules/image-preview-2/types.ts +72 -0
  270. package/src/components/src/molecules/image-text/index.tsx +139 -0
  271. package/src/components/src/molecules/line-item/index.tsx +45 -0
  272. package/src/components/src/molecules/list-item/index.tsx +758 -0
  273. package/src/components/src/molecules/loader/index.tsx +40 -0
  274. package/src/components/src/molecules/menu/accordion/image-menu-accordion-list.tsx +114 -0
  275. package/src/components/src/molecules/menu/accordion/text-menu-accordion-list.tsx +111 -0
  276. package/src/components/src/molecules/menu/common/horizontal-menu-list.tsx +279 -0
  277. package/src/components/src/molecules/menu/common/menu-accordion.tsx +69 -0
  278. package/src/components/src/molecules/menu/common/menu-grid.tsx +179 -0
  279. package/src/components/src/molecules/menu/common/vertical-menu-list.tsx +197 -0
  280. package/src/components/src/molecules/menu/common/vertical-menu-list.web.tsx +196 -0
  281. package/src/components/src/molecules/menu/expandable-grid/image-menu-expandable-grid.tsx +128 -0
  282. package/src/components/src/molecules/menu/expandable-grid/text-menu-expandable-grid.tsx +107 -0
  283. package/src/components/src/molecules/menu/grid/image-menu-grid.tsx +58 -0
  284. package/src/components/src/molecules/menu/grid/text-menu-grid.tsx +55 -0
  285. package/src/components/src/molecules/menu/index.tsx +38 -0
  286. package/src/components/src/molecules/menu/item/image-menu-item.tsx +226 -0
  287. package/src/components/src/molecules/menu/item/text-menu-item.tsx +174 -0
  288. package/src/components/src/molecules/menu/list/horizontal-image-menu-list.tsx +55 -0
  289. package/src/components/src/molecules/menu/list/horizontal-text-menu-list.tsx +53 -0
  290. package/src/components/src/molecules/menu/list/image-menu-list.tsx +38 -0
  291. package/src/components/src/molecules/menu/list/text-menu-list.tsx +38 -0
  292. package/src/components/src/molecules/menu/list/vertical-image-menu-list.tsx +58 -0
  293. package/src/components/src/molecules/menu/list/vertical-text-menu-list.tsx +52 -0
  294. package/src/components/src/molecules/menu/sub-menu-item.tsx +50 -0
  295. package/src/components/src/molecules/menu/tabs/horizontal-image-menu-tabs.tsx +211 -0
  296. package/src/components/src/molecules/menu/tabs/horizontal-text-menu-tabs.tsx +211 -0
  297. package/src/components/src/molecules/menu/tabs/image-menu-tabs.tsx +52 -0
  298. package/src/components/src/molecules/menu/tabs/text-menu-tabs.tsx +49 -0
  299. package/src/components/src/molecules/menu/tabs/vertical-image-menu-tabs.tsx +224 -0
  300. package/src/components/src/molecules/menu/tabs/vertical-text-menu-tabs.tsx +222 -0
  301. package/src/components/src/molecules/menu/types.ts +580 -0
  302. package/src/components/src/molecules/menu/utils.ts +229 -0
  303. package/src/components/src/molecules/metafield-tag/index.tsx +36 -0
  304. package/src/components/src/molecules/metafield-tag/index.web.tsx +3 -0
  305. package/src/components/src/molecules/metafield-text/index.tsx +47 -0
  306. package/src/components/src/molecules/no-internet-block/index.tsx +43 -0
  307. package/src/components/src/molecules/only-text-navigation.tsx/index.tsx +79 -0
  308. package/src/components/src/molecules/order-item/index.tsx +108 -0
  309. package/src/components/src/molecules/payment-bar/index.tsx +139 -0
  310. package/src/components/src/molecules/pdp-quantity-selector/index.tsx +44 -0
  311. package/src/components/src/molecules/phone-country-input/index.tsx +153 -0
  312. package/src/components/src/molecules/phone-input/index.tsx +287 -0
  313. package/src/components/src/molecules/phone-input/index.web.tsx +21 -0
  314. package/src/components/src/molecules/price-box/index.tsx +54 -0
  315. package/src/components/src/molecules/price-text/index.tsx +40 -0
  316. package/src/components/src/molecules/product-card/index.tsx +162 -0
  317. package/src/components/src/molecules/product-card/wishlist/index.tsx +35 -0
  318. package/src/components/src/molecules/product-card-with-carousel/index.tsx +139 -0
  319. package/src/components/src/molecules/product-collection/GotoLinkButton.tsx +59 -0
  320. package/src/components/src/molecules/product-collection/GotoLinkButton.web.tsx +65 -0
  321. package/src/components/src/molecules/product-collection/index.tsx +458 -0
  322. package/src/components/src/molecules/product-collection/wrapper.tsx +224 -0
  323. package/src/components/src/molecules/product-components/add-to-bundle.tsx +19 -0
  324. package/src/components/src/molecules/product-components/add-to-cart.tsx +708 -0
  325. package/src/components/src/molecules/product-components/add-to-cart.web.tsx +398 -0
  326. package/src/components/src/molecules/product-components/add-to-wishlist-v2.tsx +43 -0
  327. package/src/components/src/molecules/product-components/add-to-wishlist.tsx +42 -0
  328. package/src/components/src/molecules/product-components/avg-ratings.tsx +56 -0
  329. package/src/components/src/molecules/product-components/carousel.tsx +85 -0
  330. package/src/components/src/molecules/product-components/color-swatch.tsx +81 -0
  331. package/src/components/src/molecules/product-components/compare-at-price.tsx +52 -0
  332. package/src/components/src/molecules/product-components/delete-from-wishlist.tsx +39 -0
  333. package/src/components/src/molecules/product-components/discount-label.tsx +109 -0
  334. package/src/components/src/molecules/product-components/goto-button-v2.tsx +42 -0
  335. package/src/components/src/molecules/product-components/hooks/carousel.ts +160 -0
  336. package/src/components/src/molecules/product-components/image.tsx +132 -0
  337. package/src/components/src/molecules/product-components/in-stock.tsx +86 -0
  338. package/src/components/src/molecules/product-components/index.tsx +25 -0
  339. package/src/components/src/molecules/product-components/metafield-rich-text.tsx +61 -0
  340. package/src/components/src/molecules/product-components/metafield-shopify-richtext.tsx +54 -0
  341. package/src/components/src/molecules/product-components/metafield-text.tsx +48 -0
  342. package/src/components/src/molecules/product-components/min-variant-price.tsx +48 -0
  343. package/src/components/src/molecules/product-components/move-to-cart.tsx +35 -0
  344. package/src/components/src/molecules/product-components/notify-me.tsx +93 -0
  345. package/src/components/src/molecules/product-components/open-modal.tsx +35 -0
  346. package/src/components/src/molecules/product-components/overlay.tsx +25 -0
  347. package/src/components/src/molecules/product-components/price.tsx +64 -0
  348. package/src/components/src/molecules/product-components/product-tag-v2.tsx +108 -0
  349. package/src/components/src/molecules/product-components/product-tag.tsx +56 -0
  350. package/src/components/src/molecules/product-components/product-type.tsx +32 -0
  351. package/src/components/src/molecules/product-components/product-variant-options.tsx +69 -0
  352. package/src/components/src/molecules/product-components/product-variant-selector-3.tsx +67 -0
  353. package/src/components/src/molecules/product-components/product-vendor.tsx +36 -0
  354. package/src/components/src/molecules/product-components/quantity-selector.tsx +307 -0
  355. package/src/components/src/molecules/product-components/quantity-selector.web.tsx +332 -0
  356. package/src/components/src/molecules/product-components/ratings-count.tsx +57 -0
  357. package/src/components/src/molecules/product-components/scarcity-counter.tsx +159 -0
  358. package/src/components/src/molecules/product-components/selling-plan-compare-at-price.tsx +43 -0
  359. package/src/components/src/molecules/product-components/selling-plan-discount.tsx +42 -0
  360. package/src/components/src/molecules/product-components/selling-plan-price.tsx +44 -0
  361. package/src/components/src/molecules/product-components/share-icon.tsx +49 -0
  362. package/src/components/src/molecules/product-components/spacer.tsx +18 -0
  363. package/src/components/src/molecules/product-components/star-ratings.tsx +48 -0
  364. package/src/components/src/molecules/product-components/text-tag.tsx +36 -0
  365. package/src/components/src/molecules/product-components/title.tsx +34 -0
  366. package/src/components/src/molecules/product-components/title.web.tsx +34 -0
  367. package/src/components/src/molecules/product-components/types.tsx +7 -0
  368. package/src/components/src/molecules/product-components/upsell-product-price.tsx +82 -0
  369. package/src/components/src/molecules/product-components/utils/add-to-cart.ts +108 -0
  370. package/src/components/src/molecules/product-components/utils/selected-selling-plan.ts +32 -0
  371. package/src/components/src/molecules/product-components/utils/selling-plan-compare-at-price.ts +36 -0
  372. package/src/components/src/molecules/product-components/utils/selling-plan-discount.ts +64 -0
  373. package/src/components/src/molecules/product-components/utils/selling-plan-price.ts +36 -0
  374. package/src/components/src/molecules/product-components/variant-selector.tsx +88 -0
  375. package/src/components/src/molecules/product-components/variant-sku.tsx +35 -0
  376. package/src/components/src/molecules/product-description-with-tags/index.tsx +56 -0
  377. package/src/components/src/molecules/product-group/index.tsx +64 -0
  378. package/src/components/src/molecules/product-group/product-group-list.tsx +64 -0
  379. package/src/components/src/molecules/product-image/index.tsx +143 -0
  380. package/src/components/src/molecules/product-tag/index.tsx +33 -0
  381. package/src/components/src/molecules/product-title/index.tsx +28 -0
  382. package/src/components/src/molecules/product-vendor/index.tsx +18 -0
  383. package/src/components/src/molecules/product-video/index.tsx +80 -0
  384. package/src/components/src/molecules/profile/index.tsx +0 -0
  385. package/src/components/src/molecules/quantity-selector/index.tsx +596 -0
  386. package/src/components/src/molecules/review-label/index.tsx +33 -0
  387. package/src/components/src/molecules/rich-text/index.tsx +1 -0
  388. package/src/components/src/molecules/rich-text/rich-text.tsx +1 -0
  389. package/src/components/src/molecules/rich-text/rich-text.web.tsx +1 -0
  390. package/src/components/src/molecules/search-input/index.tsx +248 -0
  391. package/src/components/src/molecules/sheet-header/index.tsx +55 -0
  392. package/src/components/src/molecules/shipping-address-label/index.tsx +67 -0
  393. package/src/components/src/molecules/simple-image-text/index.tsx +85 -0
  394. package/src/components/src/molecules/single-product-card/index.tsx +27 -0
  395. package/src/components/src/molecules/size-guide/index.tsx +187 -0
  396. package/src/components/src/molecules/skeleton/index.tsx +47 -0
  397. package/src/components/src/molecules/skeleton/index.web.tsx +18 -0
  398. package/src/components/src/molecules/skeleton/product-card.tsx +52 -0
  399. package/src/components/src/molecules/social-sign-in/apple-signin.tsx +88 -0
  400. package/src/components/src/molecules/social-sign-in/apple-signin.web.ts +4 -0
  401. package/src/components/src/molecules/social-sign-in/google-signin.tsx +105 -0
  402. package/src/components/src/molecules/social-sign-in/google-signin.web.ts +3 -0
  403. package/src/components/src/molecules/social-sign-in/social-auth.tsx +83 -0
  404. package/src/components/src/molecules/social-sign-in/social-signin-layout-item.tsx +54 -0
  405. package/src/components/src/molecules/social-sign-in/truecaller-signin.tsx +103 -0
  406. package/src/components/src/molecules/sub-navigations/index.tsx +169 -0
  407. package/src/components/src/molecules/subscription-v2/index.tsx +47 -0
  408. package/src/components/src/molecules/subscription-v2/subscription.tsx +356 -0
  409. package/src/components/src/molecules/subscription-v2/subscriptions-option-modal.tsx +78 -0
  410. package/src/components/src/molecules/switch/index.tsx +72 -0
  411. package/src/components/src/molecules/tab-selector/index.tsx +160 -0
  412. package/src/components/src/molecules/tab-view/index.tsx +2 -0
  413. package/src/components/src/molecules/tab-view/tab-item.tsx +67 -0
  414. package/src/components/src/molecules/tab-view/tab-pane.tsx +13 -0
  415. package/src/components/src/molecules/tab-view/tabs.tsx +64 -0
  416. package/src/components/src/molecules/text-carousel/index.tsx +111 -0
  417. package/src/components/src/molecules/text-label/index.tsx +36 -0
  418. package/src/components/src/molecules/toasts/add-to-cart-toast.tsx +48 -0
  419. package/src/components/src/molecules/toasts/brew-error-toast.tsx +49 -0
  420. package/src/components/src/molecules/toasts/brew-success-toast.tsx +55 -0
  421. package/src/components/src/molecules/toasts/index.tsx +3 -0
  422. package/src/components/src/molecules/trending-pillet/index.tsx +48 -0
  423. package/src/components/src/molecules/variant-item-selector/index.tsx +171 -0
  424. package/src/components/src/molecules/variant-selector-2/index.tsx +669 -0
  425. package/src/components/src/molecules/variant-selector-3/default-color-item.tsx +120 -0
  426. package/src/components/src/molecules/variant-selector-3/default-shopify-color.tsx +167 -0
  427. package/src/components/src/molecules/variant-selector-3/default-variant-image.tsx +82 -0
  428. package/src/components/src/molecules/variant-selector-3/index.tsx +114 -0
  429. package/src/components/src/molecules/variant-selector-3/option-items.tsx +171 -0
  430. package/src/components/src/molecules/variant-selector-3/option-list.tsx +86 -0
  431. package/src/components/src/molecules/variant-selector-3/option.tsx +42 -0
  432. package/src/components/src/molecules/variant-selector-3/utils.ts +131 -0
  433. package/src/components/src/molecules/variant-selector-3/variant-heading.tsx +162 -0
  434. package/src/components/src/molecules/variant-selector-3/variant-options.tsx +201 -0
  435. package/src/components/src/molecules/variant-selector-modal/index.tsx +127 -0
  436. package/src/components/src/molecules/variant-selector-type/index.tsx +235 -0
  437. package/src/components/src/molecules/video-carousel-item/index.tsx +183 -0
  438. package/src/components/src/molecules/video-carousel-item/product-list.tsx +258 -0
  439. package/src/components/src/molecules/video-carousel-item/product-list.web.tsx +197 -0
  440. package/src/components/src/molecules/way-to-reward-card/index.tsx +236 -0
  441. package/src/components/src/molecules/way-to-reward-card/index.web.tsx +188 -0
  442. package/src/components/src/molecules/web-view-auto-height/index.tsx +28 -0
  443. package/src/components/src/molecules/wishlist/add-to-wishlist-v2.tsx +144 -0
  444. package/src/components/src/molecules/wishlist/add-to-wishlist.tsx +136 -0
  445. package/src/components/src/molecules/wishlist/index.ts +1 -0
  446. package/src/components/src/molecules/wishlist/move-to-cart.tsx +57 -0
  447. package/src/components/src/molecules/wishlist/remove-from-wishlist.tsx +40 -0
  448. package/src/components/src/molecules/youtube-video/index.tsx +54 -0
  449. package/src/components/src/molecules/youtube-video/index.web.tsx +44 -0
  450. package/src/components/src/organisms/a1-accordion/index.tsx +93 -0
  451. package/src/components/src/organisms/a1-accordion/index.web.tsx +82 -0
  452. package/src/components/src/organisms/a1-accordion-image/index.tsx +97 -0
  453. package/src/components/src/organisms/a1-collection-image-banner/index.tsx +84 -0
  454. package/src/components/src/organisms/a1-collection-image-banner/index.web.tsx +23 -0
  455. package/src/components/src/organisms/a1-generic-metafield-accordion/index.tsx +90 -0
  456. package/src/components/src/organisms/a1-generic-metafield-accordion/index.web.tsx +10 -0
  457. package/src/components/src/organisms/a1-image-banner/index.tsx +86 -0
  458. package/src/components/src/organisms/a1-image-list/index.tsx +99 -0
  459. package/src/components/src/organisms/a1-product-description-html/index.tsx +137 -0
  460. package/src/components/src/organisms/a1-product-description-html/index.web.tsx +90 -0
  461. package/src/components/src/organisms/a1-product-grid/index.tsx +60 -0
  462. package/src/components/src/organisms/a1-product-list/index.tsx +92 -0
  463. package/src/components/src/organisms/accordion-image/index.tsx +68 -0
  464. package/src/components/src/organisms/add-address/index.tsx +62 -0
  465. package/src/components/src/organisms/add-review/index.tsx +190 -0
  466. package/src/components/src/organisms/add-to-bundle/index.tsx +44 -0
  467. package/src/components/src/organisms/add-to-cart-bar/add-to-card-bar.tsx +115 -0
  468. package/src/components/src/organisms/add-to-cart-bar/index.tsx +1 -0
  469. package/src/components/src/organisms/add-to-cart-bar/v2.tsx +205 -0
  470. package/src/components/src/organisms/add-to-cart-bar/wrapper.tsx +44 -0
  471. package/src/components/src/organisms/add-to-wishlist-bar/index.tsx +96 -0
  472. package/src/components/src/organisms/address-form/index.tsx +511 -0
  473. package/src/components/src/organisms/address-form-input-field/index.tsx +375 -0
  474. package/src/components/src/organisms/address-list/index.tsx +154 -0
  475. package/src/components/src/organisms/announcement-carousel/index.tsx +207 -0
  476. package/src/components/src/organisms/announcement-carousel/index.web.tsx +73 -0
  477. package/src/components/src/organisms/announcement-ticker/index.tsx +247 -0
  478. package/src/components/src/organisms/announcement-ticker/index.web.tsx +169 -0
  479. package/src/components/src/organisms/apply-coupon/index.tsx +395 -0
  480. package/src/components/src/organisms/apply-coupon-v2/applied-coupon-card.tsx +84 -0
  481. package/src/components/src/organisms/apply-coupon-v2/available-coupons.tsx +123 -0
  482. package/src/components/src/organisms/apply-coupon-v2/coupon-svg-bg.tsx +25 -0
  483. package/src/components/src/organisms/apply-coupon-v2/index.tsx +367 -0
  484. package/src/components/src/organisms/blog-list/blog-data.tsx +268 -0
  485. package/src/components/src/organisms/blog-list/blog-item.tsx +70 -0
  486. package/src/components/src/organisms/blog-list/empty-blog-list.tsx +42 -0
  487. package/src/components/src/organisms/blog-list/index.tsx +102 -0
  488. package/src/components/src/organisms/blog-list/index.web.tsx +92 -0
  489. package/src/components/src/organisms/brew-collection-image-banner/index.tsx +96 -0
  490. package/src/components/src/organisms/bundle-bar/index.tsx +128 -0
  491. package/src/components/src/organisms/bundle-filter-bar/index.tsx +114 -0
  492. package/src/components/src/organisms/bundle-items-modal/index.tsx +140 -0
  493. package/src/components/src/organisms/bundle-list/index.tsx +65 -0
  494. package/src/components/src/organisms/buy-now-bar/index.tsx +79 -0
  495. package/src/components/src/organisms/carousel-with-background-blur/carousel.tsx +393 -0
  496. package/src/components/src/organisms/carousel-with-background-blur/carousel.web.tsx +179 -0
  497. package/src/components/src/organisms/carousel-with-background-blur/index.tsx +90 -0
  498. package/src/components/src/organisms/carousel-with-background-blur/index.web.tsx +73 -0
  499. package/src/components/src/organisms/carousel-with-background-blur/indicator.tsx +144 -0
  500. package/src/components/src/organisms/cart-custom-attributes/index.tsx +103 -0
  501. package/src/components/src/organisms/cart-goal/index.tsx +116 -0
  502. package/src/components/src/organisms/cart-goals/index.tsx +2 -0
  503. package/src/components/src/organisms/cart-goals/milestones.tsx +233 -0
  504. package/src/components/src/organisms/cart-goals/progress-bar.tsx +214 -0
  505. package/src/components/src/organisms/cart-list/cart-item.tsx +0 -0
  506. package/src/components/src/organisms/cart-list/empty-cart.tsx +113 -0
  507. package/src/components/src/organisms/cart-list/index.tsx +271 -0
  508. package/src/components/src/organisms/cart-payment-web-view/index.tsx +213 -0
  509. package/src/components/src/organisms/categories-navigation/index.tsx +168 -0
  510. package/src/components/src/organisms/change-address/index.tsx +512 -0
  511. package/src/components/src/organisms/change-address-v2/index.tsx +223 -0
  512. package/src/components/src/organisms/change-password/index.tsx +231 -0
  513. package/src/components/src/organisms/chips-navigation/index.tsx +41 -0
  514. package/src/components/src/organisms/chips-navigation/index.web.tsx +69 -0
  515. package/src/components/src/organisms/chips-navigation-accordion/index.tsx +47 -0
  516. package/src/components/src/organisms/collection-list/index.tsx +74 -0
  517. package/src/components/src/organisms/collection-list-background/index.tsx +99 -0
  518. package/src/components/src/organisms/color-image/index.tsx +79 -0
  519. package/src/components/src/organisms/color-swatch-group/index.tsx +141 -0
  520. package/src/components/src/organisms/confirm-dialog/index.tsx +34 -0
  521. package/src/components/src/organisms/countdown-banner/common.tsx +263 -0
  522. package/src/components/src/organisms/countdown-banner/index.tsx +143 -0
  523. package/src/components/src/organisms/countdown-banner/index.web.tsx +176 -0
  524. package/src/components/src/organisms/countdown-banner/types.tsx +29 -0
  525. package/src/components/src/organisms/currency-selector/index.tsx +39 -0
  526. package/src/components/src/organisms/delete-account/index.tsx +93 -0
  527. package/src/components/src/organisms/delete-account-privacy/index.tsx +39 -0
  528. package/src/components/src/organisms/delivery-details/index.tsx +157 -0
  529. package/src/components/src/organisms/discount-code-input/index.tsx +152 -0
  530. package/src/components/src/organisms/divider-heading/index.tsx +51 -0
  531. package/src/components/src/organisms/edit-address/index.tsx +53 -0
  532. package/src/components/src/organisms/empty-screen/index.tsx +74 -0
  533. package/src/components/src/organisms/empty-screen-v2/index.tsx +26 -0
  534. package/src/components/src/organisms/empty-searches/index.tsx +96 -0
  535. package/src/components/src/organisms/estimated-delivery-date/dates-mapping.ts +23 -0
  536. package/src/components/src/organisms/estimated-delivery-date/index.tsx +141 -0
  537. package/src/components/src/organisms/faqs/defaults.ts +65 -0
  538. package/src/components/src/organisms/faqs/index.tsx +51 -0
  539. package/src/components/src/organisms/faqs/index.web.tsx +64 -0
  540. package/src/components/src/organisms/follow-us/index.tsx +58 -0
  541. package/src/components/src/organisms/forgot-password/index.tsx +228 -0
  542. package/src/components/src/organisms/free-engraving/index.tsx +180 -0
  543. package/src/components/src/organisms/gift-items-list/index.tsx +98 -0
  544. package/src/components/src/organisms/gift-wrap-list/custom-attributes-form.tsx +77 -0
  545. package/src/components/src/organisms/gift-wrap-list/gift-wrap-item.tsx +133 -0
  546. package/src/components/src/organisms/gift-wrap-list/index.tsx +72 -0
  547. package/src/components/src/organisms/goto-button/index.tsx +53 -0
  548. package/src/components/src/organisms/goto-button/index.web.tsx +46 -0
  549. package/src/components/src/organisms/goto-button-v2/index.tsx +58 -0
  550. package/src/components/src/organisms/horizontal-tabs-menu/defaults.ts +797 -0
  551. package/src/components/src/organisms/horizontal-tabs-menu/index.tsx +79 -0
  552. package/src/components/src/organisms/icon-list/index.tsx +150 -0
  553. package/src/components/src/organisms/image-banner/index.tsx +158 -0
  554. package/src/components/src/organisms/image-collage/constants.ts +8 -0
  555. package/src/components/src/organisms/image-collage/index.tsx +147 -0
  556. package/src/components/src/organisms/image-collage/variants.common.ts +415 -0
  557. package/src/components/src/organisms/image-collage/variants.ts +129 -0
  558. package/src/components/src/organisms/image-collage/variants.web.ts +119 -0
  559. package/src/components/src/organisms/image-compare-block/index.tsx +48 -0
  560. package/src/components/src/organisms/image-list/index.tsx +427 -0
  561. package/src/components/src/organisms/image-list/utils.tsx +8 -0
  562. package/src/components/src/organisms/image-list/utils.web.tsx +6 -0
  563. package/src/components/src/organisms/image-list-accordion/index.tsx +47 -0
  564. package/src/components/src/organisms/image-marquee/index.tsx +178 -0
  565. package/src/components/src/organisms/image-marquee/index.web.tsx +190 -0
  566. package/src/components/src/organisms/image-marquee/types.ts +14 -0
  567. package/src/components/src/organisms/image-preview/index.tsx +51 -0
  568. package/src/components/src/organisms/image-video-reel/carouse-item.tsx +348 -0
  569. package/src/components/src/organisms/image-video-reel/carouse-item.web.tsx +318 -0
  570. package/src/components/src/organisms/image-video-reel/index.tsx +359 -0
  571. package/src/components/src/organisms/image-video-reel/indicator.tsx +116 -0
  572. package/src/components/src/organisms/image-video-reel/indicator.web.tsx +80 -0
  573. package/src/components/src/organisms/image-video-reel/types.ts +103 -0
  574. package/src/components/src/organisms/infinite-product-grid/index.tsx +218 -0
  575. package/src/components/src/organisms/infinite-product-grid/index.web.tsx +105 -0
  576. package/src/components/src/organisms/infinite-product-grid-v2/index.tsx +163 -0
  577. package/src/components/src/organisms/judgeme-reviews/index.tsx +129 -0
  578. package/src/components/src/organisms/judgeme-reviews/utils.ts +77 -0
  579. package/src/components/src/organisms/last-order/index.tsx +40 -0
  580. package/src/components/src/organisms/metafield-image-compare-block/hook.tsx +119 -0
  581. package/src/components/src/organisms/metafield-image-compare-block/index.tsx +59 -0
  582. package/src/components/src/organisms/metafield-product-list/index.tsx +114 -0
  583. package/src/components/src/organisms/metafield-rich-text/index.tsx +101 -0
  584. package/src/components/src/organisms/metafield-rich-text/metafield-accordian.tsx +51 -0
  585. package/src/components/src/organisms/metafield-rich-text/metafield-accordian.web.tsx +55 -0
  586. package/src/components/src/organisms/metafield-size-chart-page/index.tsx +86 -0
  587. package/src/components/src/organisms/metafield-tag-block/index.tsx +28 -0
  588. package/src/components/src/organisms/metafield-text/index.tsx +87 -0
  589. package/src/components/src/organisms/metafields-product-group/index.tsx +89 -0
  590. package/src/components/src/organisms/more-menu/index.tsx +64 -0
  591. package/src/components/src/organisms/move-to-wishlist/index.tsx +79 -0
  592. package/src/components/src/organisms/multi-level-menu/index.tsx +54 -0
  593. package/src/components/src/organisms/opinew-reviews/index.tsx +102 -0
  594. package/src/components/src/organisms/opinew-reviews/utils.tsx +55 -0
  595. package/src/components/src/organisms/order-cancel/index.tsx +63 -0
  596. package/src/components/src/organisms/order-details-header/index.tsx +78 -0
  597. package/src/components/src/organisms/order-details-webview/index.tsx +47 -0
  598. package/src/components/src/organisms/order-list/index.tsx +458 -0
  599. package/src/components/src/organisms/order-payment-details/index.tsx +90 -0
  600. package/src/components/src/organisms/order-product-list/index.tsx +79 -0
  601. package/src/components/src/organisms/order-product-list-v2/index.tsx +158 -0
  602. package/src/components/src/organisms/otp-signup/index.tsx +186 -0
  603. package/src/components/src/organisms/past-searches/index.tsx +202 -0
  604. package/src/components/src/organisms/payment-confirmation/index.tsx +177 -0
  605. package/src/components/src/organisms/payment-details/index.tsx +264 -0
  606. package/src/components/src/organisms/payment-success/index.tsx +49 -0
  607. package/src/components/src/organisms/payment-web-view/index.tsx +285 -0
  608. package/src/components/src/organisms/payment-web-view-v4/index.tsx +600 -0
  609. package/src/components/src/organisms/pdp/index.tsx +168 -0
  610. package/src/components/src/organisms/pdp/index.web.tsx +60 -0
  611. package/src/components/src/organisms/pdp-description/index.tsx +104 -0
  612. package/src/components/src/organisms/pdp-description-native/index.tsx +63 -0
  613. package/src/components/src/organisms/pdp-description-native/index.web.tsx +11 -0
  614. package/src/components/src/organisms/pdp-metafield-video/index.tsx +153 -0
  615. package/src/components/src/organisms/popup-modal/index.tsx +129 -0
  616. package/src/components/src/organisms/previously-ordered-products/index.tsx +105 -0
  617. package/src/components/src/organisms/product-discount/common.tsx +123 -0
  618. package/src/components/src/organisms/product-discount/coupon-card.tsx +125 -0
  619. package/src/components/src/organisms/product-discount/defaults.ts +136 -0
  620. package/src/components/src/organisms/product-discount/empty-coupons.tsx +4 -0
  621. package/src/components/src/organisms/product-discount/empty-coupons.web.tsx +11 -0
  622. package/src/components/src/organisms/product-discount/index.tsx +228 -0
  623. package/src/components/src/organisms/product-discount/types.tsx +28 -0
  624. package/src/components/src/organisms/product-grid/index.tsx +86 -0
  625. package/src/components/src/organisms/product-hotspot/animated-circle.tsx +88 -0
  626. package/src/components/src/organisms/product-hotspot/animated-circle.web.tsx +55 -0
  627. package/src/components/src/organisms/product-hotspot/index.tsx +255 -0
  628. package/src/components/src/organisms/product-hotspot/item.tsx +124 -0
  629. package/src/components/src/organisms/product-hotspot/modal-body.tsx +50 -0
  630. package/src/components/src/organisms/product-hotspot/product-card.tsx +111 -0
  631. package/src/components/src/organisms/product-info/index.tsx +421 -0
  632. package/src/components/src/organisms/product-info/wrapper.tsx +15 -0
  633. package/src/components/src/organisms/product-info/wrapper.web.tsx +15 -0
  634. package/src/components/src/organisms/product-list/index.tsx +104 -0
  635. package/src/components/src/organisms/product-list/index.web.tsx +110 -0
  636. package/src/components/src/organisms/product-list/product-list.schema.ts +816 -0
  637. package/src/components/src/organisms/product-refresh/index.tsx +19 -0
  638. package/src/components/src/organisms/product-size-chart-v2/index.tsx +49 -0
  639. package/src/components/src/organisms/product-summary/index.tsx +1 -0
  640. package/src/components/src/organisms/product-summary/product-summary.tsx +253 -0
  641. package/src/components/src/organisms/product-summary/wrapper.tsx +36 -0
  642. package/src/components/src/organisms/profile/index.tsx +238 -0
  643. package/src/components/src/organisms/profile-2/index.tsx +254 -0
  644. package/src/components/src/organisms/profile-edit/constants.ts +74 -0
  645. package/src/components/src/organisms/profile-edit/index.tsx +802 -0
  646. package/src/components/src/organisms/profile-edit/styles.ts +371 -0
  647. package/src/components/src/organisms/profile-edit/types.ts +120 -0
  648. package/src/components/src/organisms/profile-edit/utils.ts +362 -0
  649. package/src/components/src/organisms/profile-menu/index.tsx +65 -0
  650. package/src/components/src/organisms/profile-signed-out/index.tsx +72 -0
  651. package/src/components/src/organisms/profile-signedout-v2/index.tsx +36 -0
  652. package/src/components/src/organisms/profile-signout/index.tsx +65 -0
  653. package/src/components/src/organisms/profile-user-greeting/index.tsx +113 -0
  654. package/src/components/src/organisms/promo-banner/PromoBanner.tsx +0 -0
  655. package/src/components/src/organisms/promo-banner/index.ts +0 -0
  656. package/src/components/src/organisms/promo-block/index.tsx +69 -0
  657. package/src/components/src/organisms/promo-carousel/index.tsx +101 -0
  658. package/src/components/src/organisms/promo-carousel/index.web.tsx +85 -0
  659. package/src/components/src/organisms/push-inbox/index.tsx +392 -0
  660. package/src/components/src/organisms/push-inbox/utils.ts +94 -0
  661. package/src/components/src/organisms/push-notification-prompt-button/index.tsx +45 -0
  662. package/src/components/src/organisms/push-notification-settings-block/index.tsx +119 -0
  663. package/src/components/src/organisms/quantity-selector-block/index.tsx +54 -0
  664. package/src/components/src/organisms/recent-order/addressSelector.tsx +88 -0
  665. package/src/components/src/organisms/recent-order/index.tsx +51 -0
  666. package/src/components/src/organisms/recent-order/paymentDetails.tsx +68 -0
  667. package/src/components/src/organisms/recently-viewed-products/index.tsx +92 -0
  668. package/src/components/src/organisms/recently-viewed-products/index.web.tsx +110 -0
  669. package/src/components/src/organisms/reels/index.tsx +467 -0
  670. package/src/components/src/organisms/reels/index.web.tsx +345 -0
  671. package/src/components/src/organisms/requires-auth/index.tsx +16 -0
  672. package/src/components/src/organisms/reset-password/index.tsx +140 -0
  673. package/src/components/src/organisms/review-bar/index.tsx +39 -0
  674. package/src/components/src/organisms/rewards-history/index.tsx +105 -0
  675. package/src/components/src/organisms/rewards-summary/index.tsx +146 -0
  676. package/src/components/src/organisms/rewards-summary-old/index.tsx +130 -0
  677. package/src/components/src/organisms/search-bar/index.tsx +34 -0
  678. package/src/components/src/organisms/search-product-list/index.tsx +31 -0
  679. package/src/components/src/organisms/search-recommendations/index.tsx +66 -0
  680. package/src/components/src/organisms/search-suggestions/index.tsx +194 -0
  681. package/src/components/src/organisms/search-suggestions-v2/collection-suggestions.tsx +61 -0
  682. package/src/components/src/organisms/search-suggestions-v2/index.tsx +91 -0
  683. package/src/components/src/organisms/search-suggestions-v2/page-suggestions.tsx +85 -0
  684. package/src/components/src/organisms/search-suggestions-v2/product-suggestions.tsx +174 -0
  685. package/src/components/src/organisms/search-suggestions-v2/search-term-suggestions.tsx +62 -0
  686. package/src/components/src/organisms/search-suggestions-v2/suggestion.tsx +100 -0
  687. package/src/components/src/organisms/shipping-address/index.tsx +59 -0
  688. package/src/components/src/organisms/shop-policy/index.tsx +93 -0
  689. package/src/components/src/organisms/shop-policy/index.web.tsx +12 -0
  690. package/src/components/src/organisms/shopify-customer-auth-webview/index.tsx +207 -0
  691. package/src/components/src/organisms/shopify-customer-payment-web-view/index.tsx +603 -0
  692. package/src/components/src/organisms/shopify-reviews/index.tsx +52 -0
  693. package/src/components/src/organisms/shopify-reviews/utils.ts +27 -0
  694. package/src/components/src/organisms/shopify-rich-text-block/index.tsx +60 -0
  695. package/src/components/src/organisms/shopify-store-credits/index.tsx +369 -0
  696. package/src/components/src/organisms/sign-in/index.tsx +242 -0
  697. package/src/components/src/organisms/sign-in-v2/index.tsx +282 -0
  698. package/src/components/src/organisms/sign-in-v3/index.tsx +259 -0
  699. package/src/components/src/organisms/sign-up/index.tsx +251 -0
  700. package/src/components/src/organisms/sign-up-v2/index.tsx +267 -0
  701. package/src/components/src/organisms/signin-modal/continue-as-guest.tsx +46 -0
  702. package/src/components/src/organisms/signin-modal/index.tsx +113 -0
  703. package/src/components/src/organisms/signup-modal/index.tsx +61 -0
  704. package/src/components/src/organisms/simpl-pay-block/index.tsx +84 -0
  705. package/src/components/src/organisms/single-level-navigation/index.tsx +91 -0
  706. package/src/components/src/organisms/snapmint-pay-block/index.tsx +173 -0
  707. package/src/components/src/organisms/spacer/index.tsx +17 -0
  708. package/src/components/src/organisms/subscription/index.tsx +52 -0
  709. package/src/components/src/organisms/subscription/subscription.tsx +226 -0
  710. package/src/components/src/organisms/subscription-selector-dropdown/extra-info.tsx +53 -0
  711. package/src/components/src/organisms/subscription-selector-dropdown/index.tsx +30 -0
  712. package/src/components/src/organisms/subscription-selector-dropdown/more-price-info.tsx +38 -0
  713. package/src/components/src/organisms/subscription-selector-dropdown/one-time-plan.tsx +85 -0
  714. package/src/components/src/organisms/subscription-selector-dropdown/purchase-plans.tsx +60 -0
  715. package/src/components/src/organisms/subscription-selector-dropdown/selling-plan-options.tsx +132 -0
  716. package/src/components/src/organisms/subscription-selector-dropdown/subscription-option-label.tsx +91 -0
  717. package/src/components/src/organisms/subscription-selector-dropdown/subscription.tsx +27 -0
  718. package/src/components/src/organisms/subscription-selector-dropdown/susbcription-plan.tsx +126 -0
  719. package/src/components/src/organisms/tabbed-product-collection/index.tsx +263 -0
  720. package/src/components/src/organisms/tabbed-product-collection/index.web.tsx +270 -0
  721. package/src/components/src/organisms/tag-redirect-product-images/index.tsx +203 -0
  722. package/src/components/src/organisms/tagged-page-size-chart/index.tsx +76 -0
  723. package/src/components/src/organisms/tagged-pdp-content/index.tsx +72 -0
  724. package/src/components/src/organisms/tagged-plp-content/index.tsx +67 -0
  725. package/src/components/src/organisms/tagged-rich-text/index.tsx +58 -0
  726. package/src/components/src/organisms/tagged-rich-text/index.web.tsx +25 -0
  727. package/src/components/src/organisms/tailored-variant-form/index.tsx +497 -0
  728. package/src/components/src/organisms/testimonials/Testimonials.tsx +45 -0
  729. package/src/components/src/organisms/testimonials/index.tsx +45 -0
  730. package/src/components/src/organisms/total-savings/index.tsx +50 -0
  731. package/src/components/src/organisms/trending-products/index.tsx +84 -0
  732. package/src/components/src/organisms/trending-searches/index.tsx +125 -0
  733. package/src/components/src/organisms/two-level-navigation/index.tsx +80 -0
  734. package/src/components/src/organisms/upsell-product-list/index.tsx +247 -0
  735. package/src/components/src/organisms/variant-carousel/index.tsx +121 -0
  736. package/src/components/src/organisms/variant-selector-modal-block/index.tsx +126 -0
  737. package/src/components/src/organisms/variant-selector-subscriptions/index.tsx +106 -0
  738. package/src/components/src/organisms/variantSelector/index.tsx +69 -0
  739. package/src/components/src/organisms/vertical-tabs-menu/defaults.ts +526 -0
  740. package/src/components/src/organisms/vertical-tabs-menu/index.tsx +61 -0
  741. package/src/components/src/organisms/video-banner/index.tsx +140 -0
  742. package/src/components/src/organisms/video-banner/index.web.tsx +123 -0
  743. package/src/components/src/organisms/video-banner-v2/index.tsx +188 -0
  744. package/src/components/src/organisms/video-carousel/index.tsx +404 -0
  745. package/src/components/src/organisms/video-carousel/index.web.tsx +357 -0
  746. package/src/components/src/organisms/video-carousel/video-carousel-item/index.tsx +277 -0
  747. package/src/components/src/organisms/video-carousel/video-carousel-item/product-list.tsx +257 -0
  748. package/src/components/src/organisms/video-carousel/video-carousel-item/product-list.web.tsx +197 -0
  749. package/src/components/src/organisms/video-list/index.tsx +103 -0
  750. package/src/components/src/organisms/view-coupons/discount-amount.tsx +48 -0
  751. package/src/components/src/organisms/view-coupons/index.tsx +137 -0
  752. package/src/components/src/organisms/view-coupons-v2/index.tsx +174 -0
  753. package/src/components/src/organisms/view-coupons-v2/savings-banner.tsx +100 -0
  754. package/src/components/src/organisms/web-view/index.tsx +281 -0
  755. package/src/components/src/organisms/web-view/index.web.tsx +61 -0
  756. package/src/components/src/organisms/wishlist/index.tsx +224 -0
  757. package/src/components/src/organisms/wishlist-v2/index.tsx +95 -0
  758. package/src/components/src/organisms/wishlisted-items/index.tsx +95 -0
  759. package/src/components/src/organisms/youtube-embed/index.tsx +41 -0
  760. package/src/components/src/registry.ts +2 -0
  761. package/src/components/src/style-utils.ts +441 -0
  762. package/src/components/src/utils.ts +252 -0
  763. package/src/components/test-setup.ts +1 -0
  764. package/src/container-registry/babel.config.js +3 -0
  765. package/src/container-registry/src/common.tsx +16 -0
  766. package/src/container-registry/src/index.ts +1 -0
  767. package/src/container-registry/src/register.tsx +27 -0
  768. package/src/container-registry/src/register.web.tsx +16 -0
  769. package/src/container-registry/test-setup.ts +1 -0
  770. package/src/containers/src/a1-tabbed-block-list/index.tsx +115 -0
  771. package/src/containers/src/accordion-container/index.tsx +72 -0
  772. package/src/containers/src/index.ts +0 -0
  773. package/src/containers/src/rules-container/index.tsx +88 -0
  774. package/src/containers/src/tabbed-block-list/index.tsx +81 -0
  775. package/src/containers/src/tabbed-screen-container/index.tsx +51 -0
  776. package/src/containers/test-setup.ts +1 -0
  777. package/src/cookie-manager/src/cookie.ts +16 -0
  778. package/src/cookie-manager/src/cookie.web.ts +5 -0
  779. package/src/cookie-manager/src/index.ts +1 -0
  780. package/src/cookie-manager/test-setup.ts +1 -0
  781. package/src/discount/src/gift.ts +182 -0
  782. package/src/discount/src/index.ts +1 -0
  783. package/src/discount/src/utils.ts +164 -0
  784. package/src/discount/test-setup.ts +1 -0
  785. package/src/enhanced-fetch/src/enhanced-fetch-tests.js +711 -0
  786. package/src/enhanced-fetch/src/index.ts +245 -0
  787. package/src/event-emitter/src/index.ts +38 -0
  788. package/src/firebase/src/index.ts +2 -0
  789. package/src/firebase/src/lib/analytics.ts +33 -0
  790. package/src/firebase/src/lib/analyticsV2.ts +61 -0
  791. package/src/icons/src/declarations.d.ts +6 -0
  792. package/src/icons/src/icon-registry.tsx +81 -0
  793. package/src/icons/src/icon-registry.web.tsx +81 -0
  794. package/src/icons/src/icon-set.tsx +455 -0
  795. package/src/icons/src/index.ts +4 -0
  796. package/src/icons/src/remote-icon.tsx +46 -0
  797. package/src/icons/src/remote-icon.web.tsx +25 -0
  798. package/src/icons/src/remote-image-icon.tsx +66 -0
  799. package/src/icons/src/remote-image-icon.web.tsx +31 -0
  800. package/src/icons/src/svgs/account.tsx +17 -0
  801. package/src/icons/src/svgs/add-to-cart.tsx +49 -0
  802. package/src/icons/src/svgs/address.tsx +26 -0
  803. package/src/icons/src/svgs/afterpay.tsx +110 -0
  804. package/src/icons/src/svgs/apple.tsx +19 -0
  805. package/src/icons/src/svgs/back.tsx +10 -0
  806. package/src/icons/src/svgs/badge.tsx +19 -0
  807. package/src/icons/src/svgs/bag.tsx +27 -0
  808. package/src/icons/src/svgs/cake.tsx +13 -0
  809. package/src/icons/src/svgs/calendar.tsx +20 -0
  810. package/src/icons/src/svgs/cancel.tsx +20 -0
  811. package/src/icons/src/svgs/cart-cancel.tsx +35 -0
  812. package/src/icons/src/svgs/cart.tsx +14 -0
  813. package/src/icons/src/svgs/categories.tsx +13 -0
  814. package/src/icons/src/svgs/checked.tsx +18 -0
  815. package/src/icons/src/svgs/checkedCircle.tsx +26 -0
  816. package/src/icons/src/svgs/chevron-down.tsx +26 -0
  817. package/src/icons/src/svgs/chevron-left.tsx +13 -0
  818. package/src/icons/src/svgs/chevron-right.tsx +19 -0
  819. package/src/icons/src/svgs/chevron-up.tsx +27 -0
  820. package/src/icons/src/svgs/chevron.tsx +35 -0
  821. package/src/icons/src/svgs/circled-arrow.tsx +29 -0
  822. package/src/icons/src/svgs/clear.tsx +35 -0
  823. package/src/icons/src/svgs/clipboard.tsx +23 -0
  824. package/src/icons/src/svgs/close.tsx +26 -0
  825. package/src/icons/src/svgs/collection.tsx +32 -0
  826. package/src/icons/src/svgs/copy.tsx +31 -0
  827. package/src/icons/src/svgs/coupon-icon.tsx +23 -0
  828. package/src/icons/src/svgs/coupon.tsx +35 -0
  829. package/src/icons/src/svgs/crate.tsx +13 -0
  830. package/src/icons/src/svgs/cross.tsx +21 -0
  831. package/src/icons/src/svgs/deals.tsx +26 -0
  832. package/src/icons/src/svgs/discount.tsx +42 -0
  833. package/src/icons/src/svgs/dollar.tsx +33 -0
  834. package/src/icons/src/svgs/error.tsx +35 -0
  835. package/src/icons/src/svgs/eye.tsx +33 -0
  836. package/src/icons/src/svgs/eyeOff.tsx +35 -0
  837. package/src/icons/src/svgs/facebook.tsx +31 -0
  838. package/src/icons/src/svgs/favorite.tsx +79 -0
  839. package/src/icons/src/svgs/filter.tsx +24 -0
  840. package/src/icons/src/svgs/fragrances.tsx +55 -0
  841. package/src/icons/src/svgs/gift.tsx +23 -0
  842. package/src/icons/src/svgs/gifts.tsx +38 -0
  843. package/src/icons/src/svgs/goal-discount-filled.tsx +21 -0
  844. package/src/icons/src/svgs/goal-discount.tsx +24 -0
  845. package/src/icons/src/svgs/goal-locked.tsx +21 -0
  846. package/src/icons/src/svgs/goal-unlocked.tsx +34 -0
  847. package/src/icons/src/svgs/google-colorful.tsx +38 -0
  848. package/src/icons/src/svgs/google.tsx +28 -0
  849. package/src/icons/src/svgs/grooming.tsx +22 -0
  850. package/src/icons/src/svgs/hamburger.tsx +30 -0
  851. package/src/icons/src/svgs/heart.tsx +30 -0
  852. package/src/icons/src/svgs/help.tsx +22 -0
  853. package/src/icons/src/svgs/history.tsx +26 -0
  854. package/src/icons/src/svgs/home.tsx +21 -0
  855. package/src/icons/src/svgs/homes.svg +4 -0
  856. package/src/icons/src/svgs/info.tsx +19 -0
  857. package/src/icons/src/svgs/inline-error-icon.tsx +13 -0
  858. package/src/icons/src/svgs/inline-success-icon-double-checkmarks.tsx +15 -0
  859. package/src/icons/src/svgs/instagram.tsx +17 -0
  860. package/src/icons/src/svgs/lock.tsx +15 -0
  861. package/src/icons/src/svgs/mail.tsx +30 -0
  862. package/src/icons/src/svgs/mins.tsx +21 -0
  863. package/src/icons/src/svgs/minus.tsx +19 -0
  864. package/src/icons/src/svgs/more.tsx +13 -0
  865. package/src/icons/src/svgs/notification-bell.tsx +44 -0
  866. package/src/icons/src/svgs/notifications.tsx +21 -0
  867. package/src/icons/src/svgs/offers.tsx +11 -0
  868. package/src/icons/src/svgs/order-history.tsx +19 -0
  869. package/src/icons/src/svgs/order.tsx +32 -0
  870. package/src/icons/src/svgs/package-check.tsx +30 -0
  871. package/src/icons/src/svgs/pause.tsx +17 -0
  872. package/src/icons/src/svgs/pencil.tsx +17 -0
  873. package/src/icons/src/svgs/percent-circle.tsx +30 -0
  874. package/src/icons/src/svgs/play.tsx +13 -0
  875. package/src/icons/src/svgs/plus.tsx +12 -0
  876. package/src/icons/src/svgs/privacy.tsx +15 -0
  877. package/src/icons/src/svgs/product.tsx +14 -0
  878. package/src/icons/src/svgs/profile-circle.tsx +16 -0
  879. package/src/icons/src/svgs/profile-permission.tsx +17 -0
  880. package/src/icons/src/svgs/profile-tab-icon.tsx +11 -0
  881. package/src/icons/src/svgs/profile.tsx +16 -0
  882. package/src/icons/src/svgs/reward.tsx +22 -0
  883. package/src/icons/src/svgs/rewards.tsx +15 -0
  884. package/src/icons/src/svgs/sad-emoji.tsx +30 -0
  885. package/src/icons/src/svgs/search.tsx +31 -0
  886. package/src/icons/src/svgs/share.tsx +28 -0
  887. package/src/icons/src/svgs/shipping.tsx +20 -0
  888. package/src/icons/src/svgs/signout.tsx +15 -0
  889. package/src/icons/src/svgs/signup.tsx +26 -0
  890. package/src/icons/src/svgs/snap-mint.tsx +49 -0
  891. package/src/icons/src/svgs/sort.tsx +12 -0
  892. package/src/icons/src/svgs/speakerOff.tsx +40 -0
  893. package/src/icons/src/svgs/speakerOn.tsx +20 -0
  894. package/src/icons/src/svgs/stars.tsx +36 -0
  895. package/src/icons/src/svgs/success.tsx +21 -0
  896. package/src/icons/src/svgs/tag.tsx +25 -0
  897. package/src/icons/src/svgs/thumbs-up-outlined.tsx +36 -0
  898. package/src/icons/src/svgs/thumbs-up.tsx +11 -0
  899. package/src/icons/src/svgs/tick.tsx +23 -0
  900. package/src/icons/src/svgs/trash.tsx +21 -0
  901. package/src/icons/src/svgs/trending.tsx +36 -0
  902. package/src/icons/src/svgs/truck.tsx +30 -0
  903. package/src/icons/src/svgs/truecaller.tsx +44 -0
  904. package/src/icons/src/svgs/types.ts +0 -0
  905. package/src/icons/src/svgs/unchecked.tsx +13 -0
  906. package/src/icons/src/svgs/verified.tsx +23 -0
  907. package/src/icons/src/svgs/video-play.tsx +12 -0
  908. package/src/icons/src/svgs/volume-off.tsx +18 -0
  909. package/src/icons/src/svgs/volume.tsx +18 -0
  910. package/src/icons/src/svgs/way.tsx +14 -0
  911. package/src/icons/src/svgs/youtube.tsx +26 -0
  912. package/src/icons/src/utils.ts +53 -0
  913. package/src/icons/test-setup.ts +1 -0
  914. package/src/integrations/appbrew/analytics/app-users.ts +107 -0
  915. package/src/integrations/appbrew/analytics/config.dev.ts +10 -0
  916. package/src/integrations/appbrew/analytics/config.ts +10 -0
  917. package/src/integrations/appbrew/analytics/tracker.ts +136 -0
  918. package/src/integrations/appbrew/analytics/trackerV2.ts +154 -0
  919. package/src/integrations/appbrew/analytics/utils.ts +9 -0
  920. package/src/integrations/appbrew/analytics/webhook-tracker.ts +203 -0
  921. package/src/integrations/appbrew/currency/index.ts +1 -0
  922. package/src/integrations/appbrew/currency/provider.ts +211 -0
  923. package/src/integrations/appbrew/estimated-delivery-date/blocks/estimated-delivery-date.tsx +229 -0
  924. package/src/integrations/appbrew/estimated-delivery-date/index.ts +2 -0
  925. package/src/integrations/appbrew/estimated-delivery-date/provider.ts +45 -0
  926. package/src/integrations/appbrew/native-wishlist/src/index.ts +1 -0
  927. package/src/integrations/appbrew/native-wishlist/src/provider.ts +88 -0
  928. package/src/integrations/appbrew/src/index.ts +7 -0
  929. package/src/integrations/appbrew/src/lib/integrations-appbrew.spec.ts +7 -0
  930. package/src/integrations/appbrew/src/lib/integrations-appbrew.ts +3 -0
  931. package/src/integrations/color-swatch/src/index.ts +7 -0
  932. package/src/integrations/firebase-push/src/index.ts +1 -0
  933. package/src/integrations/firebase-push/src/push.ts +279 -0
  934. package/src/integrations/firebase-push/src/push.web.ts +15 -0
  935. package/src/integrations/gift/src/gift.ts +137 -0
  936. package/src/integrations/gift/src/index.ts +1 -0
  937. package/src/integrations/truefit/src/blocks/index.ts +1 -0
  938. package/src/integrations/truefit/src/blocks/truefit-widget.tsx +136 -0
  939. package/src/integrations/truefit/src/components/TfApp.tsx +159 -0
  940. package/src/integrations/truefit/src/components/TfWidget.tsx +241 -0
  941. package/src/integrations/truefit/src/constants.ts +5 -0
  942. package/src/integrations/truefit/src/index.ts +13 -0
  943. package/src/integrations/truefit/src/managers/authManager.ts +140 -0
  944. package/src/integrations/truefit/src/managers/messageManager.ts +122 -0
  945. package/src/integrations/truefit/src/managers/tokenManager.ts +52 -0
  946. package/src/integrations/truefit/src/orderApi.ts +43 -0
  947. package/src/integrations/truefit/src/register-blocks.ts +5 -0
  948. package/src/integrations/truefit/src/util/useWidgetEvent.ts +29 -0
  949. package/src/integrations/truefit/src/util/widgetEvents.ts +17 -0
  950. package/src/local-storage/src/icon-storage.ts +26 -0
  951. package/src/local-storage/src/index.ts +2 -0
  952. package/src/local-storage/src/storage.ts +56 -0
  953. package/src/local-storage/src/storage.web.ts +75 -0
  954. package/src/module-provider/src/index.ts +1 -0
  955. package/src/module-provider/src/module-provider.tsx +27 -0
  956. package/src/module-provider/src/provider.ts +0 -0
  957. package/src/okendo/src/blocks/components-v2.tsx +342 -0
  958. package/src/okendo/src/blocks/components-v2.types.ts +134 -0
  959. package/src/okendo/src/blocks/components.tsx +569 -0
  960. package/src/okendo/src/blocks/index.tsx +13 -0
  961. package/src/okendo/src/blocks/okendo-star-ratings-v2.tsx +102 -0
  962. package/src/okendo/src/blocks/okendo-star-ratings.tsx +77 -0
  963. package/src/okendo/src/blocks/review-aggregate-v2.tsx +493 -0
  964. package/src/okendo/src/blocks/review-aggregate.tsx +175 -0
  965. package/src/okendo/src/blocks/reviews-v2.tsx +352 -0
  966. package/src/okendo/src/blocks/reviews.tsx +144 -0
  967. package/src/okendo/src/hooks.tsx +489 -0
  968. package/src/okendo/src/index.ts +35 -0
  969. package/src/okendo/src/provider.ts +457 -0
  970. package/src/okendo/src/types.ts +355 -0
  971. package/src/okendo/src/utils.ts +32 -0
  972. package/src/orders-v4/src/icons/chevron-right-order-v4.tsx +18 -0
  973. package/src/orders-v4/src/icons/order-status.tsx +17 -0
  974. package/src/orders-v4/src/icons/payment-method.tsx +18 -0
  975. package/src/orders-v4/src/icons/payment-status.tsx +17 -0
  976. package/src/orders-v4/src/index.ts +7 -0
  977. package/src/orders-v4/src/layout-elements/order-cancel.tsx +60 -0
  978. package/src/orders-v4/src/layout-elements/order-date.tsx +39 -0
  979. package/src/orders-v4/src/layout-elements/order-fulfillment-details.tsx +408 -0
  980. package/src/orders-v4/src/layout-elements/order-number.tsx +35 -0
  981. package/src/orders-v4/src/layout-elements/order-payment-details-v4.tsx +190 -0
  982. package/src/orders-v4/src/layout-elements/order-preorder-date.tsx +16 -0
  983. package/src/orders-v4/src/layout-elements/order-product-compare-at-price.tsx +32 -0
  984. package/src/orders-v4/src/layout-elements/order-product-fulfillment-status.tsx +105 -0
  985. package/src/orders-v4/src/layout-elements/order-product-image-overlay.tsx +55 -0
  986. package/src/orders-v4/src/layout-elements/order-product-image.tsx +29 -0
  987. package/src/orders-v4/src/layout-elements/order-product-link.tsx +24 -0
  988. package/src/orders-v4/src/layout-elements/order-product-price.tsx +37 -0
  989. package/src/orders-v4/src/layout-elements/order-product-quantity.tsx +27 -0
  990. package/src/orders-v4/src/layout-elements/order-product-title.tsx +22 -0
  991. package/src/orders-v4/src/layout-elements/order-product-variant.tsx +24 -0
  992. package/src/orders-v4/src/layout-elements/order-reorder.tsx +97 -0
  993. package/src/orders-v4/src/layout-elements/order-return-and-exchange-v2.tsx +90 -0
  994. package/src/orders-v4/src/layout-elements/order-return-and-exchange.tsx +93 -0
  995. package/src/orders-v4/src/layout-elements/order-status-icon.tsx +14 -0
  996. package/src/orders-v4/src/layout-elements/order-status.tsx +33 -0
  997. package/src/orders-v4/src/layout-elements/order-total.tsx +19 -0
  998. package/src/orders-v4/src/layout-elements/order-track-delivery.tsx +67 -0
  999. package/src/orders-v4/src/layout-elements/order-view-details.tsx +23 -0
  1000. package/src/orders-v4/src/order-custom-attributes-v4.tsx +210 -0
  1001. package/src/orders-v4/src/order-details-footer-v4.tsx +51 -0
  1002. package/src/orders-v4/src/order-details-fulfillment-list.tsx +32 -0
  1003. package/src/orders-v4/src/order-details-header-v4.tsx +69 -0
  1004. package/src/orders-v4/src/order-footer.ts +75 -0
  1005. package/src/orders-v4/src/order-header.ts +75 -0
  1006. package/src/orders-v4/src/order-products-list.ts +68 -0
  1007. package/src/orders-v4/src/orders-list-v4.tsx +131 -0
  1008. package/src/orders-v4/src/register-icons.ts +12 -0
  1009. package/src/orders-v4/src/register-orders-v4-blocks.ts +15 -0
  1010. package/src/orders-v4/src/registry.tsx +115 -0
  1011. package/src/orders-v4/src/types.ts +122 -0
  1012. package/src/orders-v4/src/utils.ts +75 -0
  1013. package/src/orders-v4/test-setup.ts +1 -0
  1014. package/src/orders-v5/src/cancel-order-reason.tsx +282 -0
  1015. package/src/orders-v5/src/icons/package-cancel.tsx +18 -0
  1016. package/src/orders-v5/src/icons/package-success.tsx +18 -0
  1017. package/src/orders-v5/src/icons/package.tsx +17 -0
  1018. package/src/orders-v5/src/icons/shipping-cancel.tsx +19 -0
  1019. package/src/orders-v5/src/icons/shipping-pending.tsx +19 -0
  1020. package/src/orders-v5/src/icons/shipping-success.tsx +18 -0
  1021. package/src/orders-v5/src/icons/shipping.tsx +32 -0
  1022. package/src/orders-v5/src/image.tsx +39 -0
  1023. package/src/orders-v5/src/index.ts +2 -0
  1024. package/src/orders-v5/src/order-details/fulfillment-list/fulfillment-item.tsx +222 -0
  1025. package/src/orders-v5/src/order-details/fulfillment-list/fulfillment-list.tsx +123 -0
  1026. package/src/orders-v5/src/order-details/fulfillment-list/index.tsx +1 -0
  1027. package/src/orders-v5/src/order-details/fulfillment-list/line-item.tsx +213 -0
  1028. package/src/orders-v5/src/order-details/fulfillment-list/star-ratings.tsx +79 -0
  1029. package/src/orders-v5/src/order-details/fulfillment-list/status-indicator.tsx +208 -0
  1030. package/src/orders-v5/src/order-details/fulfillment-list/status.tsx +113 -0
  1031. package/src/orders-v5/src/order-details/header.tsx +280 -0
  1032. package/src/orders-v5/src/order-details/index.tsx +9 -0
  1033. package/src/orders-v5/src/order-details/order-cancel.tsx +323 -0
  1034. package/src/orders-v5/src/order-details/order-custom-attributes.tsx +237 -0
  1035. package/src/orders-v5/src/order-details/order-return-and-exchange.tsx +196 -0
  1036. package/src/orders-v5/src/order-details/order-return-info-text.tsx +114 -0
  1037. package/src/orders-v5/src/order-details/payment-summary.tsx +295 -0
  1038. package/src/orders-v5/src/order-details/reorder.tsx +142 -0
  1039. package/src/orders-v5/src/order-details/shipping-address.tsx +93 -0
  1040. package/src/orders-v5/src/orders-list/index.ts +1 -0
  1041. package/src/orders-v5/src/orders-list/order-item/fulfillment-item.tsx +138 -0
  1042. package/src/orders-v5/src/orders-list/order-item/heading.tsx +160 -0
  1043. package/src/orders-v5/src/orders-list/order-item/item.tsx +168 -0
  1044. package/src/orders-v5/src/orders-list/orders-list.tsx +159 -0
  1045. package/src/orders-v5/src/register-orders-v5-blocks.ts +29 -0
  1046. package/src/orders-v5/src/register-orders-v5-icons.ts +17 -0
  1047. package/src/orders-v5/src/utils.ts +539 -0
  1048. package/src/pdp-components/src/blocks/common/empty-metafield.tsx +66 -0
  1049. package/src/pdp-components/src/blocks/common/placeholder-block.tsx +134 -0
  1050. package/src/pdp-components/src/blocks/index.ts +2 -0
  1051. package/src/pdp-components/src/blocks/pdp-metafield-image/index.tsx +138 -0
  1052. package/src/pdp-components/src/blocks/pdp-metafield-rich-text/index.tsx +190 -0
  1053. package/src/pdp-components/src/index.ts +7 -0
  1054. package/src/plp-components/src/blocks/plp-banner/index.tsx +213 -0
  1055. package/src/plp-components/src/blocks/plp-description/index.tsx +86 -0
  1056. package/src/plp-components/src/blocks/plp-html-text.tsx +172 -0
  1057. package/src/plp-components/src/blocks/plp-image-carousel.tsx +203 -0
  1058. package/src/plp-components/src/blocks/plp-shopify-rich-text/index.tsx +169 -0
  1059. package/src/plp-components/src/blocks/plp-sub-category-navigation/index.tsx +336 -0
  1060. package/src/plp-components/src/blocks/plp-text-sub-category/index.tsx +297 -0
  1061. package/src/plp-components/src/blocks/plp-video/index.tsx +140 -0
  1062. package/src/plp-components/src/blocks/plp-youtube-video.tsx +113 -0
  1063. package/src/plp-components/src/common/empty-metafield.tsx +66 -0
  1064. package/src/plp-components/src/common/placeholder-block.tsx +134 -0
  1065. package/src/plp-components/src/index.ts +21 -0
  1066. package/src/plp-components/test-setup.ts +1 -0
  1067. package/src/post-purchase/hooks.ts +24 -0
  1068. package/src/post-purchase/src/basic-order-item.tsx +143 -0
  1069. package/src/post-purchase/src/cancel-order-reason.tsx +160 -0
  1070. package/src/post-purchase/src/cancel-order.tsx +75 -0
  1071. package/src/post-purchase/src/date.tsx +33 -0
  1072. package/src/post-purchase/src/fulfillment-list.tsx +477 -0
  1073. package/src/post-purchase/src/hooks.ts +1 -0
  1074. package/src/post-purchase/src/index.ts +13 -0
  1075. package/src/post-purchase/src/order-details-header.tsx +64 -0
  1076. package/src/post-purchase/src/order-item.tsx +217 -0
  1077. package/src/post-purchase/src/order-list.tsx +62 -0
  1078. package/src/post-purchase/src/payment-details.tsx +116 -0
  1079. package/src/post-purchase/src/register.ts +17 -0
  1080. package/src/post-purchase/src/shipping-address.tsx +68 -0
  1081. package/src/post-purchase/src/style.ts +30 -0
  1082. package/src/post-purchase/src/types.ts +66 -0
  1083. package/src/post-purchase/src/utils.ts +95 -0
  1084. package/src/post-purchase/test-setup.ts +1 -0
  1085. package/src/react-native-element-dropdown/src/assets/close.png +0 -0
  1086. package/src/react-native-element-dropdown/src/assets/down.png +0 -0
  1087. package/src/react-native-element-dropdown/src/components/Dropdown/index.tsx +686 -0
  1088. package/src/react-native-element-dropdown/src/components/Dropdown/model.ts +73 -0
  1089. package/src/react-native-element-dropdown/src/components/Dropdown/styles.ts +67 -0
  1090. package/src/react-native-element-dropdown/src/components/MultiSelect/index.tsx +812 -0
  1091. package/src/react-native-element-dropdown/src/components/MultiSelect/model.ts +76 -0
  1092. package/src/react-native-element-dropdown/src/components/MultiSelect/styles.ts +103 -0
  1093. package/src/react-native-element-dropdown/src/components/SelectCountry/index.tsx +77 -0
  1094. package/src/react-native-element-dropdown/src/components/SelectCountry/model.ts +7 -0
  1095. package/src/react-native-element-dropdown/src/components/SelectCountry/styles.ts +28 -0
  1096. package/src/react-native-element-dropdown/src/components/TextInput/index.tsx +104 -0
  1097. package/src/react-native-element-dropdown/src/components/TextInput/model.ts +20 -0
  1098. package/src/react-native-element-dropdown/src/components/TextInput/styles.ts +31 -0
  1099. package/src/react-native-element-dropdown/src/index.ts +15 -0
  1100. package/src/react-native-element-dropdown/src/toolkits/index.ts +25 -0
  1101. package/src/react-native-element-dropdown/src/toolkits/model.ts +5 -0
  1102. package/src/react-native-element-dropdown/src/useDeviceOrientation.ts +37 -0
  1103. package/src/react-utils/src/hooks.ts +176 -0
  1104. package/src/react-utils/src/index.ts +1 -0
  1105. package/src/rn-rulepilot/src/index.ts +4 -0
  1106. package/src/rn-rulepilot/src/services/builder.ts +92 -0
  1107. package/src/rn-rulepilot/src/services/evaluator.ts +176 -0
  1108. package/src/rn-rulepilot/src/services/logger.ts +6 -0
  1109. package/src/rn-rulepilot/src/services/mutator.ts +203 -0
  1110. package/src/rn-rulepilot/src/services/object-discovery.ts +52 -0
  1111. package/src/rn-rulepilot/src/services/rule-pilot.ts +172 -0
  1112. package/src/rn-rulepilot/src/services/validator.ts +206 -0
  1113. package/src/rn-rulepilot/src/types/error.ts +14 -0
  1114. package/src/rn-rulepilot/src/types/rule.ts +35 -0
  1115. package/src/rn-rulepilot/test-setup.ts +1 -0
  1116. package/src/shopify/src/cache.ts +134 -0
  1117. package/src/shopify/src/cart-utils.ts +295 -0
  1118. package/src/shopify/src/checkout-utils.ts +124 -0
  1119. package/src/shopify/src/discountv2-transformer.ts +322 -0
  1120. package/src/shopify/src/filter.ts +287 -0
  1121. package/src/shopify/src/index.ts +16 -0
  1122. package/src/shopify/src/lineItemsv2-transformer.ts +225 -0
  1123. package/src/shopify/src/orders.ts +521 -0
  1124. package/src/shopify/src/queries/cart.ts +320 -0
  1125. package/src/shopify/src/queries/catlog-fields.ts +187 -0
  1126. package/src/shopify/src/queries/index.ts +1 -0
  1127. package/src/shopify/src/queries/orders.ts +368 -0
  1128. package/src/shopify/src/queries/query-generators.ts +737 -0
  1129. package/src/shopify/src/queries.ts +474 -0
  1130. package/src/shopify/src/shopify-auth.ts +410 -0
  1131. package/src/shopify/src/shopify-cart.ts +1298 -0
  1132. package/src/shopify/src/shopify-catlog-generic.ts +1168 -0
  1133. package/src/shopify/src/shopify-checkout.ts +385 -0
  1134. package/src/shopify/src/shopify-currency.ts +185 -0
  1135. package/src/shopify/src/shopify-customer-cart.ts +1246 -0
  1136. package/src/shopify/src/shopify-search-v2.ts +1234 -0
  1137. package/src/shopify/src/shopify-search.ts +184 -0
  1138. package/src/shopify/src/transformers.ts +715 -0
  1139. package/src/shopify/src/utils.ts +300 -0
  1140. package/src/shopify-types/src/generated-types/checkout/graphql-operations.ts +8767 -0
  1141. package/src/shopify-types/src/generated-types/customer-accounts/operations.ts +5969 -0
  1142. package/src/shopify-types/src/generated-types/graphql-operations.ts +9559 -0
  1143. package/src/shopify-types/src/index.ts +59 -0
  1144. package/src/shopify-types/src/schema/customerAccountsSchema.json +28093 -0
  1145. package/src/shopify-types/src/types.ts +59 -0
  1146. package/src/shopify-types/test-setup.ts +1 -0
  1147. package/src/state/src/index.ts +22 -0
  1148. package/src/state/src/lib/address.ts +248 -0
  1149. package/src/state/src/lib/analytics/actions/app.ts +30 -0
  1150. package/src/state/src/lib/analytics/actions/cart-wishlist.ts +192 -0
  1151. package/src/state/src/lib/analytics/actions/device.ts +28 -0
  1152. package/src/state/src/lib/analytics/actions/geo.ts +58 -0
  1153. package/src/state/src/lib/analytics/actions/index.ts +9 -0
  1154. package/src/state/src/lib/analytics/actions/order.ts +20 -0
  1155. package/src/state/src/lib/analytics/actions/product-collection.ts +119 -0
  1156. package/src/state/src/lib/analytics/actions/session.ts +74 -0
  1157. package/src/state/src/lib/analytics/actions/user.ts +55 -0
  1158. package/src/state/src/lib/analytics/actions/utm-params.ts +68 -0
  1159. package/src/state/src/lib/analytics/index.ts +147 -0
  1160. package/src/state/src/lib/analytics/utils.ts +173 -0
  1161. package/src/state/src/lib/autofill-client.ts +42 -0
  1162. package/src/state/src/lib/bundle.ts +228 -0
  1163. package/src/state/src/lib/bundleV2.ts +110 -0
  1164. package/src/state/src/lib/cart.ts +1779 -0
  1165. package/src/state/src/lib/checkout.ts +26 -0
  1166. package/src/state/src/lib/collection-metafields.ts +118 -0
  1167. package/src/state/src/lib/collections.ts +636 -0
  1168. package/src/state/src/lib/config.ts +437 -0
  1169. package/src/state/src/lib/constants.ts +30 -0
  1170. package/src/state/src/lib/device.ts +90 -0
  1171. package/src/state/src/lib/discounts.ts +435 -0
  1172. package/src/state/src/lib/estimated-delivery-date.ts +73 -0
  1173. package/src/state/src/lib/filter.ts +343 -0
  1174. package/src/state/src/lib/gift-wrap.ts +184 -0
  1175. package/src/state/src/lib/google-signin.ts +3 -0
  1176. package/src/state/src/lib/google-signin.web.ts +1 -0
  1177. package/src/state/src/lib/hooks/block.ts +136 -0
  1178. package/src/state/src/lib/hooks/cart.ts +233 -0
  1179. package/src/state/src/lib/hooks/common.ts +34 -0
  1180. package/src/state/src/lib/hooks/constants.ts +4 -0
  1181. package/src/state/src/lib/hooks/deeplink.ts +190 -0
  1182. package/src/state/src/lib/hooks/deeplink.web.ts +4 -0
  1183. package/src/state/src/lib/hooks/estimated-delivery-date.ts +5 -0
  1184. package/src/state/src/lib/hooks/filter.ts +37 -0
  1185. package/src/state/src/lib/hooks/hooks.ts +843 -0
  1186. package/src/state/src/lib/hooks/index.ts +29 -0
  1187. package/src/state/src/lib/hooks/localization.ts +213 -0
  1188. package/src/state/src/lib/hooks/metafield.ts +301 -0
  1189. package/src/state/src/lib/hooks/modal.ts +68 -0
  1190. package/src/state/src/lib/hooks/module.ts +31 -0
  1191. package/src/state/src/lib/hooks/order.ts +23 -0
  1192. package/src/state/src/lib/hooks/product.ts +202 -0
  1193. package/src/state/src/lib/hooks/quantity-restriction.ts +51 -0
  1194. package/src/state/src/lib/hooks/reviews.ts +27 -0
  1195. package/src/state/src/lib/hooks/rewards.ts +69 -0
  1196. package/src/state/src/lib/hooks/route.ts +90 -0
  1197. package/src/state/src/lib/hooks/screen.ts +83 -0
  1198. package/src/state/src/lib/hooks/search.ts +209 -0
  1199. package/src/state/src/lib/hooks/settings.ts +20 -0
  1200. package/src/state/src/lib/hooks/shipping-address.ts +5 -0
  1201. package/src/state/src/lib/hooks/shop.ts +5 -0
  1202. package/src/state/src/lib/hooks/shopify-query.ts +40 -0
  1203. package/src/state/src/lib/hooks/sizing.ts +13 -0
  1204. package/src/state/src/lib/hooks/title.ts +61 -0
  1205. package/src/state/src/lib/hooks/variant-selector.ts +493 -0
  1206. package/src/state/src/lib/hooks/video.ts +81 -0
  1207. package/src/state/src/lib/http-client/index.ts +132 -0
  1208. package/src/state/src/lib/integrations/analytics.ts +14 -0
  1209. package/src/state/src/lib/integrations/gift.ts +102 -0
  1210. package/src/state/src/lib/integrations/review.ts +212 -0
  1211. package/src/state/src/lib/kiwi-sizing.ts +62 -0
  1212. package/src/state/src/lib/localization.ts +524 -0
  1213. package/src/state/src/lib/localization.web.ts +154 -0
  1214. package/src/state/src/lib/metafield.ts +305 -0
  1215. package/src/state/src/lib/modal.ts +177 -0
  1216. package/src/state/src/lib/modules.ts +149 -0
  1217. package/src/state/src/lib/offers.ts +0 -0
  1218. package/src/state/src/lib/onboarding.ts +67 -0
  1219. package/src/state/src/lib/order.ts +229 -0
  1220. package/src/state/src/lib/orders.ts +199 -0
  1221. package/src/state/src/lib/products.ts +1072 -0
  1222. package/src/state/src/lib/promotions.ts +73 -0
  1223. package/src/state/src/lib/reward-program.ts +86 -0
  1224. package/src/state/src/lib/rewards.ts +106 -0
  1225. package/src/state/src/lib/route.ts +586 -0
  1226. package/src/state/src/lib/route.web.ts +52 -0
  1227. package/src/state/src/lib/screen.ts +106 -0
  1228. package/src/state/src/lib/search.ts +576 -0
  1229. package/src/state/src/lib/shop.ts +74 -0
  1230. package/src/state/src/lib/sizing-chart.ts +88 -0
  1231. package/src/state/src/lib/splash-platform.ts +59 -0
  1232. package/src/state/src/lib/splash-platform.web.ts +62 -0
  1233. package/src/state/src/lib/splash.ts +497 -0
  1234. package/src/state/src/lib/store.ts +138 -0
  1235. package/src/state/src/lib/subscriptions.ts +589 -0
  1236. package/src/state/src/lib/template.ts +42 -0
  1237. package/src/state/src/lib/types.ts +11 -0
  1238. package/src/state/src/lib/user-notifications.ts +153 -0
  1239. package/src/state/src/lib/user.ts +1721 -0
  1240. package/src/state/src/lib/utils.ts +586 -0
  1241. package/src/state/src/lib/wishlist.ts +290 -0
  1242. package/src/types/src/app-discounts.ts +118 -0
  1243. package/src/types/src/app-themes.ts +7 -0
  1244. package/src/types/src/blocks-definition/account.def.ts +535 -0
  1245. package/src/types/src/blocks-definition/announcement-carousel.def.ts +201 -0
  1246. package/src/types/src/blocks-definition/announcement-strip.def.ts +162 -0
  1247. package/src/types/src/blocks-definition/announcement-ticker.def.ts +290 -0
  1248. package/src/types/src/blocks-definition/app-bar.def.ts +323 -0
  1249. package/src/types/src/blocks-definition/apply-coupon.def.ts +363 -0
  1250. package/src/types/src/blocks-definition/cart-list.def.ts +445 -0
  1251. package/src/types/src/blocks-definition/change-password.def.ts +229 -0
  1252. package/src/types/src/blocks-definition/chips-navigation.def.ts +405 -0
  1253. package/src/types/src/blocks-definition/collection-list.def.ts +415 -0
  1254. package/src/types/src/blocks-definition/common.def.ts +793 -0
  1255. package/src/types/src/blocks-definition/content.def.ts +2051 -0
  1256. package/src/types/src/blocks-definition/countdown-banner.def.ts +537 -0
  1257. package/src/types/src/blocks-definition/empty-block.def.ts +212 -0
  1258. package/src/types/src/blocks-definition/firework.def.ts +128 -0
  1259. package/src/types/src/blocks-definition/image-banner.def.ts +634 -0
  1260. package/src/types/src/blocks-definition/image-collage.def.ts +505 -0
  1261. package/src/types/src/blocks-definition/image-compare.def.ts +412 -0
  1262. package/src/types/src/blocks-definition/image-list.def.ts +654 -0
  1263. package/src/types/src/blocks-definition/image-marquee.def.ts +526 -0
  1264. package/src/types/src/blocks-definition/index.ts +50 -0
  1265. package/src/types/src/blocks-definition/metafield-image-compare.def.ts +394 -0
  1266. package/src/types/src/blocks-definition/micro-contexts/product-card-v2.ts +2481 -0
  1267. package/src/types/src/blocks-definition/past-searches.def.ts +352 -0
  1268. package/src/types/src/blocks-definition/payment-details.def.ts +303 -0
  1269. package/src/types/src/blocks-definition/previously-ordered-products.def.ts +421 -0
  1270. package/src/types/src/blocks-definition/product-card.def.ts +416 -0
  1271. package/src/types/src/blocks-definition/product-grid.def.ts +657 -0
  1272. package/src/types/src/blocks-definition/product-hotspot.def.ts +401 -0
  1273. package/src/types/src/blocks-definition/product-list.def.ts +944 -0
  1274. package/src/types/src/blocks-definition/promo-carousel.def.ts +645 -0
  1275. package/src/types/src/blocks-definition/recent-orders.def.ts +596 -0
  1276. package/src/types/src/blocks-definition/recently-viewed-products.def.ts +412 -0
  1277. package/src/types/src/blocks-definition/rewards-summary.def.ts +627 -0
  1278. package/src/types/src/blocks-definition/rich-text-block.def.ts +303 -0
  1279. package/src/types/src/blocks-definition/search-suggestions.def.ts +228 -0
  1280. package/src/types/src/blocks-definition/sign-in.def.ts +555 -0
  1281. package/src/types/src/blocks-definition/single-level-navigation.def.ts +303 -0
  1282. package/src/types/src/blocks-definition/social-sign-in.def.ts +164 -0
  1283. package/src/types/src/blocks-definition/sort-and-filter.def.ts +881 -0
  1284. package/src/types/src/blocks-definition/tabbed-product-collection.def.ts +665 -0
  1285. package/src/types/src/blocks-definition/text-list.def.ts +280 -0
  1286. package/src/types/src/blocks-definition/two-level-navigation.def.ts +527 -0
  1287. package/src/types/src/blocks-definition/types.ts +33 -0
  1288. package/src/types/src/blocks-definition/video-banner.def.ts +483 -0
  1289. package/src/types/src/blocks-definition/video-carousel.def.ts +611 -0
  1290. package/src/types/src/blocks-definition/video-list.def.ts +280 -0
  1291. package/src/types/src/blocks-definition/view-coupons.def.ts +382 -0
  1292. package/src/types/src/blocks-definition/wishlisted-items.def.ts +530 -0
  1293. package/src/types/src/blocks-definition/youtube-embed.def.ts +154 -0
  1294. package/src/types/src/blocks.ts +3981 -0
  1295. package/src/types/src/category-navigation.ts +16 -0
  1296. package/src/types/src/common.ts +187 -0
  1297. package/src/types/src/config.ts +705 -0
  1298. package/src/types/src/countries.ts +2970 -0
  1299. package/src/types/src/currencies.ts +1217 -0
  1300. package/src/types/src/data.ts +257 -0
  1301. package/src/types/src/feature-flags.ts +59 -0
  1302. package/src/types/src/filter.ts +102 -0
  1303. package/src/types/src/index.ts +35 -0
  1304. package/src/types/src/integrations/analytics.ts +252 -0
  1305. package/src/types/src/integrations/attentive.ts +88 -0
  1306. package/src/types/src/integrations/automated-notifications.ts +87 -0
  1307. package/src/types/src/integrations/cart.ts +81 -0
  1308. package/src/types/src/integrations/edd.ts +35 -0
  1309. package/src/types/src/integrations/gift.ts +130 -0
  1310. package/src/types/src/integrations/index.ts +14 -0
  1311. package/src/types/src/integrations/loyalty-lion.ts +8 -0
  1312. package/src/types/src/integrations/otp-signin.ts +112 -0
  1313. package/src/types/src/integrations/review.ts +50 -0
  1314. package/src/types/src/integrations/rewards-v2.ts +5 -0
  1315. package/src/types/src/integrations/social-signin.ts +12 -0
  1316. package/src/types/src/integrations/subscriptions.ts +175 -0
  1317. package/src/types/src/integrations/wishlist.ts +86 -0
  1318. package/src/types/src/integrations/yotpo-rewards.ts +37 -0
  1319. package/src/types/src/internationalization.ts +170 -0
  1320. package/src/types/src/metafield.ts +5 -0
  1321. package/src/types/src/modules.ts +566 -0
  1322. package/src/types/src/navigation.ts +22 -0
  1323. package/src/types/src/one-link.ts +20 -0
  1324. package/src/types/src/order.ts +102 -0
  1325. package/src/types/src/permissions.ts +9 -0
  1326. package/src/types/src/product-update.ts +32 -0
  1327. package/src/types/src/product.ts +268 -0
  1328. package/src/types/src/push-notifications.ts +11 -0
  1329. package/src/types/src/quantity-selector.ts +5 -0
  1330. package/src/types/src/screen.ts +5 -0
  1331. package/src/types/src/search.ts +137 -0
  1332. package/src/types/src/searchtap.ts +97 -0
  1333. package/src/types/src/settings.ts +54 -0
  1334. package/src/types/src/shop.ts +13 -0
  1335. package/src/types/src/storage.ts +31 -0
  1336. package/src/types/src/style.ts +221 -0
  1337. package/src/types/src/theme.ts +54 -0
  1338. package/src/types/src/utils.ts +153 -0
  1339. package/src/types/src/variant-selector.ts +218 -0
  1340. package/src/ui-builder/src/components/atoms/accordian.tsx +110 -0
  1341. package/src/ui-builder/src/components/atoms/block-section/block-section.tsx +128 -0
  1342. package/src/ui-builder/src/components/atoms/block-section/hook.ts +251 -0
  1343. package/src/ui-builder/src/components/atoms/block-section/index.ts +3 -0
  1344. package/src/ui-builder/src/components/atoms/block-section/nav-button.tsx +101 -0
  1345. package/src/ui-builder/src/components/atoms/block-section/section.tsx +76 -0
  1346. package/src/ui-builder/src/components/atoms/block-section/types.ts +22 -0
  1347. package/src/ui-builder/src/components/atoms/box.tsx +77 -0
  1348. package/src/ui-builder/src/components/atoms/box.web.tsx +68 -0
  1349. package/src/ui-builder/src/components/atoms/button.tsx +260 -0
  1350. package/src/ui-builder/src/components/atoms/flex.tsx +44 -0
  1351. package/src/ui-builder/src/components/atoms/header/header-image.tsx +142 -0
  1352. package/src/ui-builder/src/components/atoms/header/header-link-button.tsx +57 -0
  1353. package/src/ui-builder/src/components/atoms/header/header-text.tsx +49 -0
  1354. package/src/ui-builder/src/components/atoms/header/header.tsx +179 -0
  1355. package/src/ui-builder/src/components/atoms/header/index.ts +2 -0
  1356. package/src/ui-builder/src/components/atoms/header/types.ts +63 -0
  1357. package/src/ui-builder/src/components/atoms/header/utils.ts +28 -0
  1358. package/src/ui-builder/src/components/atoms/helper/button-utils.ts +13 -0
  1359. package/src/ui-builder/src/components/atoms/helper/button-utils.web.ts +8 -0
  1360. package/src/ui-builder/src/components/atoms/html-rich-text.tsx +47 -0
  1361. package/src/ui-builder/src/components/atoms/icon.tsx +12 -0
  1362. package/src/ui-builder/src/components/atoms/image/image1.tsx +359 -0
  1363. package/src/ui-builder/src/components/atoms/image/image1.web.tsx +276 -0
  1364. package/src/ui-builder/src/components/atoms/image/types.ts +12 -0
  1365. package/src/ui-builder/src/components/atoms/image.tsx +33 -0
  1366. package/src/ui-builder/src/components/atoms/index.tsx +17 -0
  1367. package/src/ui-builder/src/components/atoms/link.tsx +34 -0
  1368. package/src/ui-builder/src/components/atoms/list.tsx +24 -0
  1369. package/src/ui-builder/src/components/atoms/native-video.tsx +102 -0
  1370. package/src/ui-builder/src/components/atoms/native-video.web.tsx +44 -0
  1371. package/src/ui-builder/src/components/atoms/rich-text.tsx +147 -0
  1372. package/src/ui-builder/src/components/atoms/spacer.tsx +11 -0
  1373. package/src/ui-builder/src/components/atoms/text.tsx +60 -0
  1374. package/src/ui-builder/src/components/atoms/vertical-list.tsx +177 -0
  1375. package/src/ui-builder/src/components/atoms/youtube-video.tsx +99 -0
  1376. package/src/ui-builder/src/components/blocks/content.tsx +32 -0
  1377. package/src/ui-builder/src/components/index.ts +3 -0
  1378. package/src/ui-builder/src/components/layout-elements/accordion.tsx +27 -0
  1379. package/src/ui-builder/src/components/layout-elements/app-logo.tsx +39 -0
  1380. package/src/ui-builder/src/components/layout-elements/html-rich-text.tsx +16 -0
  1381. package/src/ui-builder/src/components/layout-elements/image.tsx +118 -0
  1382. package/src/ui-builder/src/components/layout-elements/image.web.tsx +62 -0
  1383. package/src/ui-builder/src/components/layout-elements/index.ts +12 -0
  1384. package/src/ui-builder/src/components/layout-elements/link-button.tsx +37 -0
  1385. package/src/ui-builder/src/components/layout-elements/link.tsx +35 -0
  1386. package/src/ui-builder/src/components/layout-elements/list.tsx +16 -0
  1387. package/src/ui-builder/src/components/layout-elements/rich-text.tsx +29 -0
  1388. package/src/ui-builder/src/components/layout-elements/spacer.tsx +10 -0
  1389. package/src/ui-builder/src/components/layout-elements/text.tsx +29 -0
  1390. package/src/ui-builder/src/components/layout-elements/video.tsx +59 -0
  1391. package/src/ui-builder/src/components/molecules/accordion.tsx +120 -0
  1392. package/src/ui-builder/src/components/molecules/rich-text.tsx +132 -0
  1393. package/src/ui-builder/src/components/molecules/rich-text.web.tsx +82 -0
  1394. package/src/ui-builder/src/components/registery.tsx +404 -0
  1395. package/src/ui-builder/src/helper-elements/cta.tsx +79 -0
  1396. package/src/ui-builder/src/helper-elements/faq.tsx +143 -0
  1397. package/src/ui-builder/src/helper-elements/html-rich-text.tsx +59 -0
  1398. package/src/ui-builder/src/helper-elements/index.tsx +76 -0
  1399. package/src/ui-builder/src/helper-elements/link-button.tsx +74 -0
  1400. package/src/ui-builder/src/helper-elements/media-list-accordian.tsx +230 -0
  1401. package/src/ui-builder/src/helper-elements/media-list.tsx +154 -0
  1402. package/src/ui-builder/src/helper-elements/media.tsx +78 -0
  1403. package/src/ui-builder/src/helper-elements/rich-text-accordion.tsx +148 -0
  1404. package/src/ui-builder/src/helper-elements/rich-text-list.tsx +134 -0
  1405. package/src/ui-builder/src/helper-elements/rich-text.tsx +61 -0
  1406. package/src/ui-builder/src/helper-elements/testimonials.tsx +149 -0
  1407. package/src/ui-builder/src/helper-elements/text.tsx +52 -0
  1408. package/src/ui-builder/src/helper-elements/video-list.tsx +137 -0
  1409. package/src/ui-builder/src/helper-elements/video.tsx +44 -0
  1410. package/src/ui-builder/src/helper-elements/youtube-video.tsx +69 -0
  1411. package/src/ui-builder/src/index.ts +42 -0
  1412. package/src/ui-builder/src/style-utils.ts +127 -0
  1413. package/src/ui-builder/src/types.ts +67 -0
  1414. package/src/ui-builder/src/utils.ts +89 -0
  1415. package/src/utils/src/cache.utils.ts +64 -0
  1416. package/src/utils/src/common.utils.ts +47 -0
  1417. package/src/utils/src/http-client.ts +258 -0
  1418. package/src/utils/src/index.ts +5 -0
  1419. package/src/utils/src/slack-client.ts +8 -0
  1420. package/src/utils/src/telemetry-client.ts +69 -0
  1421. package/src/utils.ts +30 -0
  1422. package/tsconfig.paths.json +130 -0
@@ -0,0 +1,21 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, Rect, SvgProps } from 'react-native-svg'
3
+
4
+ const FILLED_PATH =
5
+ 'M10 20c-.38 0-.743-.071-1.088-.213a2.76 2.76 0 01-.916-.617c-.53-.522-.983-.864-1.361-1.025-.379-.162-.947-.242-1.704-.242a2.733 2.733 0 01-2.007-.827 2.733 2.733 0 01-.827-2.007c0-.75-.08-1.317-.243-1.7-.161-.382-.503-.837-1.024-1.365A2.795 2.795 0 010 10.002c0-.375.07-.736.212-1.081.14-.345.347-.654.618-.925.521-.524.863-.976 1.024-1.356.162-.38.243-.95.243-1.709 0-.787.276-1.456.827-2.007a2.733 2.733 0 012.007-.827c.75 0 1.317-.079 1.698-.237.382-.158.838-.501 1.367-1.03.271-.265.578-.469.92-.613A2.84 2.84 0 0111.08.212c.345.14.654.347.925.618.524.521.976.863 1.356 1.024.38.162.95.243 1.709.243.787 0 1.456.276 2.007.827.551.55.827 1.22.827 2.007 0 .75.08 1.317.242 1.7.162.382.504.837 1.025 1.365A2.794 2.794 0 0120 9.998c0 .375-.07.736-.212 1.08a2.788 2.788 0 01-.618.926c-.529.53-.872.983-1.03 1.361-.158.379-.237.947-.237 1.704 0 .787-.276 1.456-.827 2.007a2.733 2.733 0 01-2.007.827c-.75 0-1.317.079-1.699.237-.381.158-.837.501-1.366 1.03a2.95 2.95 0 01-.92.613A2.759 2.759 0 0110 20zm2.563-6.144c.363 0 .67-.124.919-.374.25-.25.374-.556.374-.92 0-.363-.124-.671-.374-.926a1.238 1.238 0 00-.92-.381c-.363 0-.671.127-.926.381a1.261 1.261 0 00-.381.927c0 .363.127.67.381.919.255.25.563.374.927.374zm-5.176-.143l6.326-6.316-1.11-1.11-6.316 6.326 1.1 1.1zm.05-4.968c.364 0 .672-.127.927-.381.254-.255.381-.563.381-.927 0-.363-.127-.67-.381-.919a1.273 1.273 0 00-.927-.374c-.363 0-.67.125-.919.374a1.25 1.25 0 00-.374.92c0 .363.125.671.374.926.25.254.556.381.92.381z'
6
+
7
+ type GoalDiscountFilledProps = SvgProps & {
8
+ bgFillColor?: string
9
+ }
10
+
11
+ function GoalDiscountFilled(props: GoalDiscountFilledProps) {
12
+ const { fill = '#266EF1', bgFillColor = '#fff', ...rest } = props
13
+ return (
14
+ <Svg viewBox="0 0 20 20" fill="none" {...rest}>
15
+ <Rect x="4" y="4" width="12" height="12" fill={bgFillColor} />
16
+ <Path d={FILLED_PATH} fill={fill} />
17
+ </Svg>
18
+ )
19
+ }
20
+
21
+ export default GoalDiscountFilled
@@ -0,0 +1,24 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ const OUTLINE_PATH =
5
+ 'M10 20c-.38 0-.743-.071-1.088-.213a2.76 2.76 0 01-.916-.617c-.53-.522-.983-.864-1.361-1.025-.379-.162-.947-.242-1.704-.242a2.733 2.733 0 01-2.007-.827 2.733 2.733 0 01-.827-2.007c0-.75-.08-1.317-.243-1.7-.161-.382-.503-.837-1.024-1.365A2.795 2.795 0 010 10.002c0-.375.07-.736.212-1.081.14-.345.347-.654.618-.925.521-.524.863-.976 1.024-1.356.162-.38.243-.95.243-1.709 0-.787.276-1.456.827-2.007a2.733 2.733 0 012.007-.827c.75 0 1.317-.08 1.7-.243.382-.161.837-.503 1.365-1.024a2.812 2.812 0 012-.83c.377 0 .738.07 1.083.212.345.14.654.347.925.618.524.521.976.863 1.356 1.024.38.162.95.243 1.709.243.787 0 1.456.276 2.007.827.551.55.827 1.22.827 2.007 0 .75.08 1.317.242 1.7.162.382.504.837 1.025 1.365A2.794 2.794 0 0120 9.998c0 .375-.07.736-.212 1.08a2.788 2.788 0 01-.618.926c-.522.53-.864.983-1.025 1.361-.162.379-.242.947-.242 1.704 0 .787-.276 1.456-.827 2.007a2.733 2.733 0 01-2.007.827c-.75 0-1.317.08-1.7.242-.382.162-.837.504-1.365 1.025a2.759 2.759 0 01-.916.617A2.821 2.821 0 0110 20zm.001-1.579c.167 0 .33-.034.488-.102.159-.068.292-.156.4-.264.665-.672 1.294-1.129 1.886-1.37.592-.24 1.356-.361 2.294-.361.355 0 .653-.12.894-.36.24-.242.36-.54.36-.895 0-.944.121-1.708.362-2.294.241-.585.694-1.214 1.36-1.886.25-.251.376-.548.376-.889a1.2 1.2 0 00-.366-.879c-.672-.672-1.129-1.304-1.37-1.896-.24-.592-.361-1.356-.361-2.294 0-.355-.12-.653-.36-.894-.242-.24-.54-.36-.895-.36-.953-.001-1.722-.12-2.305-.357-.583-.238-1.212-.693-1.885-1.364A1.332 1.332 0 0010 1.579c-.16 0-.322.037-.484.11a1.41 1.41 0 00-.405.267c-.665.665-1.294 1.118-1.886 1.359-.592.24-1.356.361-2.294.361-.355 0-.653.12-.894.36-.24.242-.36.54-.36.895-.001.95-.121 1.718-.362 2.304-.241.586-.698 1.214-1.37 1.886A1.199 1.199 0 001.58 10c0 .341.122.638.366.889.672.672 1.129 1.302 1.37 1.89.24.587.361 1.35.361 2.29 0 .355.12.653.36.894.242.24.54.36.895.36.951 0 1.717.121 2.3.362.581.241 1.212.698 1.89 1.37a1.278 1.278 0 00.88.366zm2.562-4.565c.363 0 .67-.124.919-.374.25-.25.374-.556.374-.92 0-.363-.124-.671-.374-.926a1.238 1.238 0 00-.92-.381c-.363 0-.671.127-.926.381a1.261 1.261 0 00-.381.927c0 .363.127.67.381.919.255.25.563.374.927.374zm-5.176-.143l6.326-6.316-1.11-1.11-6.316 6.326 1.1 1.1zm.05-4.968c.364 0 .672-.127.927-.381.254-.255.381-.563.381-.927 0-.363-.127-.67-.381-.919a1.273 1.273 0 00-.927-.374c-.363 0-.67.125-.919.374a1.25 1.25 0 00-.374.92c0 .363.125.671.374.926.25.254.556.381.92.381z'
6
+
7
+ const OUTLINE_BG_PATH =
8
+ 'M10 20c-.38 0-.743-.071-1.088-.213a2.76 2.76 0 01-.916-.617c-.53-.522-.983-.864-1.361-1.025-.379-.162-.947-.242-1.704-.242a2.733 2.733 0 01-2.007-.827 2.733 2.733 0 01-.827-2.007c0-.75-.08-1.317-.243-1.7-.161-.382-.503-.837-1.024-1.365A2.795 2.795 0 010 10.002c0-.375.07-.736.212-1.081.14-.345.347-.654.618-.925.521-.524.863-.976 1.024-1.356.162-.38.243-.95.243-1.709 0-.787.276-1.456.827-2.007a2.733 2.733 0 012.007-.827c.75 0 1.317-.079 1.698-.237.382-.158.838-.501 1.367-1.03.271-.265.578-.469.92-.613A2.84 2.84 0 0111.08.212c.345.14.654.347.925.618.524.521.976.863 1.356 1.024.38.162.95.243 1.709.243.787 0 1.456.276 2.007.827.551.55.827 1.22.827 2.007 0 .75.08 1.317.242 1.7.162.382.504.837 1.025 1.365A2.794 2.794 0 0120 9.998c0 .375-.07.736-.212 1.08a2.788 2.788 0 01-.618.926c-.529.53-.872.983-1.03 1.361-.158.379-.237.947-.237 1.704 0 .787-.276 1.456-.827 2.007a2.733 2.733 0 01-2.007.827c-.75 0-1.317.079-1.699.237-.381.158-.837.501-1.366 1.03a2.95 2.95 0 01-.92.613A2.759 2.759 0 0110 20zm2.563-6.144c.363 0 .67-.124.919-.374.25-.25.374-.556.374-.92 0-.363-.124-.671-.374-.926a1.238 1.238 0 00-.92-.381c-.363 0-.671.127-.926.381a1.261 1.261 0 00-.381.927c0 .363.127.67.381.919.255.25.563.374.927.374zm-5.176-.143l6.326-6.316-1.11-1.11-6.316 6.326 1.1 1.1zm.05-4.968c.364 0 .672-.127.927-.381.254-.255.381-.563.381-.927 0-.363-.127-.67-.381-.919a1.273 1.273 0 00-.927-.374c-.363 0-.67.125-.919.374a1.25 1.25 0 00-.374.92c0 .363.125.671.374.926.25.254.556.381.92.381z'
9
+
10
+ type GoalDiscountProps = SvgProps & {
11
+ bgFillColor?: string
12
+ }
13
+
14
+ function GoalDiscount(props: GoalDiscountProps) {
15
+ const { fill = '#0C0B0B', bgFillColor = '#fff', ...rest } = props
16
+ return (
17
+ <Svg viewBox="0 0 20 20" fill="none" {...rest}>
18
+ <Path d={OUTLINE_BG_PATH} fill={bgFillColor} />
19
+ <Path d={OUTLINE_PATH} fill={fill} />
20
+ </Svg>
21
+ )
22
+ }
23
+
24
+ export default GoalDiscount
@@ -0,0 +1,21 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ function GoalLocked(props: SvgProps) {
5
+ return (
6
+ <Svg width={23} height={26} viewBox="0 0 23 26" fill="none" {...props}>
7
+ <Path
8
+ d="M14.639 1.01c2.014 0 3.553 1.416 3.553 3.383 0 .84-.311 1.558-.838 2.086l-.698.697h3.292c.608 0 1.033.19 1.309.484.28.3.453.757.453 1.38v3.003c0 .519-.125.925-.331 1.216-.197.278-.486.476-.877.568h-.437v7.42c0 1.005-.275 1.707-.739 2.16-.465.455-1.181.719-2.186.719H5.139c-1.012 0-1.731-.264-2.198-.719-.464-.453-.74-1.155-.74-2.16v-7.42h-.436c-.391-.092-.677-.29-.87-.566-.204-.291-.327-.698-.327-1.218V9.04c0-.615.183-1.075.471-1.377.286-.3.716-.487 1.291-.487h3.305l-.713-.7c-.537-.526-.848-1.243-.848-2.083 0-1.966 1.55-3.383 3.554-3.383 1.444 0 2.603.778 3.124 2.146l.38 1.003.383-1.003c.52-1.368 1.69-2.146 3.124-2.146z"
9
+ fill="#F5F5F5"
10
+ stroke="#757575"
11
+ strokeWidth={0.816667}
12
+ />
13
+ <Path
14
+ d="M9.01 19.567h4.37c.702 0 1.075-.382 1.075-1.137v-3.29c0-.756-.373-1.133-1.075-1.133H9.01c-.703 0-1.075.377-1.075 1.132v3.291c0 .755.372 1.137 1.074 1.137zm-.24-5.192h.76V12.76c0-1.203.769-1.843 1.662-1.843.893 0 1.672.64 1.672 1.843v1.615h.755v-1.51c0-1.796-1.175-2.67-2.427-2.67-1.246 0-2.422.874-2.422 2.67v1.51z"
15
+ fill="#757575"
16
+ />
17
+ </Svg>
18
+ )
19
+ }
20
+
21
+ export default GoalLocked
@@ -0,0 +1,34 @@
1
+ import * as React from 'react'
2
+ import Svg, {
3
+ Path,
4
+ Defs,
5
+ LinearGradient,
6
+ Stop,
7
+ SvgProps,
8
+ } from 'react-native-svg'
9
+
10
+ function GoalUnlocked(props: SvgProps) {
11
+ return (
12
+ <Svg width={26} height={26} viewBox="0 0 26 26" fill="none" {...props}>
13
+ <Path
14
+ d="M0 12.374h6.862c-1.893-.835-3.187-2.38-3.187-4.26 0-2.17 1.6-3.771 3.744-3.771 1.865 0 3.535 1.155 4.51 3.076V0h1.823v7.419c.974-1.921 2.645-3.076 4.496-3.076 2.157 0 3.744 1.6 3.744 3.772 0 1.879-1.294 3.424-3.174 4.259h6.849v1.67H15.186c.863 1.782 3.716 4.454 5.776 4.677.78.07 1.211.543 1.211 1.28 0 .655-.529 1.267-1.378 1.156-2.297-.334-5.971-3.035-6.946-6.083h-.097v10.593h-1.823V15.074h-.112c-.974 3.048-4.649 5.749-6.931 6.083-.85.111-1.378-.501-1.378-1.155 0-.738.431-1.197 1.197-1.281 2.06-.25 4.913-2.895 5.776-4.677H0v-1.67zm11.205-.209h.445v-.431c0-2.812-1.907-5.262-4.12-5.262-1.072 0-1.754.71-1.754 1.81 0 1.879 2.506 3.883 5.429 3.883zm3.257 0c2.937 0 5.428-2.004 5.428-3.883 0-1.1-.682-1.81-1.754-1.81-2.199 0-4.12 2.45-4.12 5.262v.431h.446zm-6.89 13.502H18.08c2.45 0 4.356-.71 5.61-1.963 1.294-1.28 1.976-3.187 1.976-5.623V7.6c0-2.436-.682-4.343-1.977-5.623C22.423.71 20.53.013 18.08.013H7.573c-2.436 0-4.357.71-5.61 1.962C.683 3.257 0 5.165 0 7.6v10.48c0 2.437.668 4.344 1.963 5.624 1.266 1.267 3.173 1.963 5.609 1.963z"
15
+ fill="url(#paint0_linear_20636_42856)"
16
+ />
17
+ <Defs>
18
+ <LinearGradient
19
+ id="paint0_linear_20636_42856"
20
+ x1={12.8333}
21
+ y1={0}
22
+ x2={12.8333}
23
+ y2={25.6667}
24
+ gradientUnits="userSpaceOnUse"
25
+ >
26
+ <Stop stopColor="#028DF8" />
27
+ <Stop offset={1} stopColor="#49B0FF" />
28
+ </LinearGradient>
29
+ </Defs>
30
+ </Svg>
31
+ )
32
+ }
33
+
34
+ export default GoalUnlocked
@@ -0,0 +1,38 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function GoogleColorful({
5
+ height = '24',
6
+ width = '25',
7
+ stroke,
8
+ color,
9
+ fill,
10
+ }: SvgProps) {
11
+ return (
12
+ <Svg
13
+ width={width}
14
+ height={height}
15
+ stroke={stroke}
16
+ color={color}
17
+ fill="none"
18
+ viewBox="0 0 29 29"
19
+ >
20
+ <Path
21
+ d="M26.3483 12.1337H25.375V12.0835H14.5V16.9169H21.3289C20.3326 19.7305 17.6555 21.7502 14.5 21.7502C10.4962 21.7502 7.24997 18.504 7.24997 14.5002C7.24997 10.4964 10.4962 7.25019 14.5 7.25019C16.3481 7.25019 18.0295 7.9474 19.3097 9.08625L22.7275 5.66848C20.5694 3.65721 17.6827 2.41685 14.5 2.41685C7.82695 2.41685 2.41663 7.82717 2.41663 14.5002C2.41663 21.1732 7.82695 26.5835 14.5 26.5835C21.173 26.5835 26.5833 21.1732 26.5833 14.5002C26.5833 13.69 26.4999 12.8991 26.3483 12.1337Z"
22
+ fill="#FFC107"
23
+ />
24
+ <Path
25
+ d="M3.80993 8.876L7.77991 11.7875C8.85412 9.12794 11.4557 7.25019 14.5001 7.25019C16.3482 7.25019 18.0296 7.9474 19.3098 9.08625L22.7276 5.66848C20.5695 3.65721 17.6828 2.41685 14.5001 2.41685C9.85885 2.41685 5.83389 5.03713 3.80993 8.876Z"
26
+ fill="#FF3D00"
27
+ />
28
+ <Path
29
+ d="M14.4999 26.5838C17.6211 26.5838 20.457 25.3894 22.6012 23.447L18.8614 20.2823C17.6483 21.2013 16.1403 21.7505 14.4999 21.7505C11.3571 21.7505 8.68847 19.7464 7.68313 16.9498L3.74276 19.9857C5.74255 23.8989 9.80376 26.5838 14.4999 26.5838Z"
30
+ fill="#4CAF50"
31
+ />
32
+ <Path
33
+ d="M26.3483 12.1342H25.375V12.084H14.5V16.9174H21.3289C20.8504 18.2689 19.981 19.4343 18.8597 20.2832C18.8603 20.2826 18.8609 20.2826 18.8615 20.282L22.6013 23.4466C22.3366 23.6871 26.5833 20.5424 26.5833 14.5007C26.5833 13.6905 26.4999 12.8997 26.3483 12.1342Z"
34
+ fill="#1976D2"
35
+ />
36
+ </Svg>
37
+ )
38
+ }
@@ -0,0 +1,28 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Google({
5
+ height = '24',
6
+ width = '25',
7
+ stroke,
8
+ color,
9
+ fill,
10
+ }: SvgProps) {
11
+ return (
12
+ <Svg
13
+ width={width}
14
+ height={height}
15
+ stroke={stroke}
16
+ color={color}
17
+ fill="none"
18
+ viewBox="0 0 25 24"
19
+ >
20
+ <Path
21
+ fillRule="evenodd"
22
+ clipRule="evenodd"
23
+ d="M17.3433 6.54769C16.1043 5.36599 14.4508 4.72223 12.74 4.74868C9.60936 4.74868 6.95055 6.86074 6.00253 9.70474C5.49987 11.1951 5.49986 12.809 6.00253 14.2993H6.00693C6.95934 17.1389 9.61376 19.251 12.7444 19.251C14.3604 19.251 15.7478 18.8376 16.823 18.1076V18.1046C18.0885 17.2668 18.9528 15.9484 19.2217 14.4581H12.74V9.8371H24.0588C24.1999 10.6396 24.266 11.4597 24.266 12.2755C24.266 15.9253 22.9616 19.0111 20.6921 21.1011L20.6944 21.1029C18.7058 22.9372 15.9764 23.9998 12.74 23.9998C8.20277 23.9998 4.05359 21.4424 2.01648 17.3903C0.31449 13.9995 0.314494 10.0046 2.01649 6.61386C4.0536 2.55727 8.20277 -0.000167897 12.74 -0.000167897C15.7207 -0.0354426 18.6 1.08453 20.7694 3.12164L17.3433 6.54769Z"
24
+ fill="#402020"
25
+ />
26
+ </Svg>
27
+ )
28
+ }
@@ -0,0 +1,22 @@
1
+ import * as React from 'react'
2
+ import Svg, { SvgProps, G, Path, Defs, ClipPath } from 'react-native-svg'
3
+
4
+ const SvgComponent = (props: SvgProps) => (
5
+ <Svg width={25} height={24} fill="none" viewBox="0 0 25 24" {...props}>
6
+ <G clipPath="url(#a)">
7
+ <Path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M10.011 9.026a2.712 2.712 0 0 0-1.41.675c-.337.316-.633.685-.953 1.102l-.132.175c-.33.442-.726.973-1.247 1.383h-.001c-.91.713-2.009.906-2.994.603a3.143 3.143 0 0 1-.375-.141c.174.275.39.53.651.765 2.19 1.981 5.688 1.855 7.747-.286.05-.053.127-.131.22-.2a.984.984 0 0 1 .466-.192c.457-.057.766.238.889.363l.005.005c1.78 1.848 4.684 2.26 6.857.986a4.02 4.02 0 0 0 1.426-1.394c-.174.068-.358.12-.55.15-1.414.226-2.54-.331-3.398-1.367l-.001-.002c-.195-.236-.385-.485-.566-.72l-.19-.248a10.48 10.48 0 0 0-.725-.861l-.002-.002a2.813 2.813 0 0 0-1.487-.78c-.57-.102-1.105 0-1.52.35a.952.952 0 0 1-.706.228 1.032 1.032 0 0 1-.53-.224l-.011-.01c-.42-.337-.932-.438-1.463-.358Zm-7.952.611a.983.983 0 0 1 .393.466c.034.083.052.159.059.188v.003l.003.012c.24.669.703 1.072 1.2 1.224.498.153 1.09.073 1.628-.349.354-.278.625-.64.97-1.096l.141-.19.003-.003c.324-.422.685-.878 1.118-1.284a4.21 4.21 0 0 1 2.215-1.066c.752-.112 1.576-.01 2.309.449.757-.48 1.624-.567 2.406-.428.89.158 1.73.617 2.307 1.22.309.32.58.66.83.982l.212.275c.173.228.338.443.514.656.583.703 1.207.97 2.006.843.577-.093 1.17-.71 1.456-1.51a.75.75 0 0 1 1.456.23c.07 2.25-.93 4.211-2.794 5.3-2.66 1.558-6.124 1.14-8.391-.944-2.643 2.456-6.858 2.527-9.556.085C1.214 13.5.74 11.944.872 10.19a.75.75 0 0 1 1.187-.552Zm9.725 4.67.002.002-.002-.002Zm.617-6.101c.007.005.01.006.005.004a.24.24 0 0 1-.005-.004Z"
11
+ fill={props.fill ?? props.color}
12
+ />
13
+ </G>
14
+ <Defs>
15
+ <ClipPath id="a">
16
+ <Path fill="#fff" transform="translate(.1)" d="M0 0h24v24H0z" />
17
+ </ClipPath>
18
+ </Defs>
19
+ </Svg>
20
+ )
21
+
22
+ export default SvgComponent
@@ -0,0 +1,30 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ const SvgComponent = (props: SvgProps) => (
5
+ <Svg width={32} height={32} viewBox="0 0 32 32" fill="none" {...props}>
6
+ <Path
7
+ d="M6 9H26"
8
+ stroke={props.color}
9
+ strokeWidth={0.8}
10
+ strokeLinecap="round"
11
+ strokeLinejoin="round"
12
+ />
13
+ <Path
14
+ d="M6 16H26"
15
+ stroke={props.color}
16
+ strokeWidth={0.8}
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ <Path
21
+ d="M6 23H26"
22
+ stroke={props.color}
23
+ strokeWidth={0.8}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </Svg>
28
+ )
29
+
30
+ export default SvgComponent
@@ -0,0 +1,30 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ function Heart({
5
+ height = 25,
6
+ width = 25,
7
+ color = '#000',
8
+ ...props
9
+ }: SvgProps) {
10
+ return (
11
+ <Svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width={width}
14
+ height={height}
15
+ viewBox="0 0 25 25"
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ <Path
20
+ d="M21 7.777L12.5 12.5m0 0L4 7.777m8.5 4.723V22m2-.611l-1.223.679c-.284.157-.425.236-.575.267a.998.998 0 01-.403 0c-.15-.03-.292-.11-.576-.267l-7.4-4.111c-.3-.167-.45-.25-.558-.368a1 1 0 01-.215-.364c-.05-.153-.05-.324-.05-.667V8.441c0-.343 0-.514.05-.667a1 1 0 01.215-.364c.109-.118.258-.201.558-.368l7.4-4.11c.284-.158.425-.237.576-.268a1 1 0 01.402 0c.15.03.292.11.576.267l7.4 4.111c.3.167.45.25.558.368a1 1 0 01.215.364c.05.153.05.324.05.667V13M8 5l9 5m-.5 8.5l2 2 4-4"
21
+ stroke={color}
22
+ strokeWidth={1.5}
23
+ strokeLinecap="round"
24
+ strokeLinejoin="round"
25
+ />
26
+ </Svg>
27
+ )
28
+ }
29
+
30
+ export default Heart
@@ -0,0 +1,22 @@
1
+ import * as React from 'react'
2
+ import { ClipPath, Defs, G, Path, Rect, Svg, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Help({ width, height, fill = '#f2f2f2' }: SvgProps) {
5
+ return (
6
+ <Svg width={width} height={height} viewBox="0 0 20 20" fill="none">
7
+ <G clipPath="url(#clip0_830_4709)">
8
+ <Path
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ d="M10 20C15.514 20 20 15.514 20 10C20 4.486 15.514 -4.82049e-07 10 0C4.486 4.82049e-07 -4.82049e-07 4.486 0 10C4.82049e-07 15.514 4.486 20 10 20ZM11 14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V10C9 9.44772 9.44771 9 10 9C10.5523 9 11 9.44772 11 10V14ZM10 5C9.44771 5 9 5.44771 9 6C9 6.55229 9.44771 7 10 7C10.5523 7 11 6.55229 11 6C11 5.44771 10.5523 5 10 5Z"
12
+ fill={fill}
13
+ />
14
+ </G>
15
+ <Defs>
16
+ <ClipPath id="clip0_830_4521">
17
+ <Rect width="20" height="20" fill="white" />
18
+ </ClipPath>
19
+ </Defs>
20
+ </Svg>
21
+ )
22
+ }
@@ -0,0 +1,26 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function History({
5
+ height = '24',
6
+ width = '24',
7
+ stroke,
8
+ color,
9
+ fill,
10
+ }: SvgProps) {
11
+ return (
12
+ <Svg
13
+ width={width}
14
+ height={height}
15
+ stroke={stroke}
16
+ color={color}
17
+ fill="none"
18
+ viewBox="0 0 48 48"
19
+ >
20
+ <Path
21
+ fill={fill}
22
+ d="M23.85 42q-7.45 0-12.65-5.275T6 23.95h3q0 6.25 4.3 10.65T23.85 39q6.35 0 10.75-4.45t4.4-10.8q0-6.2-4.45-10.475Q30.1 9 23.85 9q-3.4 0-6.375 1.55t-5.175 4.1h5.25v3H7.1V7.25h3v5.3q2.6-3.05 6.175-4.8Q19.85 6 23.85 6q3.75 0 7.05 1.4t5.775 3.825q2.475 2.425 3.9 5.675Q42 20.15 42 23.9t-1.425 7.05q-1.425 3.3-3.9 5.75-2.475 2.45-5.775 3.875Q27.6 42 23.85 42Zm6.4-9.85-7.7-7.6v-10.7h3v9.45L32.4 30Z"
23
+ />
24
+ </Svg>
25
+ )
26
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ const SvgComponent = (props: SvgProps) => (
5
+ <Svg width={22} height={19} fill="none" viewBox="0 0 22 19" {...props}>
6
+ <Path
7
+ fillRule="evenodd"
8
+ clipRule="evenodd"
9
+ d="M10.316.425a.75.75 0 0 1 .962 0l9.652 8.05a.75.75 0 1 1-.96 1.153l-9.172-7.65-6.33 5.3-3.036 2.547a.75.75 0 1 1-.964-1.15l9.848-8.25Z"
10
+ fill={props.fill ?? props.color}
11
+ />
12
+ <Path
13
+ fillRule="evenodd"
14
+ clipRule="evenodd"
15
+ d="M2.825 2.125h3v3.3l-3 2.344V2.125Zm.75.75v3.356l1.5-1.173V2.875h-1.5ZM7.143 14.245a1.5 1.5 0 0 1 1.5-1.5h3.954a1.5 1.5 0 0 1 1.5 1.5V17.5h3.353v-6.837l-6.748-5.48-6.752 5.5V17.5h3.193v-3.255ZM8.643 19H2.45V9.97l8.25-6.72 8.25 6.698V19h-6.353v-4.755H8.643V19Z"
16
+ fill={props.fill ?? props.color}
17
+ />
18
+ </Svg>
19
+ )
20
+
21
+ export default SvgComponent
@@ -0,0 +1,4 @@
1
+ <svg width="17" height="19" viewBox="0 0 17 19" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.125 6.7614V17C16.125 17.841 15.4534 18.5 14.625 18.5H12.625C11.7966 18.5 11.125 17.841 11.125 17V12.5H5.125V16.9773C5.125 17.8182 4.45343 18.5 3.625 18.5H1.625C0.796573 18.5 0.125 17.8182 0.125 16.9773V6.7614C0.125 6.28286 0.353327 5.83304 0.739609 5.55058L7.33 0.73146C7.81641 0.422847 8.43359 0.422846 8.92 0.73146L15.5104 5.55058C15.8967 5.83304 16.125 6.28286 16.125 6.7614Z" />
3
+ </svg>
4
+
@@ -0,0 +1,19 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Info({
5
+ height = 20,
6
+ width = 20,
7
+ stroke,
8
+ color,
9
+ fill = '#5C5C5C',
10
+ }: SvgProps) {
11
+ return (
12
+ <Svg width={width} height={height} viewBox="0 0 22 23" fill={fill}>
13
+ <Path
14
+ d="M10.9998 22.3333C5.01659 22.3333 0.166504 17.4832 0.166504 11.5C0.166504 5.51674 5.01659 0.666656 10.9998 0.666656C16.9831 0.666656 21.8332 5.51674 21.8332 11.5C21.8332 17.4832 16.9831 22.3333 10.9998 22.3333ZM10.9998 20.1667C13.2984 20.1667 15.5028 19.2536 17.1281 17.6282C18.7534 16.0029 19.6665 13.7985 19.6665 11.5C19.6665 9.20145 18.7534 6.99705 17.1281 5.37173C15.5028 3.74642 13.2984 2.83332 10.9998 2.83332C8.70129 2.83332 6.49689 3.74642 4.87158 5.37173C3.24626 6.99705 2.33317 9.20145 2.33317 11.5C2.33317 13.7985 3.24626 16.0029 4.87158 17.6282C6.49689 19.2536 8.70129 20.1667 10.9998 20.1667ZM9.9165 6.08332H12.0832V8.24999H9.9165V6.08332ZM9.9165 10.4167H12.0832V16.9167H9.9165V10.4167Z"
15
+ fill={fill}
16
+ />
17
+ </Svg>
18
+ )
19
+ }
@@ -0,0 +1,13 @@
1
+ import React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function InlineErrorIcon({ fill, ...rest }: SvgProps) {
5
+ return (
6
+ <Svg width="16" height="16" viewBox="0 0 14 14" fill="none" {...rest}>
7
+ <Path
8
+ d="M6.99998 13.6667C3.31798 13.6667 0.333313 10.682 0.333313 7.00001C0.333313 3.31801 3.31798 0.333344 6.99998 0.333344C10.682 0.333344 13.6666 3.31801 13.6666 7.00001C13.6666 10.682 10.682 13.6667 6.99998 13.6667ZM6.33331 9.00001V10.3333H7.66665V9.00001H6.33331ZM6.33331 3.66668V7.66668H7.66665V3.66668H6.33331Z"
9
+ fill={fill || '#990000'}
10
+ />
11
+ </Svg>
12
+ )
13
+ }
@@ -0,0 +1,15 @@
1
+ import React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function DoubleCheckmarks({ fill, stroke, ...rest }: SvgProps) {
5
+ return (
6
+ <Svg width="16" height="9" viewBox="0 0 16 9" fill="none" {...rest}>
7
+ <Path
8
+ d="M7.73469 6.17333L8.67602 7.11466L14.32 1.47066L15.2627 2.41333L8.67602 8.99999L4.43335 4.75733L5.37602 3.81466L6.79269 5.23133L7.73469 6.17266V6.17333ZM7.73602 4.28799L11.0374 0.985992L11.9774 1.92599L8.67602 5.22799L7.73602 4.28799ZM5.85135 8.05799L4.90935 8.99999L0.666687 4.75733L1.60935 3.81466L2.55135 4.75666L2.55069 4.75733L5.85135 8.05799Z"
9
+ fill={fill || '#069952'}
10
+ stroke={stroke}
11
+ strokeWidth={0.1}
12
+ />
13
+ </Svg>
14
+ )
15
+ }
@@ -0,0 +1,17 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Instagram(props: SvgProps) {
5
+ return (
6
+ <Svg width={25} height={24} viewBox="0 0 25 24" fill="none" {...props}>
7
+ <Path
8
+ d="M12.5 2.16c3.206 0 3.586.015 4.847.071 1.172.052 1.805.249 2.226.413a3.71 3.71 0 011.379.895c.421.422.68.82.895 1.378.164.422.36 1.06.412 2.227.057 1.265.07 1.645.07 4.847 0 3.206-.013 3.586-.07 4.846-.051 1.172-.248 1.805-.412 2.227a3.71 3.71 0 01-.895 1.378 3.69 3.69 0 01-1.379.895c-.421.165-1.059.361-2.226.413-1.266.056-1.645.07-4.847.07-3.206 0-3.586-.014-4.847-.07-1.172-.052-1.805-.248-2.226-.413a3.71 3.71 0 01-1.379-.895 3.691 3.691 0 01-.895-1.378c-.164-.422-.36-1.06-.412-2.227-.057-1.265-.07-1.645-.07-4.846 0-3.207.013-3.586.07-4.847.051-1.172.248-1.805.412-2.227.216-.558.478-.96.895-1.378.422-.422.82-.68 1.379-.895.421-.164 1.059-.361 2.226-.413 1.261-.056 1.64-.07 4.847-.07zm0-2.16C9.242 0 8.834.014 7.555.07 6.28.127 5.403.333 4.644.628a5.857 5.857 0 00-2.128 1.388 5.88 5.88 0 00-1.388 2.123C.833 4.903.627 5.775.57 7.05.514 8.334.5 8.742.5 12s.014 3.666.07 4.945c.057 1.275.263 2.152.558 2.911.31.792.717 1.463 1.388 2.128a5.866 5.866 0 002.123 1.383c.764.296 1.636.502 2.911.558 1.28.056 1.688.07 4.945.07 3.258 0 3.666-.014 4.946-.07 1.275-.056 2.151-.262 2.91-.558a5.866 5.866 0 002.124-1.383 5.867 5.867 0 001.383-2.123c.295-.764.501-1.636.558-2.911.056-1.28.07-1.688.07-4.945 0-3.258-.014-3.666-.07-4.946-.057-1.275-.263-2.151-.558-2.91a5.62 5.62 0 00-1.374-2.133A5.866 5.866 0 0020.361.633C19.597.338 18.725.13 17.45.075 16.166.015 15.758 0 12.5 0z"
9
+ fill={props.fill}
10
+ />
11
+ <Path
12
+ d="M12.5 5.836A6.166 6.166 0 006.336 12a6.166 6.166 0 006.164 6.164A6.166 6.166 0 0018.664 12 6.166 6.166 0 0012.5 5.836zm0 10.162A3.999 3.999 0 1112.501 8a3.999 3.999 0 01-.001 7.998zM20.347 5.592a1.44 1.44 0 11-2.879 0 1.44 1.44 0 012.879 0z"
13
+ fill={props.fill}
14
+ />
15
+ </Svg>
16
+ )
17
+ }
@@ -0,0 +1,15 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Lock(props: SvgProps) {
5
+ return (
6
+ <Svg width="26" height="26" viewBox="0 0 26 26" fill="none" {...props}>
7
+ <Path
8
+ d="M18.4173 10.8333V8.66667C18.4173 5.67512 15.9922 3.25 13.0007 3.25C10.0091 3.25 7.58398 5.67512 7.58398 8.66667V10.8333M13.0007 15.7083V17.875M9.53398 22.75H16.4673C18.2875 22.75 19.1976 22.75 19.8928 22.3958C20.5043 22.0842 21.0015 21.587 21.3131 20.9755C21.6673 20.2803 21.6673 19.3702 21.6673 17.55V16.0333C21.6673 14.2132 21.6673 13.3031 21.3131 12.6079C21.0015 11.9963 20.5043 11.4992 19.8928 11.1876C19.1976 10.8333 18.2875 10.8333 16.4673 10.8333H9.53398C7.71381 10.8333 6.80373 10.8333 6.10852 11.1876C5.49699 11.4992 4.9998 11.9963 4.68821 12.6079C4.33398 13.3031 4.33398 14.2132 4.33398 16.0333V17.55C4.33398 19.3702 4.33398 20.2803 4.68821 20.9755C4.9998 21.587 5.49699 22.0842 6.10852 22.3958C6.80373 22.75 7.71381 22.75 9.53398 22.75Z"
9
+ stroke="black"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ </Svg>
14
+ )
15
+ }
@@ -0,0 +1,30 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Mail({
5
+ height = '18',
6
+ width = '25',
7
+ stroke,
8
+ color,
9
+ fill,
10
+ }: SvgProps) {
11
+ return (
12
+ <Svg
13
+ width={width}
14
+ height={height}
15
+ stroke={stroke}
16
+ color={color}
17
+ fill="none"
18
+ viewBox="0 0 25 18"
19
+ >
20
+ <Path
21
+ d="M0.5 3.38941V15.6001C0.5 16.5942 1.30589 17.4001 2.3 17.4001H22.7C23.6941 17.4001 24.5 16.5942 24.5 15.6001V3.3893L13.1045 10.0366C12.7309 10.2546 12.2689 10.2546 11.8953 10.0366L0.5 3.38941Z"
22
+ fill="#402020"
23
+ />
24
+ <Path
25
+ d="M23.832 1.0005C23.5227 0.750097 23.1289 0.600098 22.7 0.600098H2.3C1.87107 0.600098 1.47719 0.750124 1.16796 1.00056L12.4999 7.61087L23.832 1.0005Z"
26
+ fill="#402020"
27
+ />
28
+ </Svg>
29
+ )
30
+ }
@@ -0,0 +1,21 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ const SvgComponent = (props: SvgProps) => (
5
+ <Svg width={32} height={32} viewBox="0 0 32 32" fill="none" {...props}>
6
+ <Path
7
+ d="M16.5675 23.7609H15.5101C12.4679 23.7609 9.98907 21.2821 9.98907 18.2399V12.8402H10.5524V18.2399C10.5524 20.9787 12.7799 23.1975 15.5101 23.1975H16.5675C19.3063 23.1975 21.5251 20.9701 21.5251 18.2399V12.8402H22.0885V18.2399C22.0885 21.2821 19.6097 23.7609 16.5675 23.7609V23.7609Z"
8
+ fill={props.color}
9
+ />
10
+ <Path
11
+ d="M18.4483 14.9204H13.638V20.7535H18.4483V14.9204Z"
12
+ fill={props.color}
13
+ />
14
+ <Path
15
+ d="M28.9876 11.9042C28.9703 11.7915 28.8836 11.7395 28.7882 11.7222C28.7276 11.7049 28.6582 11.6962 28.5889 11.6789C27.9909 11.5315 27.4448 11.2802 26.9075 10.9855C26.0234 10.5088 25.148 10.0148 24.2726 9.5294C23.5879 9.15671 22.8859 8.82736 22.1578 8.55868C21.4818 8.316 20.7884 8.14265 20.069 8.05598C19.523 7.98664 18.9856 7.98664 18.4483 8.04731C17.6422 8.14265 16.8708 8.37667 16.1428 8.74069C16.0388 8.79269 15.9521 8.79269 15.8481 8.74069C15.1721 8.40267 14.4527 8.17732 13.6986 8.06465C12.7453 7.92597 11.8005 8.02131 10.8731 8.24666C10.0411 8.446 9.25237 8.74936 8.49833 9.13938C7.40626 9.71142 6.34019 10.3181 5.25679 10.8988C4.60675 11.2455 3.93938 11.5835 3.20267 11.7222C3.09866 11.7395 3.02066 11.8002 3.00332 11.9129C2.98599 12.0256 3.03799 12.0949 3.12466 12.1556C3.272 12.2509 3.41935 12.3376 3.55802 12.4416C4.23406 13.005 4.91011 13.5597 5.56881 14.1404C6.3662 14.8424 7.16358 15.5531 8.0303 16.1771C8.71501 16.6798 9.43439 17.1219 10.1971 17.4946C10.1971 17.3386 10.2318 17.1825 10.3011 17.0525C9.63373 16.7232 9.00969 16.3332 8.40299 15.8998C7.5796 15.3104 6.80822 14.6517 6.05418 13.9757C5.42147 13.4123 4.7801 12.8663 4.13872 12.3202C4.13006 12.3202 4.12139 12.3029 4.11272 12.2942V12.2596C4.40741 12.3116 4.68476 12.3636 4.97078 12.4156C5.62082 12.5456 6.27086 12.7016 6.92956 12.8056C7.54494 12.9009 8.16897 12.9356 8.78434 12.9876C9.71174 13.0743 10.6305 12.9616 11.5492 12.9009C12.1559 12.8663 12.7539 12.9269 13.3606 12.9963C14.0973 13.0916 14.8341 13.1783 15.5708 13.239C16.3855 13.2996 17.1915 13.187 17.9976 13.083C18.7083 12.9876 19.419 12.8663 20.147 12.8923C20.6757 12.9096 21.2044 12.9703 21.7331 12.9876C22.2965 13.005 22.8512 12.9963 23.4146 12.9703C24.29 12.9269 25.1654 12.8229 26.0321 12.6409C26.6041 12.5196 27.1675 12.3982 27.7395 12.2856C27.7829 12.2769 27.8349 12.2769 27.9215 12.2596C27.7395 12.4156 27.5835 12.5369 27.4362 12.6669C26.7948 13.2303 26.1621 13.8023 25.5207 14.357C24.7927 14.9984 24.0386 15.6138 23.2239 16.1598C22.7992 16.4458 22.3572 16.7058 21.9065 16.9399C21.9672 17.0352 22.0018 17.1565 22.0105 17.2865C22.0105 17.3212 22.0105 17.3472 22.0105 17.3732C22.0278 17.3646 22.0538 17.3559 22.0712 17.3386C22.5825 17.0525 23.0939 16.7665 23.5793 16.4458C24.6627 15.7265 25.6247 14.8597 26.5868 13.9843C27.3148 13.3256 28.0342 12.6583 28.8749 12.1382C28.9703 12.0776 29.0136 11.9996 28.9963 11.8956L28.9876 11.9042ZM26.8815 11.9996C26.3268 12.1122 25.7721 12.2596 25.2087 12.3376C24.5413 12.4329 23.8566 12.4849 23.1806 12.5456C22.3398 12.6236 21.4991 12.5456 20.6671 12.4763C19.783 12.4069 18.899 12.5196 18.0236 12.6323C17.1915 12.7449 16.3508 12.8749 15.5014 12.7969C14.8601 12.7449 14.2187 12.6669 13.586 12.5803C12.6673 12.4503 11.7572 12.4156 10.8385 12.5109C9.93708 12.6063 9.03569 12.5716 8.1343 12.5109C7.06824 12.4329 6.02817 12.2162 4.98811 11.9822C4.7801 11.9302 4.56342 11.8956 4.3294 11.8522C4.56342 11.7395 4.7801 11.6529 4.97944 11.5402C5.69015 11.1502 6.40953 10.7601 7.12024 10.3701C8.17764 9.78075 9.23504 9.20872 10.3964 8.85336C10.8125 8.72335 11.2372 8.60201 11.6705 8.54134C12.8926 8.35933 14.0887 8.48934 15.2327 8.9747C15.4321 9.06138 15.6228 9.15672 15.8048 9.25205C15.9261 9.31272 16.0301 9.31272 16.1428 9.25205C16.8535 8.87936 17.6076 8.61935 18.4136 8.51534C19.029 8.43734 19.6443 8.45467 20.2597 8.53268C20.8231 8.61068 21.3691 8.75802 21.9065 8.95737C22.7125 9.25205 23.4839 9.62474 24.238 10.0408C25.1914 10.5608 26.1361 11.0808 27.0895 11.6009C27.2628 11.6962 27.4448 11.7655 27.6528 11.8609C27.3668 11.9216 27.1241 11.9649 26.8728 12.0169L26.8815 11.9996Z"
16
+ fill={props.color}
17
+ />
18
+ </Svg>
19
+ )
20
+
21
+ export default SvgComponent
@@ -0,0 +1,19 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ export default function Minus({ width, height, fill, ...props }: SvgProps) {
5
+ return (
6
+ <Svg
7
+ width={width ?? 16}
8
+ height={height ?? 17}
9
+ viewBox="0 0 16 17"
10
+ fill="none"
11
+ {...props}
12
+ >
13
+ <Path
14
+ d="M14 8.5H2.8a.8.8 0 000 1.6H14a.8.8 0 100-1.6z"
15
+ fill={fill ?? '#292B33'}
16
+ />
17
+ </Svg>
18
+ )
19
+ }
@@ -0,0 +1,13 @@
1
+ import * as React from 'react'
2
+ import Svg, { Defs, Path, SvgProps } from 'react-native-svg'
3
+
4
+ const SvgComponent = (props: SvgProps) => (
5
+ <Svg viewBox="0 0 32 32" {...props}>
6
+ <Defs></Defs>
7
+ <Path d="M1 9.4L31 9.4" />
8
+ <Path d="M1 16L31 16" />
9
+ <Path d="M1 22.6L31 22.6" />
10
+ </Svg>
11
+ )
12
+
13
+ export default SvgComponent
@@ -0,0 +1,44 @@
1
+ import * as React from 'react'
2
+ import Svg, { Path, SvgProps } from 'react-native-svg'
3
+
4
+ function NotificationBell({
5
+ width = 20,
6
+ height = 20,
7
+ color,
8
+ ...props
9
+ }: SvgProps) {
10
+ const strokeColor = props.fill ?? color ?? '#fff'
11
+ return (
12
+ <Svg
13
+ width={width}
14
+ height={height}
15
+ viewBox="0 0 20 20"
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ <Path
20
+ d="M10.017 2.425c-2.759 0-5 2.242-5 5v2.408c0 .509-.217 1.284-.476 1.717l-.958 1.592c-.592.983-.183 2.075.9 2.441 3.591 1.2 7.466 1.2 11.058 0 1.008-.333 1.45-1.525.9-2.441l-.959-1.592c-.25-.433-.466-1.208-.466-1.717V7.425c0-2.75-2.25-5-5-5Z"
21
+ stroke={strokeColor}
22
+ strokeWidth={1.25}
23
+ strokeMiterlimit={10}
24
+ strokeLinecap="round"
25
+ />
26
+ <Path
27
+ d="M11.558 2.667a5.318 5.318 0 00-.8-.167 4.678 4.678 0 00-2.283.167c.241-.617.841-1.05 1.541-1.05.7 0 1.3.433 1.542 1.05Z"
28
+ stroke={strokeColor}
29
+ strokeWidth={1.25}
30
+ strokeMiterlimit={10}
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ <Path
35
+ d="M12.517 15.883a2.504 2.504 0 01-2.5 2.5 2.502 2.502 0 01-1.767-.733 2.502 2.502 0 01-.733-1.767"
36
+ stroke={strokeColor}
37
+ strokeWidth={1.25}
38
+ strokeMiterlimit={10}
39
+ />
40
+ </Svg>
41
+ )
42
+ }
43
+
44
+ export default NotificationBell
@@ -0,0 +1,21 @@
1
+ import * as React from 'react'
2
+ import Svg, { ClipPath, Defs, G, Path, SvgProps } from 'react-native-svg'
3
+ const NotificationsIcon = (props: SvgProps) => {
4
+ console.log(props)
5
+ return (
6
+ <Svg width={26} height={27} viewBox="0 0 26 27" fill="none" {...props}>
7
+ <G clipPath="url(#a)">
8
+ <Path
9
+ fill={props.fill ?? props.color ?? '#545766'}
10
+ d="M23.833 22.167H2.167V20H3.25v-7.55c0-5.403 4.366-9.783 9.75-9.783s9.75 4.38 9.75 9.783V20h1.083v2.167ZM5.417 20h15.166v-7.55c0-4.206-3.395-7.617-7.583-7.617-4.188 0-7.583 3.41-7.583 7.617V20Zm4.874 3.25h5.417a2.708 2.708 0 0 1-5.417 0Z"
11
+ />
12
+ </G>
13
+ <Defs>
14
+ <ClipPath id="a">
15
+ <Path fill="#fff" d="M0 .5h26v26H0z" />
16
+ </ClipPath>
17
+ </Defs>
18
+ </Svg>
19
+ )
20
+ }
21
+ export default NotificationsIcon
@@ -0,0 +1,11 @@
1
+ import React from 'react'
2
+ import Svg, { Defs, Path, SvgProps } from 'react-native-svg'
3
+ export default function Offers(props: SvgProps) {
4
+ return (
5
+ <Svg id="Layer_1" viewBox="0 0 32 32" fill={props.color} {...props}>
6
+ <Defs></Defs>
7
+ <Path d="M.5 18.49c0-.4.07-.74.2-1.08.05-.12.1-.24.15-.37.1-.24.15-.49.16-.75 0-.19.01-.39 0-.58-.01-.25-.06-.49-.15-.72-.06-.14-.12-.29-.17-.43-.19-.45-.23-.92-.17-1.4.06-.45.2-.86.44-1.24.1-.16.21-.3.34-.43.12-.12.25-.24.36-.37.24-.27.4-.58.54-.92.04-.09.06-.18.09-.28.07-.23.11-.46.11-.69 0-.22 0-.45.02-.67.04-.34.14-.66.29-.97.16-.31.36-.59.61-.83.24-.23.51-.42.82-.55.11-.04.21-.09.32-.13.32-.12.6-.32.85-.55.15-.14.29-.28.41-.44.13-.17.24-.35.32-.55.05-.12.1-.24.15-.37.15-.37.38-.68.67-.95.34-.31.73-.54 1.17-.68.24-.08.49-.13.74-.12h.31c.4 0 .78-.08 1.16-.23.42-.17.78-.4 1.09-.73.14-.15.28-.29.44-.41.43-.3.91-.47 1.44-.53.36-.04.71 0 1.06.08.18.04.35.12.52.19.29.13.58.2.89.23.38.04.76 0 1.13-.08.2-.05.38-.13.56-.21.36-.16.75-.24 1.14-.22.66.02 1.26.21 1.79.61.06.04.11.1.17.15.08.08.16.15.23.23.32.35.72.58 1.17.74.35.13.72.2 1.09.19h.21c.41-.02.79.09 1.16.26.33.15.62.36.87.61.25.24.45.52.59.84.04.1.09.2.13.3.1.27.24.51.43.72.26.3.54.58.89.77.13.07.26.12.39.18.17.07.34.14.5.23a3.084 3.084 0 011.44 2.09c0 .04.02.08.02.12 0 .24.04.47.03.7 0 .21.02.41.08.61.12.42.3.81.57 1.15.04.05.09.11.14.15l.27.27c.47.46.71 1.03.81 1.67.05.34.04.69-.03 1.03-.05.23-.13.44-.23.65-.09.21-.17.42-.2.64-.04.27-.08.55-.04.82l.03.27c.03.29.15.55.26.82.17.38.25.79.23 1.21-.03.63-.21 1.22-.59 1.73-.07.09-.15.17-.23.26-.13.13-.26.25-.38.4-.36.44-.58.95-.68 1.51 0 .05-.01.1-.01.15 0 .23-.02.46-.02.69 0 .33-.09.64-.21.93-.17.41-.42.77-.74 1.07-.23.22-.49.4-.79.52-.11.04-.21.09-.32.13-.3.11-.56.29-.8.5-.17.15-.33.32-.47.5-.14.18-.25.38-.34.6-.07.16-.13.32-.21.47-.18.35-.43.65-.74.9-.36.29-.76.5-1.2.61-.22.05-.45.08-.68.08h-.31c-.3-.01-.58.05-.86.15-.23.08-.45.18-.66.3-.19.11-.36.25-.52.4l-.21.21c-.4.42-.89.65-1.45.77-.26.06-.53.08-.8.07-.27-.01-.53-.07-.79-.16-.14-.06-.29-.12-.43-.18-.26-.11-.52-.17-.8-.18h-.53c-.27 0-.53.06-.79.16-.12.05-.24.1-.37.15-.51.22-1.04.25-1.59.16a2.78 2.78 0 01-1.17-.47c-.14-.09-.27-.2-.38-.32l-.21-.21c-.28-.31-.64-.5-1.02-.66-.1-.04-.21-.07-.31-.11-.21-.07-.43-.1-.66-.1-.21 0-.42 0-.64-.02a2.77 2.77 0 01-1.08-.33c-.47-.25-.86-.59-1.15-1.04-.08-.12-.14-.25-.2-.38-.05-.11-.09-.22-.14-.33-.17-.42-.46-.77-.8-1.07-.08-.07-.16-.13-.24-.2-.21-.16-.44-.27-.68-.36-.25-.1-.49-.21-.71-.38-.5-.38-.85-.87-1.06-1.45-.11-.3-.16-.61-.16-.93v-.38c0-.17-.02-.34-.06-.51-.11-.43-.28-.82-.54-1.18-.06-.09-.14-.17-.22-.24-.15-.15-.3-.29-.44-.46-.33-.41-.51-.88-.6-1.39-.03-.16-.04-.33-.04-.46zm12.98 11.56c.2.01.4-.02.58-.11.04-.02.07-.03.11-.05.55-.25 1.13-.37 1.74-.37h.26c.29 0 .57.04.85.1.3.06.58.17.86.3.24.11.48.14.74.13.38-.03.71-.16.99-.43.1-.1.2-.2.31-.3.08-.08.16-.15.25-.22.34-.26.71-.47 1.1-.63.55-.22 1.11-.36 1.71-.35h.34c.06 0 .13 0 .19-.02.51-.14.91-.42 1.12-.93.02-.05.04-.1.06-.14.09-.2.17-.4.28-.59.28-.46.62-.86 1.03-1.21.35-.3.74-.54 1.17-.71.08-.03.16-.07.24-.1.11-.04.21-.1.3-.17.39-.33.62-.73.62-1.25v-.45c0-.18.02-.36.06-.53.1-.54.3-1.05.57-1.53.17-.31.38-.6.64-.85l.24-.24c.17-.17.28-.38.35-.61l.06-.25a1.4 1.4 0 00-.07-.73c-.04-.11-.09-.22-.14-.33-.22-.51-.3-1.05-.32-1.59 0-.18 0-.37.03-.55.03-.3.08-.59.17-.88.06-.2.15-.4.23-.59.03-.08.06-.16.08-.24.05-.22.04-.43 0-.65-.06-.29-.17-.56-.4-.77l-.24-.24c-.12-.12-.23-.24-.33-.38-.31-.4-.53-.85-.69-1.32-.16-.45-.26-.92-.24-1.4v-.21c.01-.33-.08-.62-.26-.89-.17-.26-.39-.47-.68-.58-.09-.03-.17-.07-.26-.1-.26-.11-.52-.24-.76-.41a5.34 5.34 0 01-.96-.88c-.27-.31-.49-.65-.65-1.03-.04-.1-.08-.19-.12-.29-.1-.28-.27-.5-.51-.68-.21-.15-.43-.26-.69-.3-.11-.02-.23-.02-.34-.02-.25 0-.5 0-.76-.03-.77-.13-1.46-.41-2.1-.87-.23-.17-.43-.36-.62-.57-.19-.21-.43-.34-.71-.41a1.44 1.44 0 00-.98.06c-.04.02-.07.03-.11.05-.61.28-1.25.39-1.91.38-.13 0-.26-.02-.39-.03-.37-.03-.73-.1-1.07-.23-.14-.05-.28-.11-.41-.17-.47-.2-.92-.13-1.36.1-.11.06-.2.14-.28.22-.19.19-.38.38-.6.55-.57.43-1.2.71-1.89.87-.25.06-.5.09-.75.08h-.34c-.42 0-.77.15-1.08.42-.17.15-.29.32-.37.53-.09.24-.19.48-.32.7-.23.4-.52.74-.85 1.06-.39.37-.82.68-1.33.88-.1.04-.2.09-.3.13-.09.04-.18.09-.25.14-.21.15-.36.35-.48.58-.11.21-.17.43-.16.66v.4c0 .2-.02.39-.05.58-.1.58-.32 1.12-.61 1.64-.13.22-.28.42-.44.61-.13.15-.28.29-.42.43-.06.06-.12.11-.16.18-.26.45-.33.91-.15 1.4.02.06.05.12.07.17.16.36.27.74.32 1.14.02.17.02.33.04.5.01.1.01.19 0 .29 0 .06-.01.13-.01.19 0 .18-.03.35-.06.53-.06.37-.19.72-.34 1.06-.03.08-.07.16-.09.24-.09.37-.04.73.12 1.07.06.14.15.26.26.36l.28.28c.16.16.3.33.43.52.21.31.38.64.51.99.2.51.32 1.04.3 1.6v.31c0 .06 0 .12.01.17.09.53.53 1.05.95 1.18.09.03.17.07.26.1.16.07.32.15.48.24.63.38 1.13.87 1.54 1.48.19.27.32.57.43.88.1.26.26.47.47.64.27.22.57.36.93.35h.38c.18 0 .36.02.53.05.36.05.7.16 1.04.29.58.24 1.11.56 1.54 1.02.05.06.11.11.17.17.13.13.28.22.44.29.2.08.4.13.62.11z" />
8
+ <Path d="M23.42 9.32s-.01.03-.02.05c-.03.04-.07.08-.11.11L9.53 23.24c-.04.04-.08.08-.13.12-.03.03-.06.02-.09 0l-.06-.06c-.18-.18-.37-.36-.55-.55l-.06-.06c-.02-.03-.02-.06 0-.08l.12-.12 2.07-2.07 6.44-6.44 5.22-5.22c.05-.05.1-.1.15-.14.03-.03.07-.03.11 0l.06.06.54.54c.02.02.04.04.06.07 0 .01.01.03.02.05zM20.21 23.06c-1.57-.02-2.83-1.25-2.83-2.84a2.81 2.81 0 012.85-2.82c1.41-.03 2.8 1.13 2.83 2.82-.04 1.62-1.28 2.81-2.85 2.84zm1.78-2.84c.04-.97-.83-1.82-1.78-1.78-.86-.04-1.79.66-1.79 1.79 0 1 .81 1.78 1.79 1.79 1.01 0 1.82-.86 1.78-1.8zM8.94 11.78c.02-1.51 1.19-2.82 2.83-2.83 1.59 0 2.86 1.27 2.84 2.86-.02 1.56-1.25 2.81-2.85 2.8-1.6 0-2.81-1.28-2.82-2.84zm4.58 0c.02-.9-.71-1.79-1.79-1.79-1.03 0-1.78.85-1.79 1.78 0 .93.72 1.8 1.78 1.8s1.8-.85 1.79-1.79z" />
9
+ </Svg>
10
+ )
11
+ }
@@ -0,0 +1,19 @@
1
+ import React from 'react'
2
+ import Svg, { ClipPath, Defs, G, Path, SvgProps } from 'react-native-svg'
3
+ export default function OrderHistoryIcon(props: SvgProps) {
4
+ return (
5
+ <Svg width={24} height={25} viewBox="0 0 24 25" fill="none" {...props}>
6
+ <G clipPath="url(#clip0_1137_12983)">
7
+ <Path
8
+ d="M12 2.5c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10h2A8 8 0 105.385 8H8v2H2V4h2v2.5a9.98 9.98 0 018-4zm1 5v4.585l3.243 3.243-1.415 1.415L11 12.913V7.5h2z"
9
+ fill="#292B33"
10
+ />
11
+ </G>
12
+ <Defs>
13
+ <ClipPath id="clip0_1137_12983">
14
+ <Path fill="#fff" transform="translate(0 .5)" d="M0 0H24V24H0z" />
15
+ </ClipPath>
16
+ </Defs>
17
+ </Svg>
18
+ )
19
+ }