@thecb/components 7.1.0 → 7.1.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1020) hide show
  1. package/dist/.storybook/page.d.ts +13 -0
  2. package/dist/.storybook/page.js +41 -0
  3. package/dist/.storybook/themes/apc.theme.d.ts +79 -0
  4. package/dist/.storybook/themes/apc.theme.js +1 -0
  5. package/dist/.storybook/themes/index.d.ts +2 -0
  6. package/dist/.storybook/themes/index.js +2 -0
  7. package/dist/.storybook/themes/sf.theme.d.ts +231 -0
  8. package/dist/.storybook/themes/sf.theme.js +1 -0
  9. package/dist/button-with-action/ButtonWithActionProps.js +0 -0
  10. package/dist/button-with-link/ButtonWithLinkProps.js +1 -0
  11. package/dist/index.cjs.js +434 -158
  12. package/dist/index.cjs.js.map +1 -1
  13. package/dist/index.d.ts +1 -0
  14. package/dist/index.esm.js +432 -156
  15. package/dist/index.esm.js.map +1 -1
  16. package/dist/nav-tabs/TabConfig.js +0 -0
  17. package/dist/src/components/atoms/add-obligation/AddObligation.d.ts +5 -0
  18. package/dist/src/components/atoms/add-obligation/AddObligation.js +21 -0
  19. package/dist/src/components/atoms/add-obligation/AddObligation.stories.d.ts +7 -0
  20. package/dist/src/components/atoms/add-obligation/AddObligation.stories.js +10 -0
  21. package/dist/src/components/atoms/add-obligation/AddObligation.theme.d.ts +9 -0
  22. package/dist/src/components/atoms/add-obligation/AddObligation.theme.js +8 -0
  23. package/dist/src/components/atoms/add-obligation/index.d.ts +2 -0
  24. package/dist/src/components/atoms/add-obligation/index.js +2 -0
  25. package/dist/src/components/atoms/alert/Alert.d.ts +5 -0
  26. package/dist/src/components/atoms/alert/Alert.js +26 -0
  27. package/dist/src/components/atoms/alert/Alert.stories.d.ts +7 -0
  28. package/dist/src/components/atoms/alert/Alert.stories.js +19 -0
  29. package/dist/src/components/atoms/alert/Alert.theme.d.ts +65 -0
  30. package/dist/src/components/atoms/alert/Alert.theme.js +45 -0
  31. package/dist/src/components/atoms/alert/index.d.ts +2 -0
  32. package/dist/src/components/atoms/alert/index.js +2 -0
  33. package/dist/src/components/atoms/amount-callout/AmountCallout.d.ts +5 -0
  34. package/dist/src/components/atoms/amount-callout/AmountCallout.js +12 -0
  35. package/dist/src/components/atoms/amount-callout/AmountCallout.stories.d.ts +7 -0
  36. package/dist/src/components/atoms/amount-callout/AmountCallout.stories.js +18 -0
  37. package/dist/src/components/atoms/amount-callout/AmountCallout.theme.d.ts +5 -0
  38. package/dist/src/components/atoms/amount-callout/AmountCallout.theme.js +4 -0
  39. package/dist/src/components/atoms/amount-callout/index.d.ts +2 -0
  40. package/dist/src/components/atoms/amount-callout/index.js +2 -0
  41. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.d.ts +5 -0
  42. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.js +43 -0
  43. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.d.ts +5 -0
  44. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.js +5 -0
  45. package/dist/src/components/atoms/box-with-shadow/index.d.ts +2 -0
  46. package/dist/src/components/atoms/box-with-shadow/index.js +2 -0
  47. package/dist/src/components/atoms/breadcrumb/Breadcrumb.d.ts +4 -0
  48. package/dist/src/components/atoms/breadcrumb/Breadcrumb.js +22 -0
  49. package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.d.ts +7 -0
  50. package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.js +37 -0
  51. package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.d.ts +19 -0
  52. package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.js +24 -0
  53. package/dist/src/components/atoms/breadcrumb/index.d.ts +2 -0
  54. package/dist/src/components/atoms/breadcrumb/index.js +2 -0
  55. package/dist/src/components/atoms/button-with-action/ButtonWithAction.d.ts +15 -0
  56. package/dist/src/components/atoms/button-with-action/ButtonWithAction.js +86 -0
  57. package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.d.ts +7 -0
  58. package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.js +24 -0
  59. package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.d.ts +342 -0
  60. package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.js +202 -0
  61. package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.d.ts +14 -0
  62. package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.js +1 -0
  63. package/dist/src/components/atoms/button-with-action/index.d.ts +2 -0
  64. package/dist/src/components/atoms/button-with-action/index.js +2 -0
  65. package/dist/src/components/atoms/button-with-link/ButtonWithLink.d.ts +11 -0
  66. package/dist/src/components/atoms/button-with-link/ButtonWithLink.js +41 -0
  67. package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.d.ts +7 -0
  68. package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.js +21 -0
  69. package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.d.ts +10 -0
  70. package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.js +2 -0
  71. package/dist/src/components/atoms/button-with-link/index.d.ts +2 -0
  72. package/dist/src/components/atoms/button-with-link/index.js +2 -0
  73. package/dist/src/components/atoms/card/Card.d.ts +5 -0
  74. package/dist/src/components/atoms/card/Card.js +18 -0
  75. package/dist/src/components/atoms/card/Card.theme.d.ts +5 -0
  76. package/dist/src/components/atoms/card/Card.theme.js +5 -0
  77. package/dist/src/components/atoms/card/index.d.ts +2 -0
  78. package/dist/src/components/atoms/card/index.js +2 -0
  79. package/dist/src/components/atoms/checkbox/Checkbox.d.ts +5 -0
  80. package/dist/src/components/atoms/checkbox/Checkbox.js +52 -0
  81. package/dist/src/components/atoms/checkbox/Checkbox.stories.d.ts +7 -0
  82. package/dist/src/components/atoms/checkbox/Checkbox.stories.js +16 -0
  83. package/dist/src/components/atoms/checkbox/Checkbox.theme.d.ts +68 -0
  84. package/dist/src/components/atoms/checkbox/Checkbox.theme.js +39 -0
  85. package/dist/src/components/atoms/checkbox/index.d.ts +2 -0
  86. package/dist/src/components/atoms/checkbox/index.js +2 -0
  87. package/dist/src/components/atoms/checkbox-list/CheckboxList.d.ts +6 -0
  88. package/dist/src/components/atoms/checkbox-list/CheckboxList.js +40 -0
  89. package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.d.ts +7 -0
  90. package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.js +41 -0
  91. package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.d.ts +44 -0
  92. package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.js +33 -0
  93. package/dist/src/components/atoms/checkbox-list/index.d.ts +2 -0
  94. package/dist/src/components/atoms/checkbox-list/index.js +2 -0
  95. package/dist/src/components/atoms/country-dropdown/CountryDropdown.d.ts +9 -0
  96. package/dist/src/components/atoms/country-dropdown/CountryDropdown.js +8 -0
  97. package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.d.ts +7 -0
  98. package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.js +31 -0
  99. package/dist/src/components/atoms/country-dropdown/index.d.ts +1 -0
  100. package/dist/src/components/atoms/country-dropdown/index.js +1 -0
  101. package/dist/src/components/atoms/country-dropdown/options.d.ts +4 -0
  102. package/dist/src/components/atoms/country-dropdown/options.js +249 -0
  103. package/dist/src/components/atoms/detail/Detail.d.ts +5 -0
  104. package/dist/src/components/atoms/detail/Detail.js +63 -0
  105. package/dist/src/components/atoms/detail/Detail.styled.d.ts +1 -0
  106. package/dist/src/components/atoms/detail/Detail.styled.js +28 -0
  107. package/dist/src/components/atoms/detail/Detail.theme.d.ts +36 -0
  108. package/dist/src/components/atoms/detail/Detail.theme.js +28 -0
  109. package/dist/src/components/atoms/detail/index.d.ts +2 -0
  110. package/dist/src/components/atoms/detail/index.js +2 -0
  111. package/dist/src/components/atoms/display-box/DisplayBox.d.ts +5 -0
  112. package/dist/src/components/atoms/display-box/DisplayBox.js +11 -0
  113. package/dist/src/components/atoms/display-box/DisplayBox.stories.d.ts +7 -0
  114. package/dist/src/components/atoms/display-box/DisplayBox.stories.js +12 -0
  115. package/dist/src/components/atoms/display-box/DisplayBox.theme.d.ts +7 -0
  116. package/dist/src/components/atoms/display-box/DisplayBox.theme.js +7 -0
  117. package/dist/src/components/atoms/display-box/index.d.ts +2 -0
  118. package/dist/src/components/atoms/display-box/index.js +2 -0
  119. package/dist/src/components/atoms/display-card/DisplayCard.d.ts +9 -0
  120. package/dist/src/components/atoms/display-card/DisplayCard.js +22 -0
  121. package/dist/src/components/atoms/display-card/DisplayCard.stories.d.ts +7 -0
  122. package/dist/src/components/atoms/display-card/DisplayCard.stories.js +10 -0
  123. package/dist/src/components/atoms/display-card/index.d.ts +2 -0
  124. package/dist/src/components/atoms/display-card/index.js +2 -0
  125. package/dist/src/components/atoms/dropdown/Dropdown.d.ts +5 -0
  126. package/dist/src/components/atoms/dropdown/Dropdown.js +258 -0
  127. package/dist/src/components/atoms/dropdown/Dropdown.stories.d.ts +7 -0
  128. package/dist/src/components/atoms/dropdown/Dropdown.stories.js +30 -0
  129. package/dist/src/components/atoms/dropdown/Dropdown.theme.d.ts +7 -0
  130. package/dist/src/components/atoms/dropdown/Dropdown.theme.js +7 -0
  131. package/dist/src/components/atoms/dropdown/DropdownIcon.d.ts +2 -0
  132. package/dist/src/components/atoms/dropdown/DropdownIcon.js +7 -0
  133. package/dist/src/components/atoms/dropdown/index.d.ts +2 -0
  134. package/dist/src/components/atoms/dropdown/index.js +2 -0
  135. package/dist/src/components/atoms/form-layouts/FormContainer.d.ts +5 -0
  136. package/dist/src/components/atoms/form-layouts/FormContainer.js +34 -0
  137. package/dist/src/components/atoms/form-layouts/FormFooterPanel.d.ts +5 -0
  138. package/dist/src/components/atoms/form-layouts/FormFooterPanel.js +15 -0
  139. package/dist/src/components/atoms/form-layouts/FormInput.d.ts +5 -0
  140. package/dist/src/components/atoms/form-layouts/FormInput.js +116 -0
  141. package/dist/src/components/atoms/form-layouts/FormInputColumn.d.ts +7 -0
  142. package/dist/src/components/atoms/form-layouts/FormInputColumn.js +29 -0
  143. package/dist/src/components/atoms/form-layouts/FormInputRow.d.ts +9 -0
  144. package/dist/src/components/atoms/form-layouts/FormInputRow.js +30 -0
  145. package/dist/src/components/atoms/form-layouts/FormLayouts.stories.d.ts +7 -0
  146. package/dist/src/components/atoms/form-layouts/FormLayouts.stories.js +38 -0
  147. package/dist/src/components/atoms/form-layouts/FormLayouts.theme.d.ts +86 -0
  148. package/dist/src/components/atoms/form-layouts/FormLayouts.theme.js +44 -0
  149. package/dist/src/components/atoms/form-layouts/index.d.ts +6 -0
  150. package/dist/src/components/atoms/form-layouts/index.js +6 -0
  151. package/dist/src/components/atoms/form-select/FormSelect.d.ts +5 -0
  152. package/dist/src/components/atoms/form-select/FormSelect.js +36 -0
  153. package/dist/src/components/atoms/form-select/FormSelect.stories.d.ts +7 -0
  154. package/dist/src/components/atoms/form-select/FormSelect.stories.js +36 -0
  155. package/dist/src/components/atoms/form-select/FormSelect.styled.d.ts +3 -0
  156. package/dist/src/components/atoms/form-select/FormSelect.styled.js +22 -0
  157. package/dist/src/components/atoms/form-select/FormSelect.theme.d.ts +81 -0
  158. package/dist/src/components/atoms/form-select/FormSelect.theme.js +40 -0
  159. package/dist/src/components/atoms/form-select/index.d.ts +2 -0
  160. package/dist/src/components/atoms/form-select/index.js +2 -0
  161. package/dist/src/components/atoms/formatted-address/FormattedAddress.d.ts +5 -0
  162. package/dist/src/components/atoms/formatted-address/FormattedAddress.js +22 -0
  163. package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.d.ts +7 -0
  164. package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.js +18 -0
  165. package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.d.ts +23 -0
  166. package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.js +9 -0
  167. package/dist/src/components/atoms/formatted-address/index.d.ts +2 -0
  168. package/dist/src/components/atoms/formatted-address/index.js +2 -0
  169. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.d.ts +7 -0
  170. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +47 -0
  171. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.d.ts +7 -0
  172. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +7 -0
  173. package/dist/src/components/atoms/formatted-credit-card/index.d.ts +2 -0
  174. package/dist/src/components/atoms/formatted-credit-card/index.js +2 -0
  175. package/dist/src/components/atoms/hamburger-button/HamburgerButton.d.ts +8 -0
  176. package/dist/src/components/atoms/hamburger-button/HamburgerButton.js +27 -0
  177. package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.d.ts +7 -0
  178. package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.js +11 -0
  179. package/dist/src/components/atoms/hamburger-button/index.d.ts +2 -0
  180. package/dist/src/components/atoms/hamburger-button/index.js +2 -0
  181. package/dist/src/components/atoms/heading/Heading.d.ts +5 -0
  182. package/dist/src/components/atoms/heading/Heading.js +40 -0
  183. package/dist/src/components/atoms/heading/Heading.stories.d.ts +7 -0
  184. package/dist/src/components/atoms/heading/Heading.stories.js +10 -0
  185. package/dist/src/components/atoms/heading/Heading.styled.d.ts +1 -0
  186. package/dist/src/components/atoms/heading/Heading.styled.js +28 -0
  187. package/dist/src/components/atoms/heading/Heading.theme.d.ts +17 -0
  188. package/dist/src/components/atoms/heading/Heading.theme.js +16 -0
  189. package/dist/src/components/atoms/heading/index.d.ts +2 -0
  190. package/dist/src/components/atoms/heading/index.js +2 -0
  191. package/dist/src/components/atoms/icons/AccountNumberImage.d.ts +2 -0
  192. package/dist/src/components/atoms/icons/AccountNumberImage.js +20 -0
  193. package/dist/src/components/atoms/icons/AccountsAddIcon.d.ts +5 -0
  194. package/dist/src/components/atoms/icons/AccountsAddIcon.js +16 -0
  195. package/dist/src/components/atoms/icons/AccountsIcon.d.ts +5 -0
  196. package/dist/src/components/atoms/icons/AccountsIcon.js +15 -0
  197. package/dist/src/components/atoms/icons/AccountsIconSmall.d.ts +5 -0
  198. package/dist/src/components/atoms/icons/AccountsIconSmall.js +20 -0
  199. package/dist/src/components/atoms/icons/AchReturnIcon.d.ts +2 -0
  200. package/dist/src/components/atoms/icons/AchReturnIcon.js +6 -0
  201. package/dist/src/components/atoms/icons/AllocatedIcon.d.ts +2 -0
  202. package/dist/src/components/atoms/icons/AllocatedIcon.js +6 -0
  203. package/dist/src/components/atoms/icons/AutopayOnIcon.d.ts +2 -0
  204. package/dist/src/components/atoms/icons/AutopayOnIcon.js +6 -0
  205. package/dist/src/components/atoms/icons/BankIcon.d.ts +2 -0
  206. package/dist/src/components/atoms/icons/BankIcon.js +7 -0
  207. package/dist/src/components/atoms/icons/CalendarIcon.d.ts +2 -0
  208. package/dist/src/components/atoms/icons/CalendarIcon.js +6 -0
  209. package/dist/src/components/atoms/icons/CarrotIcon.d.ts +5 -0
  210. package/dist/src/components/atoms/icons/CarrotIcon.js +20 -0
  211. package/dist/src/components/atoms/icons/CashIcon.d.ts +2 -0
  212. package/dist/src/components/atoms/icons/CashIcon.js +7 -0
  213. package/dist/src/components/atoms/icons/ChargebackIcon.d.ts +2 -0
  214. package/dist/src/components/atoms/icons/ChargebackIcon.js +6 -0
  215. package/dist/src/components/atoms/icons/ChargebackReversalIcon.d.ts +2 -0
  216. package/dist/src/components/atoms/icons/ChargebackReversalIcon.js +6 -0
  217. package/dist/src/components/atoms/icons/CheckIcon.d.ts +2 -0
  218. package/dist/src/components/atoms/icons/CheckIcon.js +12 -0
  219. package/dist/src/components/atoms/icons/CheckmarkIcon.d.ts +2 -0
  220. package/dist/src/components/atoms/icons/CheckmarkIcon.js +12 -0
  221. package/dist/src/components/atoms/icons/ChevronIcon.d.ts +5 -0
  222. package/dist/src/components/atoms/icons/ChevronIcon.js +16 -0
  223. package/dist/src/components/atoms/icons/CustomerSearchIcon.d.ts +2 -0
  224. package/dist/src/components/atoms/icons/CustomerSearchIcon.js +22 -0
  225. package/dist/src/components/atoms/icons/DuplicateIcon.d.ts +2 -0
  226. package/dist/src/components/atoms/icons/DuplicateIcon.js +6 -0
  227. package/dist/src/components/atoms/icons/EmptyCartIcon.d.ts +5 -0
  228. package/dist/src/components/atoms/icons/EmptyCartIcon.js +13 -0
  229. package/dist/src/components/atoms/icons/ErroredIcon.d.ts +2 -0
  230. package/dist/src/components/atoms/icons/ErroredIcon.js +6 -0
  231. package/dist/src/components/atoms/icons/ExternalLinkIcon.d.ts +5 -0
  232. package/dist/src/components/atoms/icons/ExternalLinkIcon.js +11 -0
  233. package/dist/src/components/atoms/icons/FailedIcon.d.ts +2 -0
  234. package/dist/src/components/atoms/icons/FailedIcon.js +6 -0
  235. package/dist/src/components/atoms/icons/ForgotPasswordIcon.d.ts +5 -0
  236. package/dist/src/components/atoms/icons/ForgotPasswordIcon.js +17 -0
  237. package/dist/src/components/atoms/icons/GenericCard.d.ts +2 -0
  238. package/dist/src/components/atoms/icons/GenericCard.js +6 -0
  239. package/dist/src/components/atoms/icons/GenericCardLarge.d.ts +2 -0
  240. package/dist/src/components/atoms/icons/GenericCardLarge.js +8 -0
  241. package/dist/src/components/atoms/icons/GoToEmailIcon.d.ts +5 -0
  242. package/dist/src/components/atoms/icons/GoToEmailIcon.js +16 -0
  243. package/dist/src/components/atoms/icons/IconAdd.d.ts +2 -0
  244. package/dist/src/components/atoms/icons/IconAdd.js +14 -0
  245. package/dist/src/components/atoms/icons/IconQuitLarge.d.ts +4 -0
  246. package/dist/src/components/atoms/icons/IconQuitLarge.js +19 -0
  247. package/dist/src/components/atoms/icons/Icons.theme.d.ts +33 -0
  248. package/dist/src/components/atoms/icons/Icons.theme.js +27 -0
  249. package/dist/src/components/atoms/icons/NoCustomerResultsIcon.d.ts +2 -0
  250. package/dist/src/components/atoms/icons/NoCustomerResultsIcon.js +15 -0
  251. package/dist/src/components/atoms/icons/NoPaymentResultsIcon.d.ts +2 -0
  252. package/dist/src/components/atoms/icons/NoPaymentResultsIcon.js +16 -0
  253. package/dist/src/components/atoms/icons/NotFoundIcon.d.ts +2 -0
  254. package/dist/src/components/atoms/icons/NotFoundIcon.js +56 -0
  255. package/dist/src/components/atoms/icons/PaymentIcon.d.ts +8 -0
  256. package/dist/src/components/atoms/icons/PaymentIcon.js +30 -0
  257. package/dist/src/components/atoms/icons/PaymentMethodAddIcon.d.ts +5 -0
  258. package/dist/src/components/atoms/icons/PaymentMethodAddIcon.js +28 -0
  259. package/dist/src/components/atoms/icons/PaymentMethodIcon.d.ts +5 -0
  260. package/dist/src/components/atoms/icons/PaymentMethodIcon.js +15 -0
  261. package/dist/src/components/atoms/icons/PaymentSearchIcon.d.ts +2 -0
  262. package/dist/src/components/atoms/icons/PaymentSearchIcon.js +23 -0
  263. package/dist/src/components/atoms/icons/PaymentsIconSmall.d.ts +5 -0
  264. package/dist/src/components/atoms/icons/PaymentsIconSmall.js +20 -0
  265. package/dist/src/components/atoms/icons/PendingIcon.d.ts +2 -0
  266. package/dist/src/components/atoms/icons/PendingIcon.js +6 -0
  267. package/dist/src/components/atoms/icons/PeriscopeFailedIcon.d.ts +2 -0
  268. package/dist/src/components/atoms/icons/PeriscopeFailedIcon.js +56 -0
  269. package/dist/src/components/atoms/icons/ProfileIcon.d.ts +5 -0
  270. package/dist/src/components/atoms/icons/ProfileIcon.js +16 -0
  271. package/dist/src/components/atoms/icons/ProfileIconSmall.d.ts +5 -0
  272. package/dist/src/components/atoms/icons/ProfileIconSmall.js +12 -0
  273. package/dist/src/components/atoms/icons/PropertiesAddIcon.d.ts +5 -0
  274. package/dist/src/components/atoms/icons/PropertiesAddIcon.js +31 -0
  275. package/dist/src/components/atoms/icons/PropertiesIconSmall.d.ts +5 -0
  276. package/dist/src/components/atoms/icons/PropertiesIconSmall.js +10 -0
  277. package/dist/src/components/atoms/icons/RefundIcon.d.ts +2 -0
  278. package/dist/src/components/atoms/icons/RefundIcon.js +6 -0
  279. package/dist/src/components/atoms/icons/RejectedIcon.d.ts +2 -0
  280. package/dist/src/components/atoms/icons/RejectedIcon.js +6 -0
  281. package/dist/src/components/atoms/icons/RejectedVelocityIcon.d.ts +2 -0
  282. package/dist/src/components/atoms/icons/RejectedVelocityIcon.js +6 -0
  283. package/dist/src/components/atoms/icons/ResetPasswordIcon.d.ts +2 -0
  284. package/dist/src/components/atoms/icons/ResetPasswordIcon.js +16 -0
  285. package/dist/src/components/atoms/icons/RoutingNumberImage.d.ts +2 -0
  286. package/dist/src/components/atoms/icons/RoutingNumberImage.js +20 -0
  287. package/dist/src/components/atoms/icons/SearchIcon.d.ts +2 -0
  288. package/dist/src/components/atoms/icons/SearchIcon.js +10 -0
  289. package/dist/src/components/atoms/icons/SettingsIconSmall.d.ts +5 -0
  290. package/dist/src/components/atoms/icons/SettingsIconSmall.js +20 -0
  291. package/dist/src/components/atoms/icons/ShoppingCartIcon.d.ts +2 -0
  292. package/dist/src/components/atoms/icons/ShoppingCartIcon.js +11 -0
  293. package/dist/src/components/atoms/icons/StatusUnknownIcon.d.ts +2 -0
  294. package/dist/src/components/atoms/icons/StatusUnknownIcon.js +6 -0
  295. package/dist/src/components/atoms/icons/SuccessfulIcon.d.ts +2 -0
  296. package/dist/src/components/atoms/icons/SuccessfulIcon.js +6 -0
  297. package/dist/src/components/atoms/icons/TimeoutImage.d.ts +2 -0
  298. package/dist/src/components/atoms/icons/TimeoutImage.js +38 -0
  299. package/dist/src/components/atoms/icons/TrashIcon.d.ts +5 -0
  300. package/dist/src/components/atoms/icons/TrashIcon.js +15 -0
  301. package/dist/src/components/atoms/icons/VerifiedEmailIcon.d.ts +5 -0
  302. package/dist/src/components/atoms/icons/VerifiedEmailIcon.js +19 -0
  303. package/dist/src/components/atoms/icons/VoidedIcon.d.ts +2 -0
  304. package/dist/src/components/atoms/icons/VoidedIcon.js +6 -0
  305. package/dist/src/components/atoms/icons/WalletIcon.d.ts +5 -0
  306. package/dist/src/components/atoms/icons/WalletIcon.js +16 -0
  307. package/dist/src/components/atoms/icons/WarningIconXS.d.ts +2 -0
  308. package/dist/src/components/atoms/icons/WarningIconXS.js +13 -0
  309. package/dist/src/components/atoms/icons/icons.stories.d.ts +42 -0
  310. package/dist/src/components/atoms/icons/icons.stories.js +44 -0
  311. package/dist/src/components/atoms/icons/index.d.ts +59 -0
  312. package/dist/src/components/atoms/icons/index.js +59 -0
  313. package/dist/src/components/atoms/index.d.ts +45 -0
  314. package/dist/src/components/atoms/index.js +45 -0
  315. package/dist/src/components/atoms/jumbo/Jumbo.d.ts +4 -0
  316. package/dist/src/components/atoms/jumbo/Jumbo.js +25 -0
  317. package/dist/src/components/atoms/jumbo/index.d.ts +2 -0
  318. package/dist/src/components/atoms/jumbo/index.js +2 -0
  319. package/dist/src/components/atoms/labeled-amount/LabeledAmount.d.ts +5 -0
  320. package/dist/src/components/atoms/labeled-amount/LabeledAmount.js +16 -0
  321. package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.d.ts +7 -0
  322. package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.js +20 -0
  323. package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.d.ts +12 -0
  324. package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.js +10 -0
  325. package/dist/src/components/atoms/labeled-amount/index.d.ts +2 -0
  326. package/dist/src/components/atoms/labeled-amount/index.js +2 -0
  327. package/dist/src/components/atoms/layouts/Box.d.ts +3 -0
  328. package/dist/src/components/atoms/layouts/Box.js +37 -0
  329. package/dist/src/components/atoms/layouts/Box.styled.d.ts +1 -0
  330. package/dist/src/components/atoms/layouts/Box.styled.js +107 -0
  331. package/dist/src/components/atoms/layouts/Center.d.ts +8 -0
  332. package/dist/src/components/atoms/layouts/Center.js +35 -0
  333. package/dist/src/components/atoms/layouts/Center.styled.d.ts +1 -0
  334. package/dist/src/components/atoms/layouts/Center.styled.js +21 -0
  335. package/dist/src/components/atoms/layouts/Cluster.d.ts +16 -0
  336. package/dist/src/components/atoms/layouts/Cluster.js +39 -0
  337. package/dist/src/components/atoms/layouts/Cluster.styled.d.ts +2 -0
  338. package/dist/src/components/atoms/layouts/Cluster.styled.js +71 -0
  339. package/dist/src/components/atoms/layouts/Cover.d.ts +11 -0
  340. package/dist/src/components/atoms/layouts/Cover.js +52 -0
  341. package/dist/src/components/atoms/layouts/Cover.styled.d.ts +1 -0
  342. package/dist/src/components/atoms/layouts/Cover.styled.js +30 -0
  343. package/dist/src/components/atoms/layouts/Frame.d.ts +7 -0
  344. package/dist/src/components/atoms/layouts/Frame.js +42 -0
  345. package/dist/src/components/atoms/layouts/Frame.styled.d.ts +1 -0
  346. package/dist/src/components/atoms/layouts/Frame.styled.js +10 -0
  347. package/dist/src/components/atoms/layouts/Grid.d.ts +8 -0
  348. package/dist/src/components/atoms/layouts/Grid.js +38 -0
  349. package/dist/src/components/atoms/layouts/Grid.styled.d.ts +1 -0
  350. package/dist/src/components/atoms/layouts/Grid.styled.js +24 -0
  351. package/dist/src/components/atoms/layouts/Imposter.d.ts +13 -0
  352. package/dist/src/components/atoms/layouts/Imposter.js +49 -0
  353. package/dist/src/components/atoms/layouts/Imposter.styled.d.ts +1 -0
  354. package/dist/src/components/atoms/layouts/Imposter.styled.js +30 -0
  355. package/dist/src/components/atoms/layouts/Motion.d.ts +7 -0
  356. package/dist/src/components/atoms/layouts/Motion.js +64 -0
  357. package/dist/src/components/atoms/layouts/Motion.styled.d.ts +1 -0
  358. package/dist/src/components/atoms/layouts/Motion.styled.js +71 -0
  359. package/dist/src/components/atoms/layouts/Reel.d.ts +13 -0
  360. package/dist/src/components/atoms/layouts/Reel.js +36 -0
  361. package/dist/src/components/atoms/layouts/Reel.styled.d.ts +1 -0
  362. package/dist/src/components/atoms/layouts/Reel.styled.js +30 -0
  363. package/dist/src/components/atoms/layouts/Sidebar.d.ts +11 -0
  364. package/dist/src/components/atoms/layouts/Sidebar.js +43 -0
  365. package/dist/src/components/atoms/layouts/Sidebar.styled.d.ts +2 -0
  366. package/dist/src/components/atoms/layouts/Sidebar.styled.js +59 -0
  367. package/dist/src/components/atoms/layouts/Stack.d.ts +10 -0
  368. package/dist/src/components/atoms/layouts/Stack.js +39 -0
  369. package/dist/src/components/atoms/layouts/Stack.styled.d.ts +1 -0
  370. package/dist/src/components/atoms/layouts/Stack.styled.js +26 -0
  371. package/dist/src/components/atoms/layouts/Switcher.d.ts +14 -0
  372. package/dist/src/components/atoms/layouts/Switcher.js +62 -0
  373. package/dist/src/components/atoms/layouts/Switcher.styled.d.ts +2 -0
  374. package/dist/src/components/atoms/layouts/Switcher.styled.js +42 -0
  375. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.d.ts +9 -0
  376. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.js +12 -0
  377. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.d.ts +2 -0
  378. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.js +21 -0
  379. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.d.ts +11 -0
  380. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.js +9 -0
  381. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.d.ts +1 -0
  382. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.js +25 -0
  383. package/dist/src/components/atoms/layouts/examples/ResizingContainer.d.ts +9 -0
  384. package/dist/src/components/atoms/layouts/examples/ResizingContainer.js +26 -0
  385. package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.d.ts +2 -0
  386. package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.js +23 -0
  387. package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.d.ts +7 -0
  388. package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.js +19 -0
  389. package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.d.ts +7 -0
  390. package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.js +13 -0
  391. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.d.ts +6 -0
  392. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.js +7 -0
  393. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.d.ts +21 -0
  394. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.js +43 -0
  395. package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.d.ts +15 -0
  396. package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.js +18 -0
  397. package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.d.ts +7 -0
  398. package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.js +12 -0
  399. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.d.ts +7 -0
  400. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.js +32 -0
  401. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.d.ts +11 -0
  402. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.js +26 -0
  403. package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.d.ts +7 -0
  404. package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.js +14 -0
  405. package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.d.ts +7 -0
  406. package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.js +41 -0
  407. package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.d.ts +7 -0
  408. package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.js +21 -0
  409. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.d.ts +7 -0
  410. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.js +7 -0
  411. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.d.ts +11 -0
  412. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.js +41 -0
  413. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.d.ts +7 -0
  414. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.js +26 -0
  415. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.d.ts +21 -0
  416. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.js +26 -0
  417. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.d.ts +8 -0
  418. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.js +26 -0
  419. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.d.ts +16 -0
  420. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.js +30 -0
  421. package/dist/src/components/atoms/layouts/index.d.ts +13 -0
  422. package/dist/src/components/atoms/layouts/index.js +13 -0
  423. package/dist/src/components/atoms/line-item/LineItem.d.ts +5 -0
  424. package/dist/src/components/atoms/line-item/LineItem.js +14 -0
  425. package/dist/src/components/atoms/line-item/LineItem.stories.d.ts +7 -0
  426. package/dist/src/components/atoms/line-item/LineItem.stories.js +10 -0
  427. package/dist/src/components/atoms/line-item/LineItem.theme.d.ts +16 -0
  428. package/dist/src/components/atoms/line-item/LineItem.theme.js +6 -0
  429. package/dist/src/components/atoms/line-item/index.d.ts +2 -0
  430. package/dist/src/components/atoms/line-item/index.js +2 -0
  431. package/dist/src/components/atoms/link/ExternalLink.d.ts +14 -0
  432. package/dist/src/components/atoms/link/ExternalLink.js +14 -0
  433. package/dist/src/components/atoms/link/ExternalLink.styled.d.ts +1 -0
  434. package/dist/src/components/atoms/link/ExternalLink.styled.js +64 -0
  435. package/dist/src/components/atoms/link/InternalLink.d.ts +15 -0
  436. package/dist/src/components/atoms/link/InternalLink.js +13 -0
  437. package/dist/src/components/atoms/link/InternalLink.styled.d.ts +1 -0
  438. package/dist/src/components/atoms/link/InternalLink.styled.js +68 -0
  439. package/dist/src/components/atoms/link/Link.stories.d.ts +8 -0
  440. package/dist/src/components/atoms/link/Link.stories.js +26 -0
  441. package/dist/src/components/atoms/link/Link.theme.d.ts +14 -0
  442. package/dist/src/components/atoms/link/Link.theme.js +13 -0
  443. package/dist/src/components/atoms/link/index.d.ts +3 -0
  444. package/dist/src/components/atoms/link/index.js +3 -0
  445. package/dist/src/components/atoms/loading/Loading.d.ts +2 -0
  446. package/dist/src/components/atoms/loading/Loading.js +9 -0
  447. package/dist/src/components/atoms/loading/index.d.ts +2 -0
  448. package/dist/src/components/atoms/loading/index.js +2 -0
  449. package/dist/src/components/atoms/nav-footer/NavFooter.d.ts +13 -0
  450. package/dist/src/components/atoms/nav-footer/NavFooter.js +38 -0
  451. package/dist/src/components/atoms/nav-footer/NavFooter.stories.d.ts +7 -0
  452. package/dist/src/components/atoms/nav-footer/NavFooter.stories.js +13 -0
  453. package/dist/src/components/atoms/nav-footer/index.d.ts +2 -0
  454. package/dist/src/components/atoms/nav-footer/index.js +2 -0
  455. package/dist/src/components/atoms/nav-header/NavHeader.d.ts +10 -0
  456. package/dist/src/components/atoms/nav-header/NavHeader.js +37 -0
  457. package/dist/src/components/atoms/nav-header/NavHeader.stories.d.ts +7 -0
  458. package/dist/src/components/atoms/nav-header/NavHeader.stories.js +13 -0
  459. package/dist/src/components/atoms/nav-header/index.d.ts +2 -0
  460. package/dist/src/components/atoms/nav-header/index.js +2 -0
  461. package/dist/src/components/atoms/nav-tabs/NavTab.d.ts +5 -0
  462. package/dist/src/components/atoms/nav-tabs/NavTab.js +20 -0
  463. package/dist/src/components/atoms/nav-tabs/NavTab.theme.d.ts +9 -0
  464. package/dist/src/components/atoms/nav-tabs/NavTab.theme.js +9 -0
  465. package/dist/src/components/atoms/nav-tabs/NavTabs.d.ts +4 -0
  466. package/dist/src/components/atoms/nav-tabs/NavTabs.js +27 -0
  467. package/dist/src/components/atoms/nav-tabs/TabConfig.d.ts +4 -0
  468. package/dist/src/components/atoms/nav-tabs/TabConfig.js +1 -0
  469. package/dist/src/components/atoms/nav-tabs/index.d.ts +1 -0
  470. package/dist/src/components/atoms/nav-tabs/index.js +2 -0
  471. package/dist/src/components/atoms/paragraph/Paragraph.d.ts +5 -0
  472. package/dist/src/components/atoms/paragraph/Paragraph.js +40 -0
  473. package/dist/src/components/atoms/paragraph/Paragraph.stories.d.ts +7 -0
  474. package/dist/src/components/atoms/paragraph/Paragraph.stories.js +17 -0
  475. package/dist/src/components/atoms/paragraph/Paragraph.styled.d.ts +1 -0
  476. package/dist/src/components/atoms/paragraph/Paragraph.styled.js +25 -0
  477. package/dist/src/components/atoms/paragraph/Paragraph.theme.d.ts +27 -0
  478. package/dist/src/components/atoms/paragraph/Paragraph.theme.js +21 -0
  479. package/dist/src/components/atoms/paragraph/index.d.ts +2 -0
  480. package/dist/src/components/atoms/paragraph/index.js +2 -0
  481. package/dist/src/components/atoms/password-requirements/PasswordRequirements.d.ts +5 -0
  482. package/dist/src/components/atoms/password-requirements/PasswordRequirements.js +59 -0
  483. package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.d.ts +7 -0
  484. package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.js +46 -0
  485. package/dist/src/components/atoms/password-requirements/index.d.ts +2 -0
  486. package/dist/src/components/atoms/password-requirements/index.js +2 -0
  487. package/dist/src/components/atoms/placeholder/Placeholder.d.ts +5 -0
  488. package/dist/src/components/atoms/placeholder/Placeholder.js +33 -0
  489. package/dist/src/components/atoms/placeholder/Placeholder.stories.d.ts +7 -0
  490. package/dist/src/components/atoms/placeholder/Placeholder.stories.js +23 -0
  491. package/dist/src/components/atoms/placeholder/Placeholder.theme.d.ts +16 -0
  492. package/dist/src/components/atoms/placeholder/Placeholder.theme.js +7 -0
  493. package/dist/src/components/atoms/placeholder/index.d.ts +2 -0
  494. package/dist/src/components/atoms/placeholder/index.js +2 -0
  495. package/dist/src/components/atoms/processing-fee/ProcessingFee.d.ts +5 -0
  496. package/dist/src/components/atoms/processing-fee/ProcessingFee.js +15 -0
  497. package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.d.ts +7 -0
  498. package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.js +17 -0
  499. package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.d.ts +8 -0
  500. package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.js +5 -0
  501. package/dist/src/components/atoms/processing-fee/index.d.ts +2 -0
  502. package/dist/src/components/atoms/processing-fee/index.js +2 -0
  503. package/dist/src/components/atoms/radio-button/RadioButton.d.ts +5 -0
  504. package/dist/src/components/atoms/radio-button/RadioButton.js +68 -0
  505. package/dist/src/components/atoms/radio-button/RadioButton.stories.d.ts +7 -0
  506. package/dist/src/components/atoms/radio-button/RadioButton.stories.js +16 -0
  507. package/dist/src/components/atoms/radio-button/RadioButton.theme.d.ts +7 -0
  508. package/dist/src/components/atoms/radio-button/RadioButton.theme.js +7 -0
  509. package/dist/src/components/atoms/radio-button/index.d.ts +2 -0
  510. package/dist/src/components/atoms/radio-button/index.js +2 -0
  511. package/dist/src/components/atoms/searchable-select/SearchableSelect.d.ts +5 -0
  512. package/dist/src/components/atoms/searchable-select/SearchableSelect.js +37 -0
  513. package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.d.ts +8 -0
  514. package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.js +6 -0
  515. package/dist/src/components/atoms/searchable-select/index.d.ts +2 -0
  516. package/dist/src/components/atoms/searchable-select/index.js +2 -0
  517. package/dist/src/components/atoms/solid-divider/SolidDivider.d.ts +5 -0
  518. package/dist/src/components/atoms/solid-divider/SolidDivider.js +9 -0
  519. package/dist/src/components/atoms/solid-divider/SolidDivider.stories.d.ts +7 -0
  520. package/dist/src/components/atoms/solid-divider/SolidDivider.stories.js +9 -0
  521. package/dist/src/components/atoms/solid-divider/SolidDivider.theme.d.ts +13 -0
  522. package/dist/src/components/atoms/solid-divider/SolidDivider.theme.js +7 -0
  523. package/dist/src/components/atoms/solid-divider/index.d.ts +2 -0
  524. package/dist/src/components/atoms/solid-divider/index.js +2 -0
  525. package/dist/src/components/atoms/spinner/Spinner.d.ts +6 -0
  526. package/dist/src/components/atoms/spinner/Spinner.js +27 -0
  527. package/dist/src/components/atoms/spinner/Spinner.stories.d.ts +7 -0
  528. package/dist/src/components/atoms/spinner/Spinner.stories.js +12 -0
  529. package/dist/src/components/atoms/spinner/Spinner.theme.d.ts +5 -0
  530. package/dist/src/components/atoms/spinner/Spinner.theme.js +4 -0
  531. package/dist/src/components/atoms/spinner/index.d.ts +2 -0
  532. package/dist/src/components/atoms/spinner/index.js +2 -0
  533. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.d.ts +10 -0
  534. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.js +19 -0
  535. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.d.ts +7 -0
  536. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +30 -0
  537. package/dist/src/components/atoms/state-province-dropdown/index.d.ts +2 -0
  538. package/dist/src/components/atoms/state-province-dropdown/index.js +2 -0
  539. package/dist/src/components/atoms/state-province-dropdown/options.d.ts +11 -0
  540. package/dist/src/components/atoms/state-province-dropdown/options.js +3837 -0
  541. package/dist/src/components/atoms/tab/Tab.d.ts +6 -0
  542. package/dist/src/components/atoms/tab/Tab.js +17 -0
  543. package/dist/src/components/atoms/tab/Tab.stories.d.ts +7 -0
  544. package/dist/src/components/atoms/tab/Tab.stories.js +9 -0
  545. package/dist/src/components/atoms/tab/Tab.theme.d.ts +27 -0
  546. package/dist/src/components/atoms/tab/Tab.theme.js +23 -0
  547. package/dist/src/components/atoms/tab/index.d.ts +2 -0
  548. package/dist/src/components/atoms/tab/index.js +2 -0
  549. package/dist/src/components/atoms/text/Text.d.ts +5 -0
  550. package/dist/src/components/atoms/text/Text.js +34 -0
  551. package/dist/src/components/atoms/text/Text.stories.d.ts +7 -0
  552. package/dist/src/components/atoms/text/Text.stories.js +17 -0
  553. package/dist/src/components/atoms/text/Text.styled.d.ts +1 -0
  554. package/dist/src/components/atoms/text/Text.styled.js +32 -0
  555. package/dist/src/components/atoms/text/Text.theme.d.ts +27 -0
  556. package/dist/src/components/atoms/text/Text.theme.js +24 -0
  557. package/dist/src/components/atoms/text/index.d.ts +2 -0
  558. package/dist/src/components/atoms/text/index.js +2 -0
  559. package/dist/src/components/atoms/title/Title.d.ts +5 -0
  560. package/dist/src/components/atoms/title/Title.js +60 -0
  561. package/dist/src/components/atoms/title/Title.styled.d.ts +1 -0
  562. package/dist/src/components/atoms/title/Title.styled.js +28 -0
  563. package/dist/src/components/atoms/title/Title.theme.d.ts +26 -0
  564. package/dist/src/components/atoms/title/Title.theme.js +22 -0
  565. package/dist/src/components/atoms/title/index.d.ts +2 -0
  566. package/dist/src/components/atoms/title/index.js +2 -0
  567. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.d.ts +5 -0
  568. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.js +126 -0
  569. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.d.ts +7 -0
  570. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +15 -0
  571. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.d.ts +15 -0
  572. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +16 -0
  573. package/dist/src/components/atoms/toggle-switch/index.d.ts +2 -0
  574. package/dist/src/components/atoms/toggle-switch/index.js +2 -0
  575. package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.d.ts +7 -0
  576. package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.js +9 -0
  577. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.d.ts +8 -0
  578. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.js +22 -0
  579. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.d.ts +11 -0
  580. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.js +11 -0
  581. package/dist/src/components/atoms/typeahead-input/index.d.ts +2 -0
  582. package/dist/src/components/atoms/typeahead-input/index.js +2 -0
  583. package/dist/src/components/atoms/welcome-card/Card.d.ts +5 -0
  584. package/dist/src/components/atoms/welcome-card/Card.js +52 -0
  585. package/dist/src/components/atoms/welcome-card/Card.theme.d.ts +7 -0
  586. package/dist/src/components/atoms/welcome-card/Card.theme.js +7 -0
  587. package/dist/src/components/atoms/welcome-card/index.d.ts +8 -0
  588. package/dist/src/components/atoms/welcome-card/index.js +20 -0
  589. package/dist/src/components/index.d.ts +4 -0
  590. package/dist/src/components/index.js +4 -0
  591. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.d.ts +5 -0
  592. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +22 -0
  593. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.d.ts +28 -0
  594. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.js +17 -0
  595. package/dist/src/components/molecules/account-and-routing-modal/index.d.ts +2 -0
  596. package/dist/src/components/molecules/account-and-routing-modal/index.js +2 -0
  597. package/dist/src/components/molecules/address-form/AddressForm.d.ts +12 -0
  598. package/dist/src/components/molecules/address-form/AddressForm.js +52 -0
  599. package/dist/src/components/molecules/address-form/AddressForm.state.d.ts +3 -0
  600. package/dist/src/components/molecules/address-form/AddressForm.state.js +33 -0
  601. package/dist/src/components/molecules/address-form/AddressForm.stories.d.ts +7 -0
  602. package/dist/src/components/molecules/address-form/AddressForm.stories.js +15 -0
  603. package/dist/src/components/molecules/address-form/index.d.ts +2 -0
  604. package/dist/src/components/molecules/address-form/index.js +6 -0
  605. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.d.ts +13 -0
  606. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.js +55 -0
  607. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.d.ts +3 -0
  608. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.js +21 -0
  609. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.d.ts +7 -0
  610. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +14 -0
  611. package/dist/src/components/molecules/change-password-form/index.d.ts +2 -0
  612. package/dist/src/components/molecules/change-password-form/index.js +6 -0
  613. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.d.ts +5 -0
  614. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.js +60 -0
  615. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.d.ts +7 -0
  616. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +30 -0
  617. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.d.ts +9 -0
  618. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.js +8 -0
  619. package/dist/src/components/molecules/collapsible-section/index.d.ts +2 -0
  620. package/dist/src/components/molecules/collapsible-section/index.js +2 -0
  621. package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.d.ts +7 -0
  622. package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.js +16 -0
  623. package/dist/src/components/molecules/edit-name-form/EditNameForm.d.ts +8 -0
  624. package/dist/src/components/molecules/edit-name-form/EditNameForm.js +22 -0
  625. package/dist/src/components/molecules/edit-name-form/EditNameForm.state.d.ts +3 -0
  626. package/dist/src/components/molecules/edit-name-form/EditNameForm.state.js +11 -0
  627. package/dist/src/components/molecules/edit-name-form/index.d.ts +2 -0
  628. package/dist/src/components/molecules/edit-name-form/index.js +6 -0
  629. package/dist/src/components/molecules/editable-list/EditableList.d.ts +23 -0
  630. package/dist/src/components/molecules/editable-list/EditableList.js +49 -0
  631. package/dist/src/components/molecules/editable-list/EditableList.styled.d.ts +2 -0
  632. package/dist/src/components/molecules/editable-list/EditableList.styled.js +15 -0
  633. package/dist/src/components/molecules/editable-list/index.d.ts +2 -0
  634. package/dist/src/components/molecules/editable-list/index.js +2 -0
  635. package/dist/src/components/molecules/editable-table/EditableTable.d.ts +7 -0
  636. package/dist/src/components/molecules/editable-table/EditableTable.js +16 -0
  637. package/dist/src/components/molecules/editable-table/EditableTable.styled.d.ts +9 -0
  638. package/dist/src/components/molecules/editable-table/EditableTable.styled.js +61 -0
  639. package/dist/src/components/molecules/editable-table/TableListItem.d.ts +9 -0
  640. package/dist/src/components/molecules/editable-table/TableListItem.js +21 -0
  641. package/dist/src/components/molecules/editable-table/index.d.ts +3 -0
  642. package/dist/src/components/molecules/editable-table/index.js +3 -0
  643. package/dist/src/components/molecules/email-form/EmailForm.d.ts +13 -0
  644. package/dist/src/components/molecules/email-form/EmailForm.js +23 -0
  645. package/dist/src/components/molecules/email-form/EmailForm.state.d.ts +3 -0
  646. package/dist/src/components/molecules/email-form/EmailForm.state.js +8 -0
  647. package/dist/src/components/molecules/email-form/EmailForm.stories.d.ts +7 -0
  648. package/dist/src/components/molecules/email-form/EmailForm.stories.js +16 -0
  649. package/dist/src/components/molecules/email-form/index.d.ts +2 -0
  650. package/dist/src/components/molecules/email-form/index.js +6 -0
  651. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.d.ts +8 -0
  652. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +17 -0
  653. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.d.ts +3 -0
  654. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.js +8 -0
  655. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.d.ts +7 -0
  656. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.js +16 -0
  657. package/dist/src/components/molecules/forgot-password-form/index.d.ts +2 -0
  658. package/dist/src/components/molecules/forgot-password-form/index.js +6 -0
  659. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.d.ts +6 -0
  660. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.js +29 -0
  661. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.d.ts +7 -0
  662. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.js +17 -0
  663. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.d.ts +7 -0
  664. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.js +6 -0
  665. package/dist/src/components/molecules/highlight-tab-row/index.d.ts +2 -0
  666. package/dist/src/components/molecules/highlight-tab-row/index.js +2 -0
  667. package/dist/src/components/molecules/index.d.ts +36 -0
  668. package/dist/src/components/molecules/index.js +36 -0
  669. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.d.ts +25 -0
  670. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +108 -0
  671. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.d.ts +3 -0
  672. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +23 -0
  673. package/dist/src/components/molecules/internal-user-info-form/index.d.ts +2 -0
  674. package/dist/src/components/molecules/internal-user-info-form/index.js +6 -0
  675. package/dist/src/components/molecules/login-form/LoginForm.d.ts +8 -0
  676. package/dist/src/components/molecules/login-form/LoginForm.js +22 -0
  677. package/dist/src/components/molecules/login-form/LoginForm.state.d.ts +3 -0
  678. package/dist/src/components/molecules/login-form/LoginForm.state.js +11 -0
  679. package/dist/src/components/molecules/login-form/LoginForm.stories.d.ts +7 -0
  680. package/dist/src/components/molecules/login-form/LoginForm.stories.js +16 -0
  681. package/dist/src/components/molecules/login-form/index.d.ts +2 -0
  682. package/dist/src/components/molecules/login-form/index.js +6 -0
  683. package/dist/src/components/molecules/modal/Modal.d.ts +27 -0
  684. package/dist/src/components/molecules/modal/Modal.js +51 -0
  685. package/dist/src/components/molecules/modal/Modal.stories.d.ts +15 -0
  686. package/dist/src/components/molecules/modal/Modal.stories.js +28 -0
  687. package/dist/src/components/molecules/modal/index.d.ts +2 -0
  688. package/dist/src/components/molecules/modal/index.js +2 -0
  689. package/dist/src/components/molecules/module/Module.d.ts +6 -0
  690. package/dist/src/components/molecules/module/Module.js +31 -0
  691. package/dist/src/components/molecules/module/Module.stories.d.ts +7 -0
  692. package/dist/src/components/molecules/module/Module.stories.js +18 -0
  693. package/dist/src/components/molecules/module/Module.theme.d.ts +87 -0
  694. package/dist/src/components/molecules/module/Module.theme.js +43 -0
  695. package/dist/src/components/molecules/module/index.d.ts +2 -0
  696. package/dist/src/components/molecules/module/index.js +2 -0
  697. package/dist/src/components/molecules/nav-menu/NavMenu.theme.d.ts +15 -0
  698. package/dist/src/components/molecules/nav-menu/NavMenu.theme.js +12 -0
  699. package/dist/src/components/molecules/nav-menu/NavMenuDesktop.d.ts +5 -0
  700. package/dist/src/components/molecules/nav-menu/NavMenuDesktop.js +11 -0
  701. package/dist/src/components/molecules/nav-menu/NavMenuMobile.d.ts +5 -0
  702. package/dist/src/components/molecules/nav-menu/NavMenuMobile.js +49 -0
  703. package/dist/src/components/molecules/nav-menu/index.d.ts +3 -0
  704. package/dist/src/components/molecules/nav-menu/index.js +3 -0
  705. package/dist/src/components/molecules/obligation/Obligation.d.ts +23 -0
  706. package/dist/src/components/molecules/obligation/Obligation.js +44 -0
  707. package/dist/src/components/molecules/obligation/icons/AccountBillIcon.d.ts +2 -0
  708. package/dist/src/components/molecules/obligation/icons/AccountBillIcon.js +20 -0
  709. package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.d.ts +2 -0
  710. package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.js +21 -0
  711. package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.d.ts +2 -0
  712. package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.js +21 -0
  713. package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.d.ts +2 -0
  714. package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.js +21 -0
  715. package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.d.ts +2 -0
  716. package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.js +21 -0
  717. package/dist/src/components/molecules/obligation/icons/AccountGasIcon.d.ts +2 -0
  718. package/dist/src/components/molecules/obligation/icons/AccountGasIcon.js +21 -0
  719. package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.d.ts +2 -0
  720. package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.js +20 -0
  721. package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.d.ts +2 -0
  722. package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.js +21 -0
  723. package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.d.ts +2 -0
  724. package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.js +21 -0
  725. package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.d.ts +2 -0
  726. package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +22 -0
  727. package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.d.ts +2 -0
  728. package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +20 -0
  729. package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.d.ts +2 -0
  730. package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.js +22 -0
  731. package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.d.ts +2 -0
  732. package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +23 -0
  733. package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.d.ts +2 -0
  734. package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.js +22 -0
  735. package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.d.ts +2 -0
  736. package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.js +22 -0
  737. package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.d.ts +2 -0
  738. package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +22 -0
  739. package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.d.ts +2 -0
  740. package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +20 -0
  741. package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.d.ts +2 -0
  742. package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +23 -0
  743. package/dist/src/components/molecules/obligation/icons/index.d.ts +38 -0
  744. package/dist/src/components/molecules/obligation/icons/index.js +57 -0
  745. package/dist/src/components/molecules/obligation/index.d.ts +2 -0
  746. package/dist/src/components/molecules/obligation/index.js +2 -0
  747. package/dist/src/components/molecules/obligation/modules/AmountModule.d.ts +12 -0
  748. package/dist/src/components/molecules/obligation/modules/AmountModule.js +17 -0
  749. package/dist/src/components/molecules/obligation/modules/AmountModule.stories.d.ts +7 -0
  750. package/dist/src/components/molecules/obligation/modules/AmountModule.stories.js +12 -0
  751. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.d.ts +4 -0
  752. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.js +76 -0
  753. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.d.ts +15 -0
  754. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.js +15 -0
  755. package/dist/src/components/molecules/obligation/modules/IconModule.d.ts +8 -0
  756. package/dist/src/components/molecules/obligation/modules/IconModule.js +20 -0
  757. package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.d.ts +16 -0
  758. package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.js +18 -0
  759. package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.d.ts +6 -0
  760. package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.js +18 -0
  761. package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.d.ts +18 -0
  762. package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.js +44 -0
  763. package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.d.ts +8 -0
  764. package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +39 -0
  765. package/dist/src/components/molecules/obligation/modules/TitleModule.d.ts +7 -0
  766. package/dist/src/components/molecules/obligation/modules/TitleModule.js +13 -0
  767. package/dist/src/components/molecules/obligation/modules/index.d.ts +8 -0
  768. package/dist/src/components/molecules/obligation/modules/index.js +8 -0
  769. package/dist/src/components/molecules/pagination/Pagination.d.ts +14 -0
  770. package/dist/src/components/molecules/pagination/Pagination.js +56 -0
  771. package/dist/src/components/molecules/pagination/index.d.ts +2 -0
  772. package/dist/src/components/molecules/pagination/index.js +2 -0
  773. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.d.ts +11 -0
  774. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.js +27 -0
  775. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.d.ts +5 -0
  776. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.js +49 -0
  777. package/dist/src/components/molecules/partial-amount-form/index.d.ts +3 -0
  778. package/dist/src/components/molecules/partial-amount-form/index.js +3 -0
  779. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.d.ts +15 -0
  780. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.js +24 -0
  781. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.d.ts +7 -0
  782. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.js +10 -0
  783. package/dist/src/components/molecules/payment-button-bar/index.d.ts +2 -0
  784. package/dist/src/components/molecules/payment-button-bar/index.js +2 -0
  785. package/dist/src/components/molecules/payment-details/PaymentDetails.d.ts +5 -0
  786. package/dist/src/components/molecules/payment-details/PaymentDetails.js +143 -0
  787. package/dist/src/components/molecules/payment-details/PaymentDetails.stories.d.ts +11 -0
  788. package/dist/src/components/molecules/payment-details/PaymentDetails.stories.js +126 -0
  789. package/dist/src/components/molecules/payment-details/PaymentDetails.theme.d.ts +30 -0
  790. package/dist/src/components/molecules/payment-details/PaymentDetails.theme.js +10 -0
  791. package/dist/src/components/molecules/payment-details/index.d.ts +1 -0
  792. package/dist/src/components/molecules/payment-details/index.js +1 -0
  793. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.d.ts +16 -0
  794. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.js +52 -0
  795. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.d.ts +3 -0
  796. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +28 -0
  797. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.d.ts +7 -0
  798. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.js +16 -0
  799. package/dist/src/components/molecules/payment-form-ach/index.d.ts +2 -0
  800. package/dist/src/components/molecules/payment-form-ach/index.js +6 -0
  801. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.d.ts +4 -0
  802. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.js +74 -0
  803. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.d.ts +3 -0
  804. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.js +41 -0
  805. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.d.ts +7 -0
  806. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.js +16 -0
  807. package/dist/src/components/molecules/payment-form-card/index.d.ts +2 -0
  808. package/dist/src/components/molecules/payment-form-card/index.js +6 -0
  809. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.d.ts +7 -0
  810. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.js +10 -0
  811. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.d.ts +11 -0
  812. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.js +70 -0
  813. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.d.ts +1 -0
  814. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.js +8 -0
  815. package/dist/src/components/molecules/periscope-dashboard-iframe/index.d.ts +2 -0
  816. package/dist/src/components/molecules/periscope-dashboard-iframe/index.js +2 -0
  817. package/dist/src/components/molecules/phone-form/PhoneForm.d.ts +12 -0
  818. package/dist/src/components/molecules/phone-form/PhoneForm.js +23 -0
  819. package/dist/src/components/molecules/phone-form/PhoneForm.state.d.ts +3 -0
  820. package/dist/src/components/molecules/phone-form/PhoneForm.state.js +9 -0
  821. package/dist/src/components/molecules/phone-form/PhoneForm.stories.d.ts +7 -0
  822. package/dist/src/components/molecules/phone-form/PhoneForm.stories.js +16 -0
  823. package/dist/src/components/molecules/phone-form/index.d.ts +2 -0
  824. package/dist/src/components/molecules/phone-form/index.js +6 -0
  825. package/dist/src/components/molecules/radio-section/RadioSection.d.ts +5 -0
  826. package/dist/src/components/molecules/radio-section/RadioSection.js +126 -0
  827. package/dist/src/components/molecules/radio-section/RadioSection.stories.d.ts +7 -0
  828. package/dist/src/components/molecules/radio-section/RadioSection.stories.js +18 -0
  829. package/dist/src/components/molecules/radio-section/RadioSection.theme.d.ts +13 -0
  830. package/dist/src/components/molecules/radio-section/RadioSection.theme.js +13 -0
  831. package/dist/src/components/molecules/radio-section/index.d.ts +2 -0
  832. package/dist/src/components/molecules/radio-section/index.js +2 -0
  833. package/dist/src/components/molecules/registration-form/RegistrationForm.d.ts +9 -0
  834. package/dist/src/components/molecules/registration-form/RegistrationForm.js +43 -0
  835. package/dist/src/components/molecules/registration-form/RegistrationForm.state.d.ts +3 -0
  836. package/dist/src/components/molecules/registration-form/RegistrationForm.state.js +27 -0
  837. package/dist/src/components/molecules/registration-form/RegistrationForm.stories.d.ts +7 -0
  838. package/dist/src/components/molecules/registration-form/RegistrationForm.stories.js +16 -0
  839. package/dist/src/components/molecules/registration-form/index.d.ts +2 -0
  840. package/dist/src/components/molecules/registration-form/index.js +6 -0
  841. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.d.ts +4 -0
  842. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js +27 -0
  843. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.d.ts +7 -0
  844. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.js +9 -0
  845. package/dist/src/components/molecules/reset-confirmation-form/index.d.ts +2 -0
  846. package/dist/src/components/molecules/reset-confirmation-form/index.js +2 -0
  847. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.d.ts +9 -0
  848. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.js +30 -0
  849. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.d.ts +3 -0
  850. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.js +18 -0
  851. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.d.ts +7 -0
  852. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.js +16 -0
  853. package/dist/src/components/molecules/reset-password-form/index.d.ts +2 -0
  854. package/dist/src/components/molecules/reset-password-form/index.js +6 -0
  855. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.d.ts +4 -0
  856. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.js +27 -0
  857. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.d.ts +7 -0
  858. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.js +9 -0
  859. package/dist/src/components/molecules/reset-password-success/index.d.ts +2 -0
  860. package/dist/src/components/molecules/reset-password-success/index.js +2 -0
  861. package/dist/src/components/molecules/tab-sidebar/TabSidebar.d.ts +5 -0
  862. package/dist/src/components/molecules/tab-sidebar/TabSidebar.js +28 -0
  863. package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.d.ts +7 -0
  864. package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.js +52 -0
  865. package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.d.ts +9 -0
  866. package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.js +8 -0
  867. package/dist/src/components/molecules/tab-sidebar/index.d.ts +2 -0
  868. package/dist/src/components/molecules/tab-sidebar/index.js +2 -0
  869. package/dist/src/components/molecules/tabs/Tabs.d.ts +5 -0
  870. package/dist/src/components/molecules/tabs/Tabs.js +33 -0
  871. package/dist/src/components/molecules/tabs/Tabs.stories.d.ts +7 -0
  872. package/dist/src/components/molecules/tabs/Tabs.stories.js +186 -0
  873. package/dist/src/components/molecules/tabs/Tabs.theme.d.ts +9 -0
  874. package/dist/src/components/molecules/tabs/Tabs.theme.js +8 -0
  875. package/dist/src/components/molecules/tabs/index.d.ts +2 -0
  876. package/dist/src/components/molecules/tabs/index.js +2 -0
  877. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.d.ts +8 -0
  878. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.js +17 -0
  879. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.d.ts +7 -0
  880. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.js +12 -0
  881. package/dist/src/components/molecules/terms-and-conditions/index.d.ts +2 -0
  882. package/dist/src/components/molecules/terms-and-conditions/index.js +2 -0
  883. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.d.ts +5 -0
  884. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +16 -0
  885. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.d.ts +7 -0
  886. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +19 -0
  887. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.d.ts +50 -0
  888. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.js +24 -0
  889. package/dist/src/components/molecules/terms-and-conditions-modal/index.d.ts +2 -0
  890. package/dist/src/components/molecules/terms-and-conditions-modal/index.js +2 -0
  891. package/dist/src/components/molecules/timeout/Timeout.d.ts +4 -0
  892. package/dist/src/components/molecules/timeout/Timeout.js +26 -0
  893. package/dist/src/components/molecules/timeout/index.d.ts +2 -0
  894. package/dist/src/components/molecules/timeout/index.js +2 -0
  895. package/dist/src/components/molecules/welcome-module/WelcomeModule.d.ts +6 -0
  896. package/dist/src/components/molecules/welcome-module/WelcomeModule.js +27 -0
  897. package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.d.ts +13 -0
  898. package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.js +13 -0
  899. package/dist/src/components/molecules/welcome-module/index.d.ts +2 -0
  900. package/dist/src/components/molecules/welcome-module/index.js +2 -0
  901. package/dist/src/components/molecules/workflow-tile/WorkflowTile.d.ts +7 -0
  902. package/dist/src/components/molecules/workflow-tile/WorkflowTile.js +19 -0
  903. package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.d.ts +7 -0
  904. package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.js +11 -0
  905. package/dist/src/components/molecules/workflow-tile/index.d.ts +2 -0
  906. package/dist/src/components/molecules/workflow-tile/index.js +2 -0
  907. package/dist/src/components/templates/center-single/CenterSingle.d.ts +4 -0
  908. package/dist/src/components/templates/center-single/CenterSingle.js +20 -0
  909. package/dist/src/components/templates/center-single/index.d.ts +2 -0
  910. package/dist/src/components/templates/center-single/index.js +2 -0
  911. package/dist/src/components/templates/center-stack/CenterStack.d.ts +4 -0
  912. package/dist/src/components/templates/center-stack/CenterStack.js +22 -0
  913. package/dist/src/components/templates/center-stack/index.d.ts +2 -0
  914. package/dist/src/components/templates/center-stack/index.js +2 -0
  915. package/dist/src/components/templates/default-page-template/DefaultPageTemplate.d.ts +4 -0
  916. package/dist/src/components/templates/default-page-template/DefaultPageTemplate.js +20 -0
  917. package/dist/src/components/templates/default-page-template/index.d.ts +2 -0
  918. package/dist/src/components/templates/default-page-template/index.js +2 -0
  919. package/dist/src/components/templates/index.d.ts +5 -0
  920. package/dist/src/components/templates/index.js +5 -0
  921. package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.d.ts +4 -0
  922. package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.js +25 -0
  923. package/dist/src/components/templates/sidebar-single-content/index.d.ts +2 -0
  924. package/dist/src/components/templates/sidebar-single-content/index.js +2 -0
  925. package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.d.ts +4 -0
  926. package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.js +25 -0
  927. package/dist/src/components/templates/sidebar-stack-content/index.d.ts +2 -0
  928. package/dist/src/components/templates/sidebar-stack-content/index.js +2 -0
  929. package/dist/src/components/templates/templates.theme.d.ts +5 -0
  930. package/dist/src/components/templates/templates.theme.js +4 -0
  931. package/dist/src/components/withWindowSize.d.ts +4 -0
  932. package/dist/src/components/withWindowSize.js +70 -0
  933. package/dist/src/constants/colors.d.ts +97 -0
  934. package/dist/src/constants/colors.js +113 -0
  935. package/dist/src/constants/index.d.ts +3 -0
  936. package/dist/src/constants/index.js +3 -0
  937. package/dist/src/constants/regex_constants.d.ts +1 -0
  938. package/dist/src/constants/regex_constants.js +1 -0
  939. package/dist/src/constants/style_constants.d.ts +8 -0
  940. package/dist/src/constants/style_constants.js +10 -0
  941. package/dist/src/deprecated/colors.d.ts +81 -0
  942. package/dist/src/deprecated/colors.js +97 -0
  943. package/dist/src/deprecated/components/radio-button/index.d.ts +2 -0
  944. package/dist/src/deprecated/components/radio-button/index.js +2 -0
  945. package/dist/src/deprecated/components/radio-button/radio-button.d.ts +5 -0
  946. package/dist/src/deprecated/components/radio-button/radio-button.js +29 -0
  947. package/dist/src/deprecated/icons/AlertErrorIcon.d.ts +1 -0
  948. package/dist/src/deprecated/icons/AlertErrorIcon.js +10 -0
  949. package/dist/src/deprecated/icons/AlertInfoIcon.d.ts +1 -0
  950. package/dist/src/deprecated/icons/AlertInfoIcon.js +10 -0
  951. package/dist/src/deprecated/icons/AlertSuccessIcon.d.ts +1 -0
  952. package/dist/src/deprecated/icons/AlertSuccessIcon.js +10 -0
  953. package/dist/src/deprecated/icons/AlertWarningIcon.d.ts +1 -0
  954. package/dist/src/deprecated/icons/AlertWarningIcon.js +6 -0
  955. package/dist/src/deprecated/icons/BankIcon.d.ts +2 -0
  956. package/dist/src/deprecated/icons/BankIcon.js +19 -0
  957. package/dist/src/deprecated/icons/GenericCard.d.ts +2 -0
  958. package/dist/src/deprecated/icons/GenericCard.js +9 -0
  959. package/dist/src/deprecated/icons/IconCheck.d.ts +5 -0
  960. package/dist/src/deprecated/icons/IconCheck.js +10 -0
  961. package/dist/src/deprecated/icons/IconCheckEmail.d.ts +4 -0
  962. package/dist/src/deprecated/icons/IconCheckEmail.js +14 -0
  963. package/dist/src/deprecated/icons/IconChevron.d.ts +3 -0
  964. package/dist/src/deprecated/icons/IconChevron.js +14 -0
  965. package/dist/src/deprecated/icons/IconEmailVerified.d.ts +4 -0
  966. package/dist/src/deprecated/icons/IconEmailVerified.js +22 -0
  967. package/dist/src/deprecated/icons/IconEye.d.ts +3 -0
  968. package/dist/src/deprecated/icons/IconEye.js +15 -0
  969. package/dist/src/deprecated/icons/IconEyeSlash.d.ts +3 -0
  970. package/dist/src/deprecated/icons/IconEyeSlash.js +19 -0
  971. package/dist/src/deprecated/icons/IconInvalid.d.ts +7 -0
  972. package/dist/src/deprecated/icons/IconInvalid.js +14 -0
  973. package/dist/src/deprecated/icons/IconNeutral.d.ts +6 -0
  974. package/dist/src/deprecated/icons/IconNeutral.js +10 -0
  975. package/dist/src/deprecated/icons/IconQuit.d.ts +5 -0
  976. package/dist/src/deprecated/icons/IconQuit.js +14 -0
  977. package/dist/src/deprecated/icons/IconValid.d.ts +7 -0
  978. package/dist/src/deprecated/icons/IconValid.js +15 -0
  979. package/dist/src/deprecated/icons/IconWarn.d.ts +3 -0
  980. package/dist/src/deprecated/icons/IconWarn.js +13 -0
  981. package/dist/src/deprecated/icons/index.d.ts +22 -0
  982. package/dist/src/deprecated/icons/index.js +22 -0
  983. package/dist/src/deprecated/index.d.ts +1 -0
  984. package/dist/src/deprecated/index.js +1 -0
  985. package/dist/src/deprecated/spinner/Spinner.d.ts +7 -0
  986. package/dist/src/deprecated/spinner/Spinner.js +46 -0
  987. package/dist/src/deprecated/spinner/index.d.ts +1 -0
  988. package/dist/src/deprecated/spinner/index.js +1 -0
  989. package/dist/src/deprecated/utility/__tests__/safeConcat.spec.d.ts +1 -0
  990. package/dist/src/deprecated/utility/__tests__/safeConcat.spec.js +47 -0
  991. package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.d.ts +1 -0
  992. package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.js +100 -0
  993. package/dist/src/deprecated/utility/index.d.ts +2 -0
  994. package/dist/src/deprecated/utility/index.js +2 -0
  995. package/dist/src/deprecated/utility/safeConcat.d.ts +1 -0
  996. package/dist/src/deprecated/utility/safeConcat.js +8 -0
  997. package/dist/src/deprecated/utility/validateKeyType.d.ts +1 -0
  998. package/dist/src/deprecated/utility/validateKeyType.js +13 -0
  999. package/dist/src/index.d.ts +4 -0
  1000. package/dist/src/index.js +4 -0
  1001. package/dist/src/util/focusFirstInvalidInputHook.d.ts +2 -0
  1002. package/dist/src/util/focusFirstInvalidInputHook.js +17 -0
  1003. package/dist/src/util/formats.d.ts +9 -0
  1004. package/dist/src/util/formats.js +70 -0
  1005. package/dist/src/util/general.d.ts +13 -0
  1006. package/dist/src/util/general.js +101 -0
  1007. package/dist/src/util/index.d.ts +5 -0
  1008. package/dist/src/util/index.js +5 -0
  1009. package/dist/src/util/inputValidationUtils.d.ts +43 -0
  1010. package/dist/src/util/inputValidationUtils.js +92 -0
  1011. package/dist/src/util/themeUtils.d.ts +5 -0
  1012. package/dist/src/util/themeUtils.js +129 -0
  1013. package/package.json +1 -1
  1014. package/src/components/atoms/card/Card.js +24 -1
  1015. package/src/components/atoms/card/index.d.ts +1 -0
  1016. package/src/components/atoms/icons/GuidedCheckoutImage.js +39 -0
  1017. package/src/components/atoms/icons/ProfileImage.js +51 -0
  1018. package/src/components/atoms/icons/StandardCheckoutImage.js +371 -0
  1019. package/src/components/atoms/icons/index.js +10 -1
  1020. package/src/.DS_Store +0 -0
package/dist/index.esm.js CHANGED
@@ -13383,45 +13383,6 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
13383
13383
 
13384
13384
  var SettingsIconSmall$1 = themeComponent(SettingsIconSmall, "Icons", fallbackValues$2, "primary");
13385
13385
 
13386
- var WalletIconSmall = function WalletIconSmall(_ref) {
13387
- var themeValues = _ref.themeValues;
13388
- return /*#__PURE__*/React.createElement("svg", {
13389
- width: "20",
13390
- height: "20",
13391
- viewBox: "0 0 20 20",
13392
- fill: "none",
13393
- xmlns: "http://www.w3.org/2000/svg"
13394
- }, /*#__PURE__*/React.createElement("path", {
13395
- fillRule: "evenodd",
13396
- clipRule: "evenodd",
13397
- d: "M16.3125 6.94643C16.0446 6.70536 15.7232 6.57143 15.3482 6.57143L5.14283 6.57143C5.0089 6.57143 4.90176 6.54464 4.8214 6.46429C4.74104 6.38393 4.71426 6.27678 4.71426 6.14286C4.71426 6.03571 4.74104 5.92857 4.8214 5.84821C4.90176 5.76786 5.0089 5.71428 5.14283 5.71428L15.4285 5.71428C15.5357 5.71428 15.6428 5.6875 15.7232 5.60714C15.8035 5.52678 15.8571 5.41964 15.8571 5.28571C15.8571 4.9375 15.7232 4.64286 15.4821 4.375C15.2143 4.13393 14.9196 4 14.5714 4L4.71426 4C4.23211 4 3.80354 4.1875 3.48211 4.50893C3.16068 4.83036 2.99997 5.23214 2.99997 5.71428V14.2857C2.99997 14.7679 3.16068 15.1964 3.48211 15.5179C3.80354 15.8393 4.23211 16 4.71426 16L15.3482 16C15.7232 16 16.0446 15.8929 16.3125 15.625C16.5803 15.3839 16.7143 15.0893 16.7143 14.7143V7.85714C16.7143 7.50893 16.5803 7.21428 16.3125 6.94643ZM12.7142 13.143C13.661 13.143 14.4285 12.3755 14.4285 11.4288C14.4285 10.482 13.661 9.71447 12.7142 9.71447C11.7674 9.71447 10.9999 10.482 10.9999 11.4288C10.9999 12.3755 11.7674 13.143 12.7142 13.143Z",
13398
- fill: themeValues.singleIconColor
13399
- }), /*#__PURE__*/React.createElement("mask", {
13400
- id: "mask0_503_574",
13401
- style: {
13402
- maskType: "alpha"
13403
- },
13404
- maskUnits: "userSpaceOnUse",
13405
- x: "3",
13406
- y: "4",
13407
- width: "14",
13408
- height: "12"
13409
- }, /*#__PURE__*/React.createElement("path", {
13410
- fillRule: "evenodd",
13411
- clipRule: "evenodd",
13412
- d: "M16.3125 6.94643C16.0446 6.70536 15.7232 6.57143 15.3482 6.57143L5.14283 6.57143C5.0089 6.57143 4.90176 6.54464 4.8214 6.46429C4.74104 6.38393 4.71426 6.27678 4.71426 6.14286C4.71426 6.03571 4.74104 5.92857 4.8214 5.84821C4.90176 5.76786 5.0089 5.71428 5.14283 5.71428L15.4285 5.71428C15.5357 5.71428 15.6428 5.6875 15.7232 5.60714C15.8035 5.52678 15.8571 5.41964 15.8571 5.28571C15.8571 4.9375 15.7232 4.64286 15.4821 4.375C15.2143 4.13393 14.9196 4 14.5714 4L4.71426 4C4.23211 4 3.80354 4.1875 3.48211 4.50893C3.16068 4.83036 2.99997 5.23214 2.99997 5.71428V14.2857C2.99997 14.7679 3.16068 15.1964 3.48211 15.5179C3.80354 15.8393 4.23211 16 4.71426 16L15.3482 16C15.7232 16 16.0446 15.8929 16.3125 15.625C16.5803 15.3839 16.7143 15.0893 16.7143 14.7143V7.85714C16.7143 7.50893 16.5803 7.21428 16.3125 6.94643ZM12.7142 13.143C13.661 13.143 14.4285 12.3755 14.4285 11.4288C14.4285 10.482 13.661 9.71447 12.7142 9.71447C11.7674 9.71447 10.9999 10.482 10.9999 11.4288C10.9999 12.3755 11.7674 13.143 12.7142 13.143Z",
13413
- fill: "white"
13414
- })), /*#__PURE__*/React.createElement("g", {
13415
- mask: "url(#mask0_503_574)"
13416
- }, /*#__PURE__*/React.createElement("rect", {
13417
- width: "20",
13418
- height: "20",
13419
- fill: themeValues.singleIconColor
13420
- })));
13421
- };
13422
-
13423
- var WalletIconSmall$1 = themeComponent(WalletIconSmall, "Icons", fallbackValues$2, "primary");
13424
-
13425
13386
  var ChevronIcon = function ChevronIcon(_ref) {
13426
13387
  var themeValues = _ref.themeValues,
13427
13388
  iconFill = _ref.iconFill;
@@ -15623,42 +15584,394 @@ var CashIcon = function CashIcon() {
15623
15584
  }));
15624
15585
  };
15625
15586
 
15626
- var WalletBannerIcon = function WalletBannerIcon(_ref) {
15627
- var themeValues = _ref.themeValues;
15587
+ var StandardCheckoutImage = function StandardCheckoutImage() {
15628
15588
  return /*#__PURE__*/React.createElement("svg", {
15629
- width: "317",
15630
- height: "166",
15631
- viewBox: "0 0 317 166",
15589
+ width: "191",
15590
+ height: "96",
15591
+ viewBox: "0 0 191 96",
15632
15592
  fill: "none",
15633
15593
  xmlns: "http://www.w3.org/2000/svg"
15634
15594
  }, /*#__PURE__*/React.createElement("path", {
15595
+ fillRule: "evenodd",
15596
+ clipRule: "evenodd",
15597
+ d: "M12.9545 28.1101C12.9276 28.1105 12.9007 28.1107 12.8736 28.1107C10.1502 28.1107 7.94238 25.909 7.94238 23.1931C7.94238 20.4771 10.1502 18.2754 12.8736 18.2754C13.9861 18.2754 15.0124 18.6427 15.8375 19.2624C16.6943 16.4514 19.3141 14.4058 22.4129 14.4058C25.9975 14.4058 28.9411 17.1431 29.2564 20.636C29.9741 20.0667 30.8828 19.7265 31.8711 19.7265C34.1928 19.7265 36.0748 21.6034 36.0748 23.9186C36.0748 26.2338 34.1928 28.1107 31.8711 28.1107C31.817 28.1107 31.7631 28.1097 31.7095 28.1077V28.111H12.9545V28.1101Z",
15598
+ fill: "#B6C3F1"
15599
+ }), /*#__PURE__*/React.createElement("path", {
15600
+ fillRule: "evenodd",
15601
+ clipRule: "evenodd",
15602
+ d: "M17.5877 59.7212C17.5746 59.7214 17.5614 59.7215 17.5482 59.7215C16.2186 59.7215 15.1406 58.6466 15.1406 57.3206C15.1406 55.9945 16.2186 54.9196 17.5482 54.9196C18.0914 54.9196 18.5925 55.0989 18.9953 55.4014C19.4136 54.029 20.6927 53.0303 22.2056 53.0303C23.9559 53.0303 25.3931 54.3669 25.5469 56.0724C25.8973 55.7944 26.341 55.6283 26.8235 55.6283C27.957 55.6283 28.8759 56.5447 28.8759 57.6751C28.8759 58.8054 27.957 59.7218 26.8235 59.7218C26.7971 59.7218 26.7708 59.7213 26.7446 59.7203V59.7217H17.5877V59.7212Z",
15603
+ fill: "#B6C3F1"
15604
+ }), /*#__PURE__*/React.createElement("path", {
15605
+ fillRule: "evenodd",
15606
+ clipRule: "evenodd",
15607
+ d: "M151.253 16.466C151.171 16.4729 151.088 16.4765 151.004 16.4765C149.405 16.4765 148.108 15.1835 148.108 13.5885C148.108 11.9935 149.405 10.7005 151.004 10.7005C151.199 10.7005 151.39 10.7197 151.574 10.7563C152.095 8.82294 153.865 7.3999 155.969 7.3999C157.928 7.3999 159.598 8.63467 160.239 10.3665C160.449 10.2635 160.684 10.2057 160.933 10.2057C161.519 10.2057 162.029 10.5246 162.3 10.9978C162.686 10.8074 163.121 10.7005 163.581 10.7005C165.181 10.7005 166.477 11.9935 166.477 13.5885C166.477 15.1835 165.181 16.4765 163.581 16.4765C163.554 16.4765 163.526 16.4761 163.499 16.4753V16.4765H151.253V16.466Z",
15608
+ fill: "#B6C3F1"
15609
+ }), /*#__PURE__*/React.createElement("ellipse", {
15610
+ cx: "91.9267",
15611
+ cy: "87.1911",
15612
+ rx: "19.5273",
15613
+ ry: "4.12571",
15614
+ fill: "#B6C3F1"
15615
+ }), /*#__PURE__*/React.createElement("path", {
15616
+ d: "M49.2305 21.9741H134.621V70.2083C134.621 73.9369 131.598 76.9595 127.87 76.9595H55.9817C52.2531 76.9595 49.2305 73.9369 49.2305 70.2083V21.9741Z",
15617
+ fill: "white"
15618
+ }), /*#__PURE__*/React.createElement("path", {
15619
+ d: "M47.5762 21.9738C47.5762 16.4312 52.0694 11.938 57.612 11.938H126.24C131.783 11.938 136.276 16.4312 136.276 21.9738V21.9738H47.5762V21.9738Z",
15620
+ fill: "#B6C3F1"
15621
+ }), /*#__PURE__*/React.createElement("ellipse", {
15622
+ cx: "62.0555",
15623
+ cy: "16.956",
15624
+ rx: "1.24102",
15625
+ ry: "1.23771",
15626
+ fill: "#292A33"
15627
+ }), /*#__PURE__*/React.createElement("ellipse", {
15628
+ cx: "57.9188",
15629
+ cy: "16.956",
15630
+ rx: "1.24102",
15631
+ ry: "1.23771",
15632
+ fill: "#292A33"
15633
+ }), /*#__PURE__*/React.createElement("ellipse", {
15634
+ cx: "53.782",
15635
+ cy: "16.956",
15636
+ rx: "1.24102",
15637
+ ry: "1.23771",
15638
+ fill: "#292A33"
15639
+ }), /*#__PURE__*/React.createElement("path", {
15640
+ fillRule: "evenodd",
15641
+ clipRule: "evenodd",
15642
+ d: "M131.359 14.1685H52.4938C51.0124 14.1685 49.8115 15.3668 49.8115 16.8451V73.7024C49.8115 75.1807 51.0124 76.379 52.4938 76.379H131.359C132.84 76.379 134.041 75.1807 134.041 73.7024V16.8451C134.041 15.3668 132.84 14.1685 131.359 14.1685ZM52.4938 11.938C49.7779 11.938 47.5762 14.135 47.5762 16.8451V73.7024C47.5762 76.4125 49.7779 78.6095 52.4938 78.6095H131.359C134.075 78.6095 136.276 76.4125 136.276 73.7024V16.8451C136.276 14.135 134.075 11.938 131.359 11.938H52.4938Z",
15643
+ fill: "#292A33"
15644
+ }), /*#__PURE__*/React.createElement("rect", {
15645
+ x: "163.085",
15646
+ y: "70.0283",
15647
+ width: "12.5769",
15648
+ height: "2.64072",
15649
+ rx: "1.32036",
15650
+ fill: "#292A33"
15651
+ }), /*#__PURE__*/React.createElement("path", {
15652
+ d: "M136.276 70.0283H157.793C158.522 70.0283 159.113 70.6195 159.113 71.3487V71.3487C159.113 72.0779 158.522 72.669 157.793 72.669H136.276V70.0283Z",
15653
+ fill: "#292A33"
15654
+ }), /*#__PURE__*/React.createElement("path", {
15655
+ d: "M29.373 71.3487C29.373 70.6195 29.9642 70.0283 30.6934 70.0283H47.5764V72.669H30.6934C29.9642 72.669 29.373 72.0779 29.373 71.3487V71.3487Z",
15656
+ fill: "#292A33"
15657
+ }), /*#__PURE__*/React.createElement("rect", {
15658
+ x: "17.9541",
15659
+ y: "70.0283",
15660
+ width: "8.10877",
15661
+ height: "2.64072",
15662
+ rx: "1.32036",
15663
+ fill: "#292A33"
15664
+ }), /*#__PURE__*/React.createElement("path", {
15665
+ fillRule: "evenodd",
15666
+ clipRule: "evenodd",
15667
+ d: "M104.197 37.9328C103.47 37.9328 102.811 38.4623 102.629 39.2477C102.503 39.7935 101.957 40.134 101.41 40.0082C100.863 39.8824 100.522 39.3379 100.648 38.7921C101.024 37.1661 102.444 35.9043 104.197 35.9043C105.951 35.9043 107.37 37.1661 107.746 38.7921C107.872 39.3379 107.531 39.8824 106.984 40.0082C106.437 40.134 105.891 39.7935 105.765 39.2477C105.584 38.4623 104.924 37.9328 104.197 37.9328Z",
15668
+ fill: "#292A33"
15669
+ }), /*#__PURE__*/React.createElement("path", {
15670
+ fillRule: "evenodd",
15671
+ clipRule: "evenodd",
15672
+ d: "M82.5253 37.9328C81.7984 37.9328 81.1387 38.4623 80.9573 39.2477C80.8312 39.7935 80.2856 40.134 79.7386 40.0082C79.1916 39.8824 78.8503 39.3379 78.9764 38.7921C79.3519 37.1661 80.7718 35.9043 82.5253 35.9043C84.2788 35.9043 85.6986 37.1661 86.0741 38.7921C86.2002 39.3379 85.859 39.8824 85.312 40.0082C84.765 40.134 84.2193 39.7935 84.0933 39.2477C83.9119 38.4623 83.2521 37.9328 82.5253 37.9328Z",
15673
+ fill: "#292A33"
15674
+ }), /*#__PURE__*/React.createElement("path", {
15675
+ fillRule: "evenodd",
15676
+ clipRule: "evenodd",
15677
+ d: "M86.8895 50.9126C87.4508 50.9126 87.9059 51.3667 87.9059 51.9268C87.9059 52.7759 88.5957 53.4642 89.4466 53.4642H97.275C98.1259 53.4642 98.8157 52.7759 98.8157 51.9268C98.8157 51.3667 99.2708 50.9126 99.8321 50.9126C100.393 50.9126 100.849 51.3667 100.849 51.9268C100.849 53.8962 99.2486 55.4927 97.275 55.4927H89.4466C87.473 55.4927 85.873 53.8962 85.873 51.9268C85.873 51.3667 86.3281 50.9126 86.8895 50.9126Z",
15678
+ fill: "#292A33"
15679
+ }), /*#__PURE__*/React.createElement("rect", {
15680
+ x: "47.5762",
15681
+ y: "20.3237",
15682
+ width: "88.7001",
15683
+ height: "1.65045",
15684
+ fill: "#292A33"
15685
+ }), /*#__PURE__*/React.createElement("g", {
15686
+ filter: "url(#filter0_d_2902_16320)"
15687
+ }, /*#__PURE__*/React.createElement("path", {
15688
+ d: "M136.276 20.1899H169.341C171.826 20.1899 173.842 22.205 173.842 24.6907V24.9307C173.842 27.4165 171.826 29.4315 169.341 29.4315H136.276V20.1899Z",
15689
+ fill: "white"
15690
+ }), /*#__PURE__*/React.createElement("rect", {
15691
+ x: "162.754",
15692
+ y: "23.8208",
15693
+ width: "7.44684",
15694
+ height: "1.98054",
15695
+ rx: "0.99027",
15696
+ fill: "#959CA8"
15697
+ }), /*#__PURE__*/React.createElement("rect", {
15698
+ x: "155.638",
15699
+ y: "23.8208",
15700
+ width: "4.46811",
15701
+ height: "1.98054",
15702
+ rx: "0.99027",
15703
+ fill: "#959CA8"
15704
+ }), /*#__PURE__*/React.createElement("rect", {
15705
+ x: "142.399",
15706
+ y: "23.8208",
15707
+ width: "10.591",
15708
+ height: "1.98054",
15709
+ rx: "0.99027",
15710
+ fill: "#959CA8"
15711
+ }), /*#__PURE__*/React.createElement("path", {
15712
+ d: "M136.276 23.8208H138.761C139.308 23.8208 139.752 24.2642 139.752 24.8111V24.8111C139.752 25.358 139.308 25.8013 138.761 25.8013H136.276V23.8208Z",
15713
+ fill: "#959CA8"
15714
+ })), /*#__PURE__*/React.createElement("g", {
15715
+ filter: "url(#filter1_d_2902_16320)"
15716
+ }, /*#__PURE__*/React.createElement("rect", {
15717
+ x: "126.347",
15718
+ y: "28.1108",
15719
+ width: "53.2862",
15720
+ height: "9.2416",
15721
+ rx: "4.5008",
15722
+ fill: "white"
15723
+ }), /*#__PURE__*/React.createElement("rect", {
15724
+ x: "164.739",
15725
+ y: "31.7417",
15726
+ width: "11.253",
15727
+ height: "1.98054",
15728
+ rx: "0.99027",
15729
+ fill: "#959CA8"
15730
+ }), /*#__PURE__*/React.createElement("rect", {
15731
+ x: "148.19",
15732
+ y: "31.7417",
15733
+ width: "13.9008",
15734
+ height: "1.98054",
15735
+ rx: "0.99027",
15736
+ fill: "#959CA8"
15737
+ }), /*#__PURE__*/React.createElement("rect", {
15738
+ x: "140.744",
15739
+ y: "31.7417",
15740
+ width: "4.79907",
15741
+ height: "1.98054",
15742
+ rx: "0.99027",
15743
+ fill: "#959CA8"
15744
+ }), /*#__PURE__*/React.createElement("rect", {
15745
+ x: "129.987",
15746
+ y: "31.7417",
15747
+ width: "8.10878",
15748
+ height: "1.98054",
15749
+ rx: "0.99027",
15750
+ fill: "#959CA8"
15751
+ })), /*#__PURE__*/React.createElement("path", {
15752
+ d: "M88.2848 85.5411V78.6099H90.9325V84.8059C90.9325 86.6702 89.4212 88.1815 87.5569 88.1815H84.3095C83.5803 88.1815 82.9893 87.5904 82.9893 86.8613C82.9893 86.1321 83.5803 85.5411 84.3095 85.5411H88.2848Z",
15753
+ fill: "#3B5BDB"
15754
+ }), /*#__PURE__*/React.createElement("path", {
15755
+ d: "M93.5801 84.8059V78.6099H96.2278V85.5411H100.203C100.932 85.5411 101.523 86.1321 101.523 86.8613C101.523 87.5904 100.932 88.1815 100.203 88.1815H96.9557C95.0914 88.1815 93.5801 86.6702 93.5801 84.8059Z",
15756
+ fill: "#3B5BDB"
15757
+ }), /*#__PURE__*/React.createElement("path", {
15758
+ d: "M136.275 57.4861V60.7867L144.526 65.2615C145.226 65.6411 146.093 65.5128 146.653 64.9468L157.292 54.1855H153.651L145.62 62.5146C145.478 62.6628 145.252 62.6943 145.074 62.5909L136.275 57.4861Z",
15759
+ fill: "#3B5BDB"
15760
+ }), /*#__PURE__*/React.createElement("path", {
15761
+ d: "M150.011 52.8653C150.011 52.1361 150.603 51.5449 151.334 51.5449H162.257C162.988 51.5449 163.581 52.1361 163.581 52.8653V52.8653C163.581 53.5945 162.988 54.1856 162.257 54.1856H151.334C150.603 54.1856 150.011 53.5945 150.011 52.8653V52.8653Z",
15762
+ fill: "#3B5BDB"
15763
+ }), /*#__PURE__*/React.createElement("path", {
15764
+ fillRule: "evenodd",
15765
+ clipRule: "evenodd",
15766
+ d: "M66.0598 63.1006C66.8563 63.1974 67.4234 63.9203 67.3264 64.7151C67.2642 65.225 67.232 65.7448 67.232 66.2726C67.232 68.2087 67.6641 70.0401 68.4359 71.6798C68.777 72.4045 68.4648 73.268 67.7385 73.6084C67.0122 73.9489 66.1468 73.6373 65.8057 72.9125C64.8561 70.8952 64.3262 68.6436 64.3262 66.2726C64.3262 65.6273 64.3654 64.9905 64.4418 64.3645C64.5389 63.5697 65.2632 63.0038 66.0598 63.1006Z",
15767
+ fill: "#3B5BDB"
15768
+ }), /*#__PURE__*/React.createElement("path", {
15769
+ d: "M47.5758 54.6778V57.8819L45.9209 58.594C52.1818 61.3531 66.1101 67.4944 66.1101 67.4944V70.5205L42.8235 60.2201C41.5667 59.6641 41.5203 57.7668 42.7481 57.1404L47.5758 54.6778Z",
15770
+ fill: "#3B5BDB"
15771
+ }), /*#__PURE__*/React.createElement("g", {
15772
+ filter: "url(#filter2_d_2902_16320)"
15773
+ }, /*#__PURE__*/React.createElement("rect", {
15774
+ x: "147.529",
15775
+ y: "30.5864",
15776
+ width: "18.5343",
15777
+ height: "18.4832",
15778
+ rx: "8.439",
15779
+ fill: "#3B5BDB"
15780
+ })), /*#__PURE__*/React.createElement("path", {
15781
+ d: "M157.607 45.072V44.0848C159.069 43.8917 159.983 43.0534 159.983 41.8511C159.983 40.6543 159.386 39.7829 157.946 39.4354L156.67 39.121C155.811 38.8949 155.559 38.6633 155.559 38.2C155.559 37.6209 156.095 37.2238 156.966 37.2238C157.809 37.2238 158.127 37.654 158.226 38.3599L159.841 38.3324C159.857 37.1907 159.02 36.2421 157.64 35.9994V34.9019H156.254V35.9939C154.841 36.209 153.834 37.0859 153.845 38.3875C153.861 39.6119 154.639 40.3234 155.849 40.5716L157.147 40.8528C157.919 41.0293 158.286 41.272 158.286 41.8621C158.286 42.4302 157.722 42.8549 156.933 42.8549C156.057 42.8549 155.444 42.4688 155.274 41.7408L153.609 41.7739C153.757 43.1692 154.726 43.9193 156.227 44.0903V45.072H157.607Z",
15782
+ fill: "white"
15783
+ }), /*#__PURE__*/React.createElement("mask", {
15784
+ id: "mask0_2902_16320",
15785
+ style: {
15786
+ maskType: "alpha"
15787
+ },
15788
+ maskUnits: "userSpaceOnUse",
15789
+ x: "153",
15790
+ y: "34",
15791
+ width: "7",
15792
+ height: "12"
15793
+ }, /*#__PURE__*/React.createElement("path", {
15794
+ d: "M157.607 45.072V44.0848C159.069 43.8917 159.983 43.0534 159.983 41.8511C159.983 40.6543 159.386 39.7829 157.946 39.4354L156.67 39.121C155.811 38.8949 155.559 38.6633 155.559 38.2C155.559 37.6209 156.095 37.2238 156.966 37.2238C157.809 37.2238 158.127 37.654 158.226 38.3599L159.841 38.3324C159.857 37.1907 159.02 36.2421 157.64 35.9994V34.9019H156.254V35.9939C154.841 36.209 153.834 37.0859 153.845 38.3875C153.861 39.6119 154.639 40.3234 155.849 40.5716L157.147 40.8528C157.919 41.0293 158.286 41.272 158.286 41.8621C158.286 42.4302 157.722 42.8549 156.933 42.8549C156.057 42.8549 155.444 42.4688 155.274 41.7408L153.609 41.7739C153.757 43.1692 154.726 43.9193 156.227 44.0903V45.072H157.607Z",
15795
+ fill: "white"
15796
+ })), /*#__PURE__*/React.createElement("g", {
15797
+ mask: "url(#mask0_2902_16320)"
15798
+ }, /*#__PURE__*/React.createElement("rect", {
15799
+ x: "149.147",
15800
+ y: "32.2002",
15801
+ width: "15.2974",
15802
+ height: "15.2552",
15803
+ fill: "white"
15804
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
15805
+ id: "filter0_d_2902_16320",
15806
+ x: "125.125",
15807
+ y: "9.03863",
15808
+ width: "59.8681",
15809
+ height: "31.5443",
15810
+ filterUnits: "userSpaceOnUse",
15811
+ colorInterpolationFilters: "sRGB"
15812
+ }, /*#__PURE__*/React.createElement("feFlood", {
15813
+ floodOpacity: "0",
15814
+ result: "BackgroundImageFix"
15815
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15816
+ "in": "SourceAlpha",
15817
+ type: "matrix",
15818
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
15819
+ result: "hardAlpha"
15820
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
15821
+ stdDeviation: "5.57566"
15822
+ }), /*#__PURE__*/React.createElement("feComposite", {
15823
+ in2: "hardAlpha",
15824
+ operator: "out"
15825
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15826
+ type: "matrix",
15827
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
15828
+ }), /*#__PURE__*/React.createElement("feBlend", {
15829
+ mode: "normal",
15830
+ in2: "BackgroundImageFix",
15831
+ result: "effect1_dropShadow_2902_16320"
15832
+ }), /*#__PURE__*/React.createElement("feBlend", {
15833
+ mode: "normal",
15834
+ "in": "SourceGraphic",
15835
+ in2: "effect1_dropShadow_2902_16320",
15836
+ result: "shape"
15837
+ })), /*#__PURE__*/React.createElement("filter", {
15838
+ id: "filter1_d_2902_16320",
15839
+ x: "115.195",
15840
+ y: "16.9595",
15841
+ width: "75.5888",
15842
+ height: "31.5443",
15843
+ filterUnits: "userSpaceOnUse",
15844
+ colorInterpolationFilters: "sRGB"
15845
+ }, /*#__PURE__*/React.createElement("feFlood", {
15846
+ floodOpacity: "0",
15847
+ result: "BackgroundImageFix"
15848
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15849
+ "in": "SourceAlpha",
15850
+ type: "matrix",
15851
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
15852
+ result: "hardAlpha"
15853
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
15854
+ stdDeviation: "5.57566"
15855
+ }), /*#__PURE__*/React.createElement("feComposite", {
15856
+ in2: "hardAlpha",
15857
+ operator: "out"
15858
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15859
+ type: "matrix",
15860
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
15861
+ }), /*#__PURE__*/React.createElement("feBlend", {
15862
+ mode: "normal",
15863
+ in2: "BackgroundImageFix",
15864
+ result: "effect1_dropShadow_2902_16320"
15865
+ }), /*#__PURE__*/React.createElement("feBlend", {
15866
+ mode: "normal",
15867
+ "in": "SourceGraphic",
15868
+ in2: "effect1_dropShadow_2902_16320",
15869
+ result: "shape"
15870
+ })), /*#__PURE__*/React.createElement("filter", {
15871
+ id: "filter2_d_2902_16320",
15872
+ x: "132.529",
15873
+ y: "15.5864",
15874
+ width: "48.5342",
15875
+ height: "48.4834",
15876
+ filterUnits: "userSpaceOnUse",
15877
+ colorInterpolationFilters: "sRGB"
15878
+ }, /*#__PURE__*/React.createElement("feFlood", {
15879
+ floodOpacity: "0",
15880
+ result: "BackgroundImageFix"
15881
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15882
+ "in": "SourceAlpha",
15883
+ type: "matrix",
15884
+ values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
15885
+ result: "hardAlpha"
15886
+ }), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
15887
+ stdDeviation: "7.5"
15888
+ }), /*#__PURE__*/React.createElement("feComposite", {
15889
+ in2: "hardAlpha",
15890
+ operator: "out"
15891
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
15892
+ type: "matrix",
15893
+ values: "0 0 0 0 0.0823529 0 0 0 0 0.454902 0 0 0 0 0.615686 0 0 0 0.2 0"
15894
+ }), /*#__PURE__*/React.createElement("feBlend", {
15895
+ mode: "normal",
15896
+ in2: "BackgroundImageFix",
15897
+ result: "effect1_dropShadow_2902_16320"
15898
+ }), /*#__PURE__*/React.createElement("feBlend", {
15899
+ mode: "normal",
15900
+ "in": "SourceGraphic",
15901
+ in2: "effect1_dropShadow_2902_16320",
15902
+ result: "shape"
15903
+ }))));
15904
+ };
15905
+
15906
+ var GuidedCheckoutImage = function GuidedCheckoutImage() {
15907
+ return /*#__PURE__*/React.createElement("svg", {
15908
+ width: "186",
15909
+ height: "96",
15910
+ viewBox: "0 0 186 96",
15911
+ fill: "none",
15912
+ xmlns: "http://www.w3.org/2000/svg"
15913
+ }, /*#__PURE__*/React.createElement("rect", {
15914
+ x: "48.6582",
15915
+ y: "12.7822",
15916
+ width: "86.9263",
15917
+ height: "65.0716",
15918
+ rx: "5",
15919
+ fill: "white"
15920
+ }), /*#__PURE__*/React.createElement("path", {
15921
+ opacity: "0.3",
15922
+ fillRule: "evenodd",
15923
+ clipRule: "evenodd",
15924
+ d: "M157.658 6.96909C158.29 5.32214 159.882 4.15137 161.751 4.15137C163.788 4.15137 165.496 5.54154 165.991 7.42414C166.168 7.38839 166.352 7.36921 166.54 7.36921C168.076 7.36921 169.32 8.61442 169.32 10.1505C169.32 11.6866 168.076 12.9319 166.54 12.9319H154.54C153.004 12.9319 151.759 11.6866 151.759 10.1505C151.759 8.61442 153.004 7.36921 154.54 7.36921C154.946 7.36921 155.331 7.4586 155.679 7.61526C156.022 7.17907 156.554 6.89791 157.151 6.89791C157.327 6.89791 157.496 6.92359 157.658 6.96909ZM29.9007 45.3418C30.0511 43.7052 31.414 42.4238 33.0737 42.4238C34.5347 42.4238 35.765 43.4168 36.1417 44.7708C36.5175 44.4868 36.9822 44.3165 37.4875 44.3165C38.7303 44.3165 39.738 45.3343 39.738 46.5896C39.738 47.8451 38.7303 48.8629 37.4875 48.8629H28.783C27.721 48.8629 26.86 47.9932 26.86 46.9206C26.86 45.8478 27.721 44.9781 28.783 44.9781C29.2002 44.9781 29.5853 45.1138 29.9007 45.3418ZM27.3073 7.16256C25.3138 7.16256 23.6159 8.41138 22.9411 10.1681C22.7693 10.1196 22.5883 10.0922 22.4008 10.0922C21.7628 10.0922 21.1962 10.3921 20.8302 10.8574C20.459 10.6903 20.0486 10.5949 19.6151 10.5949C17.9772 10.5949 16.6494 11.9231 16.6494 13.5617C16.6494 15.2002 17.9772 16.5284 19.6151 16.5284H32.4158C34.0534 16.5284 35.3811 15.2002 35.3811 13.5617C35.3811 11.9231 34.0534 10.5949 32.4158 10.5949C32.2148 10.5949 32.019 10.6154 31.8294 10.6535C31.3019 8.64541 29.4803 7.16256 27.3073 7.16256ZM112.12 87.6601C112.12 85.2362 103.187 83.2712 92.1679 83.2712C81.149 83.2712 72.2157 85.2362 72.2157 87.6601C72.2157 90.084 81.149 92.049 92.1679 92.049C103.187 92.049 112.12 90.084 112.12 87.6601ZM171.486 29.0796C171.486 27.8253 170.469 26.8086 169.215 26.8086H145.438C145.347 26.8086 145.256 26.8141 145.165 26.8251C143.92 26.9761 143.033 28.1079 143.184 29.353L145.146 45.5311C145.284 46.6712 146.252 47.5287 147.401 47.5287H167.252C168.401 47.5287 169.369 46.6712 169.507 45.5311L171.469 29.353C171.48 29.2623 171.486 29.171 171.486 29.0796ZM133.401 12.7851L133.282 12.7822H51.0491C49.7687 12.7822 48.7236 13.7791 48.6615 15.0321L48.6585 15.1503V20.3601H135.672V15.1503C135.672 13.882 134.666 12.8467 133.401 12.7851Z",
15925
+ fill: "#3B5BDB"
15926
+ }), /*#__PURE__*/React.createElement("path", {
15927
+ d: "M89.5104 77.7962C90.2778 77.7962 90.9044 78.3932 90.9429 79.1439L90.9447 79.217V87.6425C90.9447 88.4027 90.3421 89.0235 89.5842 89.0615L89.5104 89.0634H84.0843C83.2921 89.0634 82.6499 88.4272 82.6499 87.6425C82.6499 86.8824 83.2526 86.2616 84.0104 86.2236L84.0843 86.2217L88.0759 86.2216L88.0761 79.217C88.0761 78.4568 88.6788 77.8361 89.4366 77.798L89.5104 77.7962ZM94.825 77.5318C95.5924 77.5318 96.219 78.1288 96.2574 78.8795L96.2593 78.9527L96.2589 86.2216L100.251 86.2218C101.019 86.2218 101.645 86.8188 101.684 87.5695L101.685 87.6427C101.685 88.4028 101.083 89.0236 100.325 89.0616L100.251 89.0635H94.825C94.0576 89.0635 93.431 88.4665 93.3926 87.7158L93.3907 87.6427V78.9527C93.3907 78.1679 94.0328 77.5318 94.825 77.5318ZM48.3193 58.0547C47.1765 59.0379 45.5982 60.3956 43.5845 62.1279L59.6704 65.8774C60.4641 64.8028 61.7449 64.1047 63.1907 64.1047C64.0309 64.1047 64.7119 64.7794 64.7119 65.6116C64.7119 66.4186 64.0715 67.0775 63.2666 67.1167L63.1907 67.1185C62.4628 67.1185 61.8703 67.7076 61.8703 68.4369C61.8703 69.1422 62.4239 69.7162 63.1184 69.7537L63.1907 69.7556H65.6733C66.5134 69.7556 67.1945 70.4303 67.1945 71.2625C67.1945 72.0696 66.5541 72.7284 65.7492 72.7676L65.6733 72.7695H63.1907C60.8966 72.7695 59.0179 71.0118 58.8414 68.7808L40.2249 64.4414C39.4805 64.2679 38.9937 63.5802 39.0573 62.8472C39.021 62.4108 39.1765 61.9645 39.5143 61.6406L39.5759 61.5847L48.0414 54.3022C48.6758 53.7565 48.8917 57.5624 48.3193 58.0547ZM163.601 50.3541C164.441 50.3541 165.123 51.0288 165.123 51.861C165.123 52.6681 164.482 53.3269 163.677 53.3661L163.601 53.3679L158.396 53.3677L146.317 66.1842C145.798 66.7342 144.954 66.8185 144.337 66.3933L144.272 66.3458C140.542 63.4754 137.745 61.3226 135.88 59.8874C135.492 59.5886 135.856 56.1092 136.515 56.5623L136.582 56.6113L145.041 63.1214L154.234 53.3677L151.051 53.3679C150.211 53.3679 149.53 52.6933 149.53 51.861C149.53 51.054 150.17 50.3951 150.975 50.356L151.051 50.3541H163.601ZM170.063 26.8086C170.903 26.8086 171.584 27.4833 171.584 28.3155C171.584 28.3756 171.58 28.4356 171.573 28.4953L169.425 46.2015C169.334 46.9588 168.685 47.5287 167.915 47.5287H146.737C145.967 47.5287 145.319 46.9588 145.227 46.2015L143.079 28.4953C142.979 27.669 143.574 26.9186 144.408 26.8194C144.468 26.8122 144.529 26.8086 144.59 26.8086H170.063ZM147.196 43.4878L147.412 45.2683L148.993 45.2683L147.196 43.4878ZM153.523 42.2217L150.447 45.2683H156.598L153.523 42.2217ZM161.129 42.2217L158.054 45.2683H164.204L161.129 42.2217ZM167.456 43.489L165.66 45.2683L167.24 45.2683L167.456 43.489ZM164.932 38.4548L161.667 41.6892L164.932 44.9236L167.603 42.2774L167.73 41.2271L164.932 38.4548ZM153.523 34.6878L150.258 37.9222L153.523 41.1567L155.676 39.0242C155.824 38.8771 156.065 38.8771 156.214 39.0242C156.351 39.16 156.361 39.3737 156.245 39.5215L156.214 39.557L154.061 41.6892L157.326 44.9236L160.591 41.6892L153.523 34.6878ZM149.72 38.4548L146.921 41.2276L147.048 42.2768L149.72 44.9236L152.985 41.6892L149.72 38.4548ZM157.326 30.9202L154.061 34.1547L161.129 41.1567L164.395 37.9222L161.117 34.6753L160.098 35.6903C159.95 35.8378 159.709 35.8383 159.56 35.6916C159.411 35.5448 159.411 35.3063 159.559 35.1588L160.579 34.1427L157.326 30.9202ZM149.72 30.9202L146.105 34.5004L146.806 40.2755L149.182 37.9216L148.136 36.8855L148.104 36.85C147.988 36.7022 147.999 36.4885 148.136 36.3527C148.27 36.2203 148.478 36.207 148.627 36.313L148.674 36.3527L149.72 37.3891L152.985 34.1547L149.72 30.9202ZM164.911 30.8986L161.653 34.141L164.932 37.3891L165.793 36.5365C165.942 36.3894 166.182 36.3894 166.331 36.5365C166.468 36.6723 166.479 36.886 166.363 37.0338L166.331 37.0693L165.47 37.9216L167.846 40.2749L168.546 34.4998L164.911 30.8986ZM155.838 29.0688H151.209L151.399 29.2573L150.258 30.3871L153.523 33.6215L156.788 30.3871L155.648 29.2573L155.838 29.0688ZM163.444 29.0688H158.814L159.005 29.2573L157.864 30.3871L161.116 33.6085L164.373 30.3661L163.254 29.2573L163.444 29.0688ZM148.231 29.0688L145.447 29.069L145.99 33.5494L149.182 30.3877L148.041 29.2573L148.231 29.0688ZM169.205 29.069L166.593 29.0692C166.593 29.1652 166.556 29.2612 166.483 29.3347L165.447 30.365L168.661 33.5489L169.205 29.069ZM150.513 29.0688H148.927L149.72 29.8545L150.513 29.0688ZM158.119 29.0688H156.533L157.326 29.8545L158.119 29.0688ZM165.676 29.0688H164.139L164.91 29.8318L165.676 29.0688Z",
15928
+ fill: "#3B5BDB"
15929
+ }), /*#__PURE__*/React.createElement("path", {
15930
+ d: "M132.372 11.7393C134.772 11.7393 136.73 13.6217 136.789 15.9719L136.791 16.0824L136.79 72.3274L143.659 72.2195C144.319 72.2092 144.863 72.7308 144.873 73.3847C144.884 74.016 144.393 74.5397 143.765 74.5844L143.697 74.5873L136.79 74.6954L136.791 74.8305C136.791 77.195 134.87 79.1138 132.484 79.1723L132.372 79.1736H51.8381C49.4378 79.1736 47.4805 77.2912 47.4208 74.941L47.4194 74.8305L47.4194 74.5938L35.0075 74.7057C34.3474 74.7117 33.8074 74.1864 33.8014 73.5325C33.7956 72.9011 34.2898 72.3807 34.918 72.3402L34.9858 72.3377L47.4194 72.2257L47.4194 66.1561L49.7013 66.5329V74.8305C49.7013 75.9509 50.6103 76.8686 51.754 76.9117L51.8381 76.9133H132.372C133.526 76.9133 134.463 76.0221 134.507 74.9121L134.509 74.8305L134.508 21.1882H49.7008L49.7013 63.5861L47.4194 63.2093V16.0824C47.4194 13.7179 49.3398 11.7991 51.7259 11.7406L51.8381 11.7393H132.372ZM160.689 72.2195C161.349 72.2118 161.89 72.7357 161.898 73.3896C161.905 74.021 161.413 74.5427 160.784 74.5848L160.717 74.5874L150.482 74.7057C149.822 74.7133 149.281 74.1894 149.273 73.5355C149.265 72.9042 149.758 72.3825 150.386 72.3404L150.454 72.3378L160.689 72.2195ZM28.2594 72.2197C28.9194 72.2047 29.4666 72.7225 29.4818 73.3763C29.4964 74.0075 29.0096 74.5347 28.382 74.5838L28.3142 74.5872L23.1075 74.7055C22.4475 74.7205 21.9002 74.2026 21.8851 73.5489C21.8705 72.9177 22.3573 72.3905 22.9849 72.3414L23.0527 72.338L28.2594 72.2197ZM99.0101 51.6069C99.5383 51.6069 99.9664 52.031 99.9664 52.5542C99.9664 54.3368 98.5343 55.7877 96.7477 55.8399L96.6481 55.8414H87.5851C85.7524 55.8414 84.2667 54.3698 84.2667 52.5542C84.2667 52.031 84.6949 51.6069 85.223 51.6069C85.73 51.6069 86.1449 51.9978 86.1772 52.4919L86.1793 52.5542C86.1793 53.2986 86.7686 53.9064 87.5104 53.9449L87.5851 53.9468H96.6481C97.3995 53.9468 98.0131 53.363 98.0519 52.6282L98.0538 52.5542C98.0538 52.031 98.482 51.6069 99.0101 51.6069ZM83.2558 36.9091C84.8477 36.9091 86.2424 37.9324 86.7856 39.4308C86.964 39.9232 86.7058 40.4657 86.2087 40.6425C85.7316 40.8123 85.2078 40.5833 85.0087 40.1291L84.9856 40.0711C84.709 39.3083 84.0213 38.8037 83.2558 38.8037C82.4903 38.8037 81.8026 39.3083 81.5265 40.0709C81.3481 40.5633 80.8006 40.8193 80.3034 40.6426C79.8063 40.466 79.5479 39.9236 79.7263 39.4311C80.2689 37.9326 81.6637 36.9091 83.2558 36.9091ZM101.489 36.9146C103.23 36.9146 104.785 37.9008 105.409 39.3896C105.611 39.87 105.381 40.4212 104.896 40.6207C104.431 40.812 103.901 40.6109 103.68 40.1711L103.653 40.1123C103.329 39.3398 102.475 38.7982 101.489 38.7982C100.536 38.7982 99.7074 39.3032 99.3597 40.0333L99.3244 40.1123C99.1229 40.5927 98.5665 40.8203 98.0816 40.6207C97.5967 40.4212 97.3669 39.87 97.5684 39.3896C98.1928 37.9009 99.748 36.9146 101.489 36.9146ZM158.093 21.1575C158.72 21.1575 159.228 21.6658 159.228 22.293L159.228 26.8082L171.596 26.8084C172.537 26.8084 173.3 27.571 173.3 28.5116V28.8724C173.3 29.8131 172.537 30.5757 171.596 30.5757H143.058C142.117 30.5757 141.354 29.8131 141.354 28.8724V28.5116C141.354 27.571 142.117 26.8084 143.058 26.8084L155.425 26.8082L155.425 22.293C155.425 21.6658 155.934 21.1575 156.561 21.1575H158.093ZM132.372 13.9996H51.8381C50.6833 13.9996 49.7468 14.8907 49.7029 16.0008L49.7013 16.0824L49.7008 19.7677H134.508L134.509 16.0824C134.509 14.9621 133.6 14.0443 132.456 14.0012L132.372 13.9996ZM55.8307 15.6237L55.9131 15.6272C56.3734 15.6662 56.7412 16.0285 56.7829 16.4846L56.7868 16.5712L56.7833 16.6529C56.7439 17.109 56.3775 17.4728 55.9179 17.514L55.8307 17.5179L55.7482 17.5144C55.2586 17.473 54.8743 17.0666 54.8743 16.5712C54.8743 16.0475 55.3025 15.6237 55.8307 15.6237ZM52.4837 15.6237L52.5661 15.6272C53.0266 15.6662 53.3942 16.0285 53.4358 16.4846L53.4398 16.5712L53.4362 16.6529C53.3969 17.109 53.0308 17.4728 52.5709 17.514L52.4837 17.5179L52.4012 17.5144C51.9119 17.473 51.5276 17.0666 51.5276 16.5712C51.5276 16.0475 51.9558 15.6237 52.4837 15.6237ZM59.1774 15.6237L59.2598 15.6272C59.72 15.6662 60.0878 16.0285 60.1295 16.4846L60.1335 16.5712L60.13 16.6529C60.0905 17.109 59.7242 17.4728 59.2646 17.514L59.1774 17.5179L59.0949 17.5144C58.6053 17.473 58.2213 17.0666 58.2213 16.5712C58.2213 16.0475 58.6491 15.6237 59.1774 15.6237Z",
15931
+ fill: "#3B414D"
15932
+ }));
15933
+ };
15934
+
15935
+ var ProfileImage = function ProfileImage() {
15936
+ return /*#__PURE__*/React.createElement("svg", {
15937
+ width: "184",
15938
+ height: "96",
15939
+ viewBox: "0 0 184 96",
15940
+ fill: "none",
15941
+ xmlns: "http://www.w3.org/2000/svg"
15942
+ }, /*#__PURE__*/React.createElement("rect", {
15943
+ width: "100%",
15944
+ height: "100%"
15945
+ }), /*#__PURE__*/React.createElement("path", {
15635
15946
  opacity: "0.301503",
15636
15947
  fillRule: "evenodd",
15637
15948
  clipRule: "evenodd",
15638
- d: "M157.432 143.31C173.852 143.31 187.163 146.266 187.163 149.912C187.163 153.558 173.852 156.514 157.432 156.514C141.012 156.514 127.701 153.558 127.701 149.912C127.701 146.266 141.012 143.31 157.432 143.31ZM41.3941 87.7459C46.9893 87.7459 51.584 92.0228 52.0911 97.4855C53.1543 96.7244 54.4526 96.2715 55.8593 96.2715C59.4395 96.2715 62.3423 99.1744 62.3423 102.755C62.3423 106.335 59.4395 109.238 55.8593 109.238H26.5139C22.3239 109.238 18.9268 105.841 18.9268 101.65C18.9268 97.4605 22.3239 94.0633 26.5139 94.0633C28.2175 94.0633 29.7842 94.6317 31.0509 95.5794C32.3211 91.0603 36.4686 87.7459 41.3941 87.7459ZM289.555 54.7295C291.057 54.7295 292.275 55.9473 292.275 57.4495V79.08C292.275 80.5822 291.057 81.8 289.555 81.8H252.252C250.75 81.8 249.532 80.5822 249.532 79.08V57.4495C249.532 55.9473 250.75 54.7295 252.252 54.7295H289.555ZM64.3171 53.0475C66.8713 53.0475 69.0467 54.6476 69.9112 56.8984C70.1319 56.8362 70.3633 56.8011 70.6035 56.8011C71.4206 56.8011 72.147 57.1854 72.6164 57.7815C73.0915 57.5674 73.6177 57.4452 74.1728 57.4452C76.2714 57.4452 77.9725 59.147 77.9725 61.2464C77.9725 63.3457 76.2714 65.0475 74.1728 65.0475H57.7722C55.6737 65.0475 53.9725 63.3457 53.9725 61.2464C53.9725 59.147 55.6737 57.4452 57.7722 57.4452C58.0293 57.4452 58.2802 57.4714 58.5227 57.5203C59.199 54.9474 61.5333 53.0475 64.3171 53.0475ZM194.464 27C200.473 27 205.344 31.8711 205.344 37.88V39.3591L93.4999 41.3254V34.48C93.4999 30.3489 96.8488 27 100.98 27H194.464ZM40.8804 21.0475C43.8206 21.0475 46.3247 22.8887 47.32 25.4787C47.574 25.4072 47.8403 25.3668 48.1169 25.3668C49.0574 25.3668 49.8936 25.8089 50.4339 26.4949C50.9809 26.2485 51.5866 26.108 52.2255 26.108C54.6413 26.108 56.5995 28.0662 56.5995 30.4819C56.5995 32.8976 54.6413 34.8559 52.2255 34.8559H33.3465C30.9307 34.8559 28.9725 32.8976 28.9725 30.4819C28.9725 28.0662 30.9307 26.108 33.3465 26.108C33.6424 26.108 33.9312 26.1381 34.2103 26.1943C34.9888 23.2337 37.676 21.0475 40.8804 21.0475ZM244.693 7C247.633 7 250.138 8.84119 251.133 11.4312C251.386 11.3597 251.653 11.3193 251.93 11.3193C252.871 11.3193 253.706 11.7614 254.246 12.4474C254.794 12.201 255.399 12.0604 256.038 12.0604C258.454 12.0604 260.412 14.0187 260.412 16.4344C260.412 18.8501 258.454 20.8084 256.038 20.8084H237.159C234.744 20.8084 232.785 18.8501 232.785 16.4344C232.785 14.0187 234.744 12.0604 237.159 12.0604C237.455 12.0604 237.744 12.0906 238.024 12.1468C238.802 9.18622 241.488 7 244.693 7Z",
15639
- fill: themeValues.singleIconColor
15949
+ d: "M94.852 82.878C104.348 82.878 112.046 84.5875 112.046 86.6961C112.046 88.8047 104.348 90.5142 94.852 90.5142C85.3562 90.5142 77.6585 88.8047 77.6585 86.6961C77.6585 84.5875 85.3562 82.878 94.852 82.878ZM72.2787 14.2607C73.4863 14.2607 74.4907 15.1895 74.5849 16.3934L74.8968 20.3792L124.311 20.3797C126.275 20.3797 127.95 21.9865 128.052 23.9685L130.545 72.4173C130.647 74.3994 129.138 76.0061 127.173 76.0061H59.0042C57.0399 76.0061 55.3649 74.3994 55.2629 72.4173L52.7697 23.9685C52.6677 21.9865 54.1773 20.3797 56.1416 20.3797H57.3272L57.2348 18.5853C57.2242 18.3778 57.24 18.1764 57.2793 17.9844L57.1835 16.7544C57.0838 15.4808 58.0355 14.3674 59.3091 14.2677C59.3692 14.263 59.4294 14.2607 59.4897 14.2607H72.2787ZM25.6253 58.5473C27.265 58.5473 28.6115 59.8132 28.7601 61.4301C29.0716 61.2048 29.4521 61.0708 29.8643 61.0708C30.9135 61.0708 31.7642 61.93 31.7642 62.9898C31.7642 64.0495 30.9135 64.9087 29.8643 64.9087H21.2647C20.0368 64.9087 19.0413 63.9032 19.0413 62.6629C19.0413 61.4227 20.0368 60.4172 21.2647 60.4172C21.7639 60.4172 22.2231 60.5854 22.5942 60.8659C22.9665 59.5283 24.1819 58.5473 25.6253 58.5473ZM43.2509 27.4402C43.4641 27.4402 43.6374 27.6701 43.6374 27.9546V50.5727H27.4446V27.9546C27.4446 27.6701 27.6175 27.4402 27.831 27.4402H43.2509ZM171.261 31.6508C172.13 31.6508 172.834 32.3551 172.834 33.2238V45.733C172.834 46.6018 172.13 47.306 171.261 47.306H149.688C148.819 47.306 148.115 46.6018 148.115 45.733V33.2238C148.115 32.3551 148.819 31.6508 149.688 31.6508H171.261ZM18.7873 11.4829C20.6337 11.4829 22.2063 12.6396 22.8313 14.2667C22.9908 14.2217 23.1581 14.1964 23.3317 14.1964C23.9224 14.1964 24.4475 14.4741 24.7868 14.9051C25.1303 14.7503 25.5107 14.662 25.9119 14.662C27.429 14.662 28.6587 15.8922 28.6587 17.4098C28.6587 18.9274 27.429 20.1576 25.9119 20.1576H14.0561C12.5391 20.1576 11.3093 18.9274 11.3093 17.4098C11.3093 15.8922 12.5391 14.662 14.0561 14.662C14.242 14.662 14.4233 14.6809 14.5986 14.7163C15.0875 12.8563 16.775 11.4829 18.7873 11.4829ZM137.732 5.20482C139.701 5.20482 141.379 6.4386 142.045 8.17418C142.215 8.12623 142.394 8.09917 142.579 8.09917C143.21 8.09917 143.769 8.39545 144.131 8.85512C144.498 8.69003 144.903 8.59583 145.331 8.59583C146.95 8.59583 148.261 9.90805 148.261 11.5268C148.261 13.1456 146.95 14.4578 145.331 14.4578H132.685C131.067 14.4578 129.755 13.1456 129.755 11.5268C129.755 9.90805 131.067 8.59583 132.685 8.59583C132.883 8.59583 133.077 8.61604 133.264 8.65372C133.785 6.6698 135.585 5.20482 137.732 5.20482Z",
15950
+ fill: "#3B5BDB"
15640
15951
  }), /*#__PURE__*/React.createElement("path", {
15641
- d: "M214.62 39.3979H104.38C98.3711 39.3979 93.5 44.2691 93.5 50.278V125.518C93.5 131.527 98.3711 136.398 104.38 136.398H214.62C220.629 136.398 225.5 131.527 225.5 125.518V50.278C225.5 44.2691 220.629 39.3979 214.62 39.3979Z",
15952
+ fillRule: "evenodd",
15953
+ clipRule: "evenodd",
15954
+ d: "M83.3809 18.8872C84.6585 18.8872 85.6942 19.9228 85.6942 21.2004C85.6942 21.2673 85.6912 21.3342 85.6854 21.4008L85.631 22.0361C85.6642 22.2027 85.6788 22.3761 85.6726 22.5542L85.6123 24.2892H131.357C133.321 24.2892 134.86 25.8427 134.793 27.759L133.164 74.6024C133.097 76.5188 131.451 78.0723 129.487 78.0723H61.3176C59.3533 78.0723 57.815 76.5188 57.8816 74.6024L59.5108 27.759C59.5774 25.8427 61.2238 24.2892 63.1881 24.2892L65.7718 24.2886L66.0577 21C66.1616 19.8046 67.1623 18.8872 68.3622 18.8872H83.3809Z",
15642
15955
  fill: "white"
15643
15956
  }), /*#__PURE__*/React.createElement("path", {
15644
- d: "M283.856 61.1409H246.553C245.051 61.1409 243.833 62.3587 243.833 63.8609V85.4913C243.833 86.9936 245.051 88.2113 246.553 88.2113H283.856C285.359 88.2113 286.576 86.9936 286.576 85.4913V63.8609C286.576 62.3587 285.359 61.1409 283.856 61.1409Z",
15957
+ fillRule: "evenodd",
15958
+ clipRule: "evenodd",
15959
+ d: "M47.3809 30.8048C47.5941 30.8048 47.7674 30.9397 47.7674 31.1063V52.2024H31.5746V31.1063C31.5746 30.9397 31.7475 30.8048 31.961 30.8048H47.3809ZM167.965 35.3586C168.834 35.3586 169.538 36.0629 169.538 36.9316V49.4408C169.538 50.3096 168.834 51.0138 167.965 51.0138H146.392C145.523 51.0138 144.819 50.3096 144.819 49.4408V36.9316C144.819 36.0629 145.523 35.3586 146.392 35.3586H167.965Z",
15645
15960
  fill: "#CACED8"
15646
15961
  }), /*#__PURE__*/React.createElement("path", {
15647
- d: "M280.7 124.181C281.827 124.152 282.764 125.041 282.793 126.167C282.822 127.242 282.013 127.744 280.96 127.85L280.808 127.86L265.557 128.26C264.431 128.29 263.494 127.401 263.464 126.274C263.436 125.199 264.245 124.297 265.298 124.191L265.45 124.181H280.7ZM88.0248 124.181C89.1514 124.194 90.0536 125.119 90.04 126.245C90.0269 127.321 89.1841 128.192 88.1277 128.257L87.9754 128.261H64.9185C63.7919 128.247 62.8897 127.323 62.9033 126.196C62.9163 125.121 63.7591 124.25 64.8156 124.185L64.9679 124.181H88.0248ZM56.9822 126.116C57.0376 127.19 56.2519 128.112 55.2018 128.245L55.05 128.258H47.2912C46.166 128.316 45.2068 127.451 45.1488 126.326C45.0933 125.252 45.879 124.329 46.9291 124.197L47.0809 124.183H54.8397C55.9649 124.125 56.9241 124.99 56.9822 126.116ZM224.423 124.358L255.529 124.364C256.604 124.352 257.487 125.157 257.5 126.163C257.513 127.123 256.729 127.919 255.722 128L255.577 128.006L224.471 128C223.396 128.012 222.513 127.207 222.5 126.201C222.488 125.241 223.272 124.445 224.278 124.364L224.423 124.358ZM286.576 67.5523V73.2514H243.833V67.5523H286.576ZM148.315 70C150.89 70 153.143 71.6682 154.017 74.1055C154.37 75.0909 153.858 76.1762 152.872 76.5295C151.936 76.8651 150.91 76.4194 150.507 75.5291L150.448 75.3848C150.103 74.4209 149.252 73.791 148.315 73.791C147.432 73.791 146.626 74.349 146.247 75.2183L146.18 75.3848C145.827 76.3703 144.742 76.8827 143.756 76.5295C142.771 76.1762 142.259 75.0909 142.612 74.1055C143.486 71.6681 145.738 70 148.315 70ZM171.828 70C174.404 70 176.656 71.6682 177.53 74.1055C177.883 75.0909 177.371 76.1762 176.386 76.5295C175.449 76.8651 174.423 76.4194 174.02 75.5291L173.962 75.3848C173.616 74.4209 172.765 73.791 171.828 73.791C170.945 73.791 170.14 74.349 169.76 75.2183L169.694 75.3848C169.34 76.3703 168.255 76.8827 167.27 76.5295C166.284 76.1762 165.772 75.0909 166.125 74.1055C166.999 71.6681 169.252 70 171.828 70ZM195.464 24.96C202.496 24.96 208.216 30.578 208.38 37.5706L208.384 37.88L208.383 39H215.548C221.557 39 226.428 43.8711 226.428 49.88V126.429C226.428 132.437 221.557 137.309 215.548 137.309H103.38C97.3712 137.309 92.5001 132.437 92.5001 126.429V44.325L92.4601 44.3254V34.48C92.4601 29.3129 96.5767 25.1072 101.709 24.9637L101.98 24.96H195.464ZM215.548 43.08L96.5801 43.081V126.429C96.5801 130.104 99.4964 133.099 103.141 133.224L103.38 133.229H215.548C219.223 133.229 222.218 130.312 222.344 126.667L222.348 126.429V49.88C222.348 46.2043 219.431 43.2098 215.786 43.0841L215.548 43.08ZM170.148 92.5353C171.195 92.5353 172.044 93.3839 172.044 94.4308C172.044 97.3486 169.736 99.7275 166.846 99.8418L166.628 99.8461H153.123C150.133 99.8461 147.709 97.4214 147.709 94.4308C147.709 93.3839 148.557 92.5353 149.604 92.5353C150.601 92.5353 151.418 93.305 151.494 94.2826L151.5 94.4308C151.5 95.278 152.148 95.9738 152.976 96.0485L153.123 96.0551H166.628C167.475 96.0551 168.171 95.4064 168.246 94.5786L168.253 94.4308C168.253 93.3839 169.101 92.5353 170.148 92.5353ZM283.856 61.1409C285.359 61.1409 286.576 62.3587 286.576 63.8609V85.4914C286.576 86.9936 285.359 88.2114 283.856 88.2114H246.553C245.051 88.2114 243.833 86.9936 243.833 85.4914V63.8609C243.833 62.3587 245.051 61.1409 246.553 61.1409H283.856ZM283.856 63.1809H246.553C246.212 63.1809 245.929 63.4325 245.881 63.7604L245.873 63.8609V85.4914C245.873 85.8328 246.125 86.1154 246.453 86.164L246.553 86.1714H283.856C284.198 86.1714 284.48 85.9198 284.529 85.5919L284.536 85.4914V63.8609C284.536 63.5195 284.285 63.2369 283.957 63.1883L283.856 63.1809ZM279.61 79.508C280.361 79.508 280.97 80.1169 280.97 80.868V80.9975C280.97 81.7486 280.361 82.3575 279.61 82.3575H272.357C271.606 82.3575 270.997 81.7486 270.997 80.9975V80.868C270.997 80.1169 271.606 79.508 272.357 79.508H279.61ZM195.464 29.04H101.98C99.049 29.04 96.6593 31.3582 96.5444 34.2612L96.5401 34.48V39H204.303L204.304 37.88C204.304 33.0849 200.486 29.1816 195.725 29.0437L195.464 29.04Z",
15962
+ d: "M71.9311 13.8795C73.8589 13.8795 75.4809 15.4355 75.5814 17.3925L75.5914 17.7305L83.8477 17.7305C85.0292 17.7305 86.0727 18.321 86.6993 19.2229L124.311 19.2231C126.63 19.2231 128.625 20.9098 129.104 23.1328L131.357 23.1325C133.921 23.1325 135.962 25.1454 135.952 27.6566L135.949 27.7992L134.415 71.9173L151.583 71.9215C152.205 71.9144 152.715 72.3801 152.723 72.9618C152.73 73.517 152.277 73.9771 151.695 74.024L151.611 74.0279L134.341 74.0235L134.32 74.6426C134.233 77.1397 132.149 79.1517 129.632 79.2267L129.487 79.2289H61.3175C59.5379 79.2289 58.0104 78.2592 57.2457 76.8263C56.0234 76.3439 55.0325 75.3785 54.5082 74.1747L41.3503 74.1748C40.6988 74.1669 40.177 73.6323 40.1849 72.9808C40.1925 72.3589 40.6799 71.8553 41.2908 71.8176L41.3789 71.8154L54.0735 71.8149L51.6146 24.0279C51.4812 21.4355 53.4392 19.3019 55.9989 19.2252L56.1341 19.2226L56.0798 17.4881C55.9802 15.5523 57.4411 13.9521 59.3519 13.8819L59.4829 13.8795H71.9311ZM83.8477 20.0438H68.8508C68.2698 20.0438 67.779 20.4747 67.7039 21.0508L67.1309 25.445L63.1881 25.4458C61.841 25.4458 60.7114 26.5117 60.6667 27.7992L59.0375 74.6426C58.9938 75.8982 60.0013 76.9157 61.3175 76.9157H129.487C130.834 76.9157 131.963 75.8498 132.008 74.5622L133.637 27.7188C133.681 26.4632 132.673 25.4458 131.357 25.4458L84.4598 25.4452L84.9946 21.35C85.0011 21.3004 85.0043 21.2504 85.0043 21.2004C85.0043 20.5616 84.4865 20.0438 83.8477 20.0438ZM166.14 71.8158C166.791 71.7987 167.333 72.3128 167.35 72.9641C167.367 73.5859 166.899 73.8763 166.29 73.9373L166.202 73.9429L157.382 74.1745C156.731 74.1916 156.189 73.6774 156.172 73.0261C156.156 72.4044 156.623 71.8824 157.232 71.8213L157.32 71.8158H166.14ZM36.7607 72.9343C36.7927 73.5554 36.3384 74.0891 35.7311 74.1655L35.6433 74.1733H31.1562C30.5056 74.2069 29.9508 73.7066 29.9172 73.0559C29.8852 72.4348 30.3396 71.9011 30.9469 71.8247L31.0346 71.8169H35.5217C36.1724 71.7833 36.7271 72.2836 36.7607 72.9343ZM71.9311 16.1928H59.4829C58.8664 16.1928 58.3982 16.6626 58.3893 17.304L58.391 17.3925L58.5206 21.5363H56.1417C54.8818 21.5363 53.9167 22.5228 53.9215 23.7895L53.9248 23.9091L56.418 72.3579C56.4394 72.7726 56.5623 73.1664 56.7614 73.5134L58.3548 27.7188C58.4433 25.1737 60.6065 23.1325 63.1878 23.1325L65.0991 23.132L65.41 20.7516C65.6295 19.0689 67.0313 17.7989 68.7137 17.7332L68.8508 17.7305L73.2776 17.7305L73.2703 17.4881C73.2354 16.81 72.6745 16.244 72.0208 16.1961L71.9311 16.1928ZM102.623 53.4035L102.709 53.4057C103.313 53.4446 103.771 53.966 103.733 54.5701C103.626 56.2271 102.248 57.5614 100.602 57.6287L100.472 57.6314H92.6619C90.9042 57.6314 89.5508 56.1845 89.6639 54.4291C89.7029 53.8249 90.2242 53.3667 90.8283 53.4057C91.4037 53.4428 91.8467 53.9174 91.854 54.4844L91.8518 54.5701C91.8218 55.0356 92.1338 55.3968 92.5815 55.4355L92.6619 55.439H100.472C100.989 55.439 101.457 55.0243 101.535 54.5148L101.545 54.4291C101.582 53.8537 102.056 53.4107 102.623 53.4035ZM47.7674 30.0825L47.7673 30.2991C48.0986 30.4289 48.3457 30.7235 48.3457 31.1063V52.2024C48.3457 52.5218 48.0868 52.7807 47.7674 52.7807H31.5746C31.2552 52.7807 30.9963 52.5218 30.9963 52.2024V31.1063C30.9963 30.7235 31.2432 30.4289 31.5745 30.2991L31.5746 30.0825H47.7674ZM47.1887 32.8626H32.1526L32.1526 51.6237H47.1888L47.1887 32.8626ZM169.538 49.4408C169.538 50.3096 168.834 51.0138 167.965 51.0138H146.392C145.523 51.0138 144.819 50.3096 144.819 49.4408V36.9316C144.819 36.0629 145.523 35.3586 146.392 35.3586H167.965C168.834 35.3586 169.538 36.0629 169.538 36.9316V49.4408ZM39.4646 47.7956C39.7944 47.7956 40.0618 48.063 40.0618 48.3928V49.6515C40.0618 49.9813 39.7944 50.2486 39.4646 50.2486H34.9043C34.5745 50.2486 34.3071 49.9813 34.3071 49.6515V48.3928C34.3071 48.063 34.5745 47.7956 34.9043 47.7956H39.4646ZM168.358 42.362H145.999L145.999 49.4408C145.999 49.6383 146.144 49.8017 146.334 49.8298L146.392 49.8341H167.965C168.162 49.8341 168.326 49.6886 168.354 49.4989L168.358 49.4408L168.358 42.362ZM38.8668 48.9895H35.5011V49.0537H38.8668V48.9895ZM165.509 45.9805C165.944 45.9805 166.296 46.3327 166.296 46.767V46.8419C166.296 47.2763 165.944 47.6284 165.509 47.6284H161.315C160.88 47.6284 160.528 47.2763 160.528 46.8419V46.767C160.528 46.3327 160.88 45.9805 161.315 45.9805H165.509ZM45.1566 42.3614C45.476 42.3614 45.7349 42.6204 45.7349 42.9398V45.8313C45.7349 46.1507 45.476 46.4096 45.1566 46.4096H34.1686C33.8492 46.4096 33.5903 46.1507 33.5903 45.8313V42.9398C33.5903 42.6204 33.8492 42.3614 34.1686 42.3614H45.1566ZM44.5783 43.5181H34.7469V45.253H44.5783V43.5181ZM90.8521 40.371C92.3628 40.371 93.6393 41.3636 94.0634 42.8059C94.2342 43.3867 93.9018 43.996 93.3209 44.1668C92.7678 44.3295 92.1888 44.0357 91.9874 43.5057L91.96 43.4244C91.8058 42.8997 91.3732 42.5633 90.8521 42.5633C90.3229 42.5633 89.8034 42.9085 89.5364 43.4403L89.4893 43.5422C89.2535 44.0998 88.6103 44.3606 88.0527 44.1248C87.4951 43.8889 87.2343 43.2457 87.4701 42.6881C88.0529 41.3103 89.382 40.371 90.8521 40.371ZM104.45 40.371C105.961 40.371 107.237 41.3636 107.661 42.8059C107.832 43.3867 107.5 43.996 106.919 44.1668C106.366 44.3295 105.787 44.0357 105.585 43.5057L105.558 43.4244C105.404 42.8997 104.971 42.5633 104.45 42.5633C103.921 42.5633 103.401 42.9085 103.134 43.4403L103.087 43.5422C102.851 44.0998 102.208 44.3606 101.651 44.1248C101.093 43.8889 100.832 43.2457 101.068 42.6881C101.651 41.3103 102.98 40.371 104.45 40.371ZM45.1566 37.1566C45.476 37.1566 45.7349 37.4155 45.7349 37.7349V40.6265C45.7349 40.9459 45.476 41.2048 45.1566 41.2048H34.1686C33.8492 41.2048 33.5903 40.9459 33.5903 40.6265V37.7349C33.5903 37.4155 33.8492 37.1566 34.1686 37.1566H45.1566ZM44.5783 38.3133H34.7469V40.0482H44.5783V38.3133ZM167.965 36.5384H146.392C146.195 36.5384 146.031 36.6839 146.003 36.8735L145.999 36.9316L145.999 39.0662H168.358L168.358 36.9316C168.358 36.7342 168.213 36.5707 168.023 36.5426L167.965 36.5384ZM39.4429 34.6055C39.7727 34.6055 40.0401 34.8729 40.0401 35.2027C40.0401 35.5106 39.8072 35.764 39.508 35.7964L39.4429 35.7999H34.2161C33.8862 35.7999 33.6189 35.5325 33.6189 35.2027C33.6189 34.8949 33.8518 34.6415 34.151 34.609L34.2161 34.6055H39.4429ZM124.311 21.5363L87.3005 21.5358L87.2884 21.6494L87.0947 23.132L126.685 23.1327C126.295 22.2381 125.42 21.5891 124.433 21.5394L124.311 21.5363Z",
15648
15963
  fill: "#3B414D"
15649
15964
  }), /*#__PURE__*/React.createElement("path", {
15650
- d: "M163.125 136.938L163.125 147.186L169.17 147.186C170.245 147.186 171.126 148.018 171.204 149.074L171.21 149.226C171.21 150.301 170.378 151.183 169.322 151.26L169.17 151.266H161.085C160.01 151.266 159.128 150.434 159.051 149.378L159.045 149.226V136.938H163.125ZM155.206 136.938V148.828C155.206 149.903 154.373 150.784 153.318 150.862L153.166 150.868H145.081C143.954 150.868 143.041 149.954 143.041 148.828C143.041 147.752 143.873 146.871 144.928 146.793L145.081 146.788L151.125 146.787L151.126 136.938H155.206ZM92.5043 102.345C92.4966 102.35 92.494 102.988 92.4932 103.823L92.4925 106.265C92.4924 106.341 92.4923 106.416 92.4922 106.488L92.4914 106.896C92.4899 107.403 92.4869 107.742 92.481 107.747C90.9028 109.118 88.694 111.036 85.8547 113.501L101.261 118.91C102.288 117.146 104.199 115.96 106.387 115.96C107.514 115.96 108.427 116.873 108.427 118C108.427 119.075 107.595 119.957 106.539 120.034L106.387 120.04C105.367 120.04 104.54 120.867 104.54 121.887C104.54 122.859 105.29 123.656 106.243 123.73L106.387 123.735H109.783C110.91 123.735 111.823 124.649 111.823 125.775C111.823 126.851 110.991 127.732 109.936 127.81L109.783 127.815H106.387C103.489 127.815 101.077 125.736 100.562 122.987L81.8461 116.42C81.1978 116.193 80.7368 115.671 80.5604 115.057C80.0263 114.262 80.1207 113.19 80.7967 112.499L80.9186 112.384L92.297 102.503C92.3387 102.467 92.4374 102.395 92.488 102.358L92.5043 102.345ZM268.895 93.9879C270.022 93.9879 270.935 94.9013 270.935 96.0279C270.935 97.1034 270.103 97.9845 269.047 98.0623L268.895 98.0679L263.322 98.0681C263.251 98.144 263.174 98.2153 263.09 98.281L262.96 98.3742L236.748 115.767C236.067 116.219 235.187 116.218 234.51 115.778L234.369 115.678C230.885 112.971 228.272 110.941 226.529 109.587C226.52 109.58 226.514 109.172 226.511 108.363L226.51 108.019C226.51 107.958 226.51 107.895 226.51 107.83L226.51 106.728C226.51 106.646 226.51 106.562 226.51 106.476L226.511 105.939C226.512 105.473 226.513 104.964 226.515 104.409L235.713 111.556L256.041 98.0675L252.027 98.0679C250.9 98.0679 249.987 97.1546 249.987 96.0279C249.987 94.9525 250.819 94.0714 251.875 93.9935L252.027 93.9879H268.895ZM240.628 66.1276C245.545 66.1276 249.532 70.1144 249.532 75.0323C249.532 79.9503 245.545 83.9371 240.628 83.9371C235.71 83.9371 231.723 79.9503 231.723 75.0323C231.723 70.1144 235.71 66.1276 240.628 66.1276ZM289.555 53.7295C291.543 53.7295 293.167 55.2893 293.27 57.2519L293.275 57.4495V79.08C293.275 81.0682 291.715 82.6921 289.753 82.7948L289.555 82.8L286.249 82.7948V80.7948L289.555 80.8C290.455 80.8 291.194 80.1088 291.269 79.2284L291.275 79.08L291.274 67.8395L286.275 67.84V62.1409L291.274 62.1405L291.275 57.4495C291.275 56.5496 290.584 55.8111 289.704 55.7358L289.555 55.7295H252.252C251.352 55.7295 250.614 56.4206 250.539 57.3011L250.532 57.4495V61.1409H248.532V57.4495C248.532 55.4613 250.092 53.8373 252.055 53.7346L252.252 53.7295H289.555Z",
15651
- fill: themeValues.singleIconColor
15965
+ d: "M98.1446 79.1933L98.1445 85.1196L101.64 85.1196C102.262 85.1196 102.772 85.6009 102.817 86.2114L102.82 86.2994C102.82 86.9213 102.339 87.4309 101.729 87.4759L101.64 87.4792H96.9648C96.3429 87.4792 95.8334 86.9979 95.7883 86.3875L95.7851 86.2994V79.1933H98.1446ZM93.5647 79.1933V86.0691C93.5647 86.6911 93.0834 87.2006 92.473 87.2456L92.3849 87.2489H87.7093C87.0577 87.2489 86.5295 86.7207 86.5295 86.0691C86.5295 85.4472 87.0108 84.9376 87.6212 84.8926L87.7093 84.8894L91.2048 84.8889L91.2052 79.1933H93.5647ZM159.313 54.3545C159.964 54.3545 160.493 54.8827 160.493 55.5342C160.493 56.1562 160.011 56.6657 159.401 56.7108L159.313 56.714L156.09 56.7141C156.049 56.758 156.004 56.7992 155.955 56.8372L155.881 56.8911L140.722 66.9493C140.328 67.2108 139.819 67.2102 139.428 66.9562L139.346 66.8979C137.331 65.3329 135.82 64.1588 134.812 63.3756C134.806 63.3708 134.802 63.0684 134.801 62.4686L134.801 61.5763C134.802 61.2284 134.803 60.83 134.804 60.3813L140.123 64.5143L151.879 56.7138L149.558 56.714C148.906 56.714 148.378 56.1858 148.378 55.5342C148.378 54.9123 148.859 54.4028 149.47 54.3577L149.558 54.3545H159.313ZM47.1807 55.2058C47.8322 55.2058 48.3604 55.734 48.3604 56.3855C48.3604 57.0075 47.8792 57.517 47.2687 57.5621L47.1807 57.5653L44.8141 57.5651L51.4387 64.2677L57.1838 59.2789C57.2079 59.258 57.265 59.2166 57.2943 59.1953L57.3034 59.1884L57.3027 59.197C57.2994 59.2522 57.298 59.5369 57.2975 59.9135L57.2971 61.1812C57.297 61.2281 57.297 61.2745 57.297 61.3202L57.2965 61.7055C57.2958 62.0603 57.2941 62.3082 57.2903 62.3115C56.1481 63.3034 54.4349 64.7911 52.1507 66.7748L52.1408 66.7828L52.131 66.7916C52.1196 66.8012 52.108 66.8105 52.0963 66.8195L52.1507 66.7748C52.1234 66.7985 52.0953 66.8208 52.0666 66.8415C52.0515 66.8525 52.0361 66.8631 52.0205 66.8733C52.0085 66.881 51.9963 66.8886 51.984 66.896C51.9689 66.9052 51.9537 66.9139 51.9383 66.9222C51.9246 66.9295 51.9108 66.9366 51.897 66.9435C51.8846 66.9496 51.8719 66.9556 51.8591 66.9613C51.8435 66.9682 51.8281 66.9747 51.8125 66.9809C51.7955 66.9877 51.7782 66.9941 51.7607 67C51.7491 67.0041 51.7376 67.0078 51.726 67.0114C51.7114 67.0159 51.6966 67.0201 51.6817 67.0241C51.6603 67.0298 51.6389 67.0349 51.6174 67.0393C51.6118 67.0404 51.6061 67.0416 51.6005 67.0426C51.5761 67.0474 51.5515 67.0513 51.5269 67.0544C51.5187 67.0554 51.5104 67.0564 51.502 67.0573C51.4808 67.0596 51.4597 67.0612 51.4384 67.0623C51.4263 67.0629 51.4143 67.0633 51.4023 67.0636C51.3866 67.0639 51.3706 67.0639 51.3546 67.0636C51.3386 67.0633 51.3228 67.0627 51.307 67.0618C51.2935 67.061 51.2799 67.0599 51.2665 67.0586C51.248 67.0569 51.2293 67.0547 51.2107 67.0521C51.2008 67.0507 51.1912 67.0492 51.1815 67.0475C51.162 67.0443 51.1424 67.0405 51.1228 67.0362C51.1064 67.0326 51.0904 67.0287 51.0744 67.0245C51.0609 67.021 51.0474 67.0171 51.034 67.0131C50.9782 66.9961 50.9233 66.975 50.87 66.9496C50.8416 66.9361 50.814 66.9216 50.7869 66.9059C50.7553 66.8877 50.7242 66.8678 50.694 66.8463C50.6867 66.8409 50.6794 66.8357 50.6723 66.8303C50.6537 66.8166 50.6354 66.8021 50.6175 66.787C50.6161 66.7856 50.6144 66.7842 50.6127 66.7828L50.5888 66.7619C50.5737 66.7484 50.5589 66.7343 50.5443 66.7198L50.5381 66.7134L42.2934 58.3715C42.072 58.1475 41.9587 57.8573 41.953 57.5655L36.771 57.5653C36.1195 57.5653 35.5913 57.0371 35.5913 56.3855C35.5913 55.7636 36.0726 55.2541 36.683 55.209L36.771 55.2058H47.1807ZM43.251 26.8618C43.7967 26.8618 44.1763 27.3304 44.2128 27.869L44.2157 27.9546V30.0829C44.2157 30.0829 43.9267 30.0926 43.6376 30.0975L43.6374 30.1386H31.3335V31.2409L28.0228 31.2408L28.0231 41.3851C28.4789 41.237 28.9625 41.1508 29.4641 41.1362L29.6159 41.134C32.4601 41.134 34.7657 43.4397 34.7657 46.2838C34.7657 49.1279 32.4601 51.4335 29.6159 51.4335C29.0258 51.4335 28.4589 51.3343 27.931 51.1516L27.4447 51.151C27.1485 51.151 26.9043 50.9284 26.8704 50.6413C25.4256 49.7291 24.4662 48.1185 24.4662 46.2838C24.4662 44.4508 25.4239 42.8414 26.8662 41.9289L26.8663 27.9546C26.8663 27.4096 27.2183 26.9139 27.7463 26.8657L27.8311 26.8618H43.251ZM142.965 38.2425C145.809 38.2425 148.115 40.5481 148.115 43.3922C148.115 46.2363 145.809 48.542 142.965 48.542C140.121 48.542 137.816 46.2363 137.816 43.3922C137.816 40.5481 140.121 38.2425 142.965 38.2425ZM171.261 31.0725C172.411 31.0725 173.35 31.9745 173.409 33.1096L173.412 33.2238V45.733C173.412 46.8828 172.51 47.822 171.375 47.8814L171.261 47.8843H169.053V46.7277H171.261C171.781 46.7277 172.208 46.328 172.252 45.8188L172.256 45.733L172.255 39.2325L169.364 39.2328V35.9369L172.255 35.9367L172.256 33.2238C172.256 32.7034 171.856 32.2763 171.347 32.2328L171.261 32.2291H149.688C149.168 32.2291 148.741 32.6288 148.697 33.138L148.693 33.2238V35.9585H147.537V33.2238C147.537 32.074 148.439 31.1349 149.574 31.0755L149.688 31.0725H171.261ZM31.5746 36.6529V37.2312L29.637 37.2306V38.8696L31.5746 38.87V39.4483H29.0587V36.6529H31.5746ZM31.2748 33.1688V33.7472L29.637 33.7469V35.3858L31.2748 35.386V35.9643H29.0587V33.1688H31.2748Z",
15966
+ fill: "#3B5BDB"
15652
15967
  }), /*#__PURE__*/React.createElement("path", {
15653
15968
  fillRule: "evenodd",
15654
15969
  clipRule: "evenodd",
15655
- d: "M241.696 70.4019L241.696 73.9629L245.258 73.9638V76.1009L241.696 76.1009L241.696 79.6628H239.559L239.558 76.1009L235.997 76.1009V73.9638L239.558 73.9629L239.559 70.4019H241.696Z",
15970
+ d: "M30.2338 43.6059L30.2338 45.6653L32.2937 45.6658V46.9018L30.2338 46.9017L30.2338 48.9617H28.9979L28.9974 46.9017L26.938 46.9018V45.6658L28.9974 45.6653L28.9979 43.6059H30.2338ZM143.583 40.7144L143.583 42.7737L145.643 42.7743V44.0102L143.583 44.0102L143.583 46.0701H142.347L142.347 44.0102L140.287 44.0102V42.7743L142.347 42.7737L142.347 40.7144H143.583Z",
15656
15971
  fill: "white"
15657
15972
  }));
15658
15973
  };
15659
15974
 
15660
- var WalletBannerIcon$1 = themeComponent(WalletBannerIcon, "Icons", fallbackValues$2, "primary");
15661
-
15662
15975
  var color$2 = "#15749D";
15663
15976
  var hoverColor$1 = "#116285";
15664
15977
  var activeColor$1 = "#0E506D";
@@ -19292,7 +19605,7 @@ var cardRegistry = {
19292
19605
  heading: "Manage Your Wallet",
19293
19606
  buttonText: "Go to Wallet",
19294
19607
  text: "Add your personal information and payment methods to make fast payments.",
19295
- cardAction: "/profile/wallet"
19608
+ cardAction: "/profile/settings"
19296
19609
  }, props));
19297
19610
  }
19298
19611
  };
@@ -35303,6 +35616,7 @@ var Card = function Card(_ref) {
35303
35616
  _ref$headerVariant = _ref.headerVariant,
35304
35617
  headerVariant = _ref$headerVariant === void 0 ? "small" : _ref$headerVariant,
35305
35618
  imgSrc = _ref.imgSrc,
35619
+ imgName = _ref.imgName,
35306
35620
  _ref$imgHeight = _ref.imgHeight,
35307
35621
  imgHeight = _ref$imgHeight === void 0 ? "150px" : _ref$imgHeight,
35308
35622
  _ref$imgObjectFit = _ref.imgObjectFit,
@@ -35318,7 +35632,14 @@ var Card = function Card(_ref) {
35318
35632
  _ref$width = _ref.width,
35319
35633
  width = _ref$width === void 0 ? "276px" : _ref$width,
35320
35634
  children = _ref.children;
35321
- var numberOfChildren = (Array.isArray(children) ? children.length : 1) + (text ? 1 : 0) + (imgSrc ? 1 : 0) + (headerText ? 1 : 0);
35635
+ var imageComponents = {
35636
+ ProfileImage: ProfileImage,
35637
+ GuidedCheckoutImage: GuidedCheckoutImage,
35638
+ StandardCheckoutImage: StandardCheckoutImage
35639
+ };
35640
+ var ImageComponent = imageComponents[imgName];
35641
+ var hasImage = ImageComponent || imgSrc;
35642
+ var numberOfChildren = (Array.isArray(children) ? children.length : 1) + (text ? 1 : 0) + (hasImage ? 1 : 0) + (headerText ? 1 : 0);
35322
35643
  return /*#__PURE__*/React.createElement(BoxWithShadow$1, {
35323
35644
  variant: "baseStandard",
35324
35645
  background: themeValues.backgroundColor,
@@ -35342,7 +35663,17 @@ var Card = function Card(_ref) {
35342
35663
  borderRadius: borderRadius,
35343
35664
  padding: padding,
35344
35665
  as: headerAs
35345
- }), imgSrc && /*#__PURE__*/React.createElement(CardImage, {
35666
+ }), ImageComponent && !imgSrc && /*#__PURE__*/React.createElement(Cover, {
35667
+ singleChild: true,
35668
+ minHeight: imgHeight,
35669
+ style: {
35670
+ background: themeValues.imageBackgroundColor
35671
+ }
35672
+ }, /*#__PURE__*/React.createElement(Center, {
35673
+ intrinsic: true
35674
+ }, /*#__PURE__*/React.createElement(ImageComponent, {
35675
+ alt: imgAltText
35676
+ }))), imgSrc && /*#__PURE__*/React.createElement(CardImage, {
35346
35677
  height: imgHeight,
35347
35678
  objectFit: imgObjectFit,
35348
35679
  backgroundColor: themeValues.imageBackgroundColor,
@@ -37359,61 +37690,6 @@ AddressForm.reducer = reducer;
37359
37690
  AddressForm.mapStateToProps = mapStateToProps$1;
37360
37691
  AddressForm.mapDispatchToProps = mapDispatchToProps;
37361
37692
 
37362
- var backgroundColor$6 = "#ebeffb";
37363
- var fallbackValues$z = {
37364
- backgroundColor: backgroundColor$6
37365
- };
37366
-
37367
- var Banner = function Banner(_ref) {
37368
- var themeValues = _ref.themeValues,
37369
- heading = _ref.heading,
37370
- subHeading = _ref.subHeading,
37371
- Image = _ref.image,
37372
- _ref$padding = _ref.padding,
37373
- padding = _ref$padding === void 0 ? "0.5rem 1.5rem" : _ref$padding,
37374
- _ref$mobilePadding = _ref.mobilePadding,
37375
- mobilePadding = _ref$mobilePadding === void 0 ? "0.5rem 1rem" : _ref$mobilePadding,
37376
- _ref$minWidth = _ref.minWidth,
37377
- minWidth = _ref$minWidth === void 0 ? "100%" : _ref$minWidth,
37378
- _ref$minHeight = _ref.minHeight,
37379
- minHeight = _ref$minHeight === void 0 ? "auto" : _ref$minHeight,
37380
- _ref$contentSpacing = _ref.contentSpacing,
37381
- contentSpacing = _ref$contentSpacing === void 0 ? "3rem" : _ref$contentSpacing,
37382
- _ref$mobileContentSpa = _ref.mobileContentSpacing,
37383
- mobileContentSpacing = _ref$mobileContentSpa === void 0 ? "0.5rem" : _ref$mobileContentSpa;
37384
-
37385
- var _useContext = useContext(ThemeContext),
37386
- isMobile = _useContext.isMobile;
37387
-
37388
- return /*#__PURE__*/React.createElement(BoxWithShadow$1, {
37389
- variant: "baseStandard",
37390
- borderRadius: "4px",
37391
- background: themeValues.backgroundColor,
37392
- minWidth: minWidth,
37393
- minHeight: minHeight,
37394
- padding: isMobile ? mobilePadding : padding
37395
- }, /*#__PURE__*/React.createElement(Cluster, {
37396
- childGap: isMobile ? mobileContentSpacing : contentSpacing,
37397
- justify: "center",
37398
- align: "center",
37399
- nowrap: true
37400
- }, /*#__PURE__*/React.createElement(Box, {
37401
- padding: "0",
37402
- maxWidth: isMobile && "54%"
37403
- }, /*#__PURE__*/React.createElement(Stack, {
37404
- childGap: "0"
37405
- }, /*#__PURE__*/React.createElement(Title$1, {
37406
- variant: "small",
37407
- as: "h2",
37408
- weight: FONT_WEIGHT_SEMIBOLD
37409
- }, heading), /*#__PURE__*/React.createElement(Paragraph$1, null, subHeading))), /*#__PURE__*/React.createElement(Box, {
37410
- padding: "0",
37411
- extraStyles: isMobile && "> svg { width: 176px; }"
37412
- }, /*#__PURE__*/React.createElement(Image, null))));
37413
- };
37414
-
37415
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$z);
37416
-
37417
37693
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
37418
37694
  var _newPasswordErrorMess;
37419
37695
 
@@ -37554,7 +37830,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
37554
37830
  var titleColor$1 = "#292A33";
37555
37831
  var headingBackgroundColor = "transparent";
37556
37832
  var bodyBackgroundColor = "transparent";
37557
- var fallbackValues$A = {
37833
+ var fallbackValues$z = {
37558
37834
  titleColor: titleColor$1,
37559
37835
  headingBackgroundColor: headingBackgroundColor,
37560
37836
  bodyBackgroundColor: bodyBackgroundColor
@@ -37681,7 +37957,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
37681
37957
  }, children))));
37682
37958
  };
37683
37959
 
37684
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$A);
37960
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$z);
37685
37961
 
37686
37962
  var ClipboardIcon = function ClipboardIcon(_ref) {
37687
37963
  var themeValues = _ref.themeValues;
@@ -38267,7 +38543,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
38267
38543
 
38268
38544
  var footerBackgroundColor = BRIGHT_GREY;
38269
38545
  var subfooterBackgroundColor = STORM_GREY;
38270
- var fallbackValues$B = {
38546
+ var fallbackValues$A = {
38271
38547
  footerBackgroundColor: footerBackgroundColor,
38272
38548
  subfooterBackgroundColor: subfooterBackgroundColor
38273
38549
  };
@@ -38299,7 +38575,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
38299
38575
  }));
38300
38576
  };
38301
38577
 
38302
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$B);
38578
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$A);
38303
38579
 
38304
38580
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
38305
38581
  var _EmailErrorMessages;
@@ -38350,10 +38626,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
38350
38626
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
38351
38627
 
38352
38628
  var textColor$3 = "#ffffff";
38353
- var backgroundColor$7 = "#182848";
38354
- var fallbackValues$C = {
38629
+ var backgroundColor$6 = "#182848";
38630
+ var fallbackValues$B = {
38355
38631
  textColor: textColor$3,
38356
- backgroundColor: backgroundColor$7
38632
+ backgroundColor: backgroundColor$6
38357
38633
  };
38358
38634
 
38359
38635
  var HighlightTabRow = function HighlightTabRow(_ref) {
@@ -38408,7 +38684,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
38408
38684
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
38409
38685
  };
38410
38686
 
38411
- var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$C));
38687
+ var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$B));
38412
38688
 
38413
38689
  var AccountBillIcon = function AccountBillIcon() {
38414
38690
  return /*#__PURE__*/React.createElement("svg", {
@@ -43818,12 +44094,12 @@ var borderRadius = {
43818
44094
  largeTitle: "0.25rem",
43819
44095
  small: "0.25rem"
43820
44096
  };
43821
- var backgroundColor$8 = {
44097
+ var backgroundColor$7 = {
43822
44098
  "default": WHITE,
43823
44099
  largeTitle: WHITE,
43824
44100
  small: WHITE
43825
44101
  };
43826
- var fallbackValues$D = {
44102
+ var fallbackValues$C = {
43827
44103
  fontSize: fontSize$9,
43828
44104
  fontWeight: fontWeight$5,
43829
44105
  fontColor: fontColor,
@@ -43833,7 +44109,7 @@ var fallbackValues$D = {
43833
44109
  titleSpacing: titleSpacing,
43834
44110
  boxShadow: boxShadow$1,
43835
44111
  borderRadius: borderRadius,
43836
- backgroundColor: backgroundColor$8
44112
+ backgroundColor: backgroundColor$7
43837
44113
  };
43838
44114
 
43839
44115
  /*
@@ -43882,9 +44158,9 @@ var Module = function Module(_ref) {
43882
44158
  }, children)));
43883
44159
  };
43884
44160
 
43885
- var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
44161
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
43886
44162
 
43887
- var backgroundColor$9 = {
44163
+ var backgroundColor$8 = {
43888
44164
  profile: "#3b414d",
43889
44165
  cms: "#3b414d"
43890
44166
  };
@@ -43892,8 +44168,8 @@ var shadowColor = {
43892
44168
  profile: "#292A33",
43893
44169
  cms: "#292A33"
43894
44170
  };
43895
- var fallbackValues$E = {
43896
- backgroundColor: backgroundColor$9,
44171
+ var fallbackValues$D = {
44172
+ backgroundColor: backgroundColor$8,
43897
44173
  shadowColor: shadowColor
43898
44174
  };
43899
44175
 
@@ -43933,7 +44209,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
43933
44209
  }, menuContent));
43934
44210
  };
43935
44211
 
43936
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$E, "profile");
44212
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$D, "profile");
43937
44213
 
43938
44214
  var menu = posed.div({
43939
44215
  invisible: {
@@ -43989,7 +44265,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
43989
44265
  }, menuContent));
43990
44266
  };
43991
44267
 
43992
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$E, "profile");
44268
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$D, "profile");
43993
44269
 
43994
44270
  var IconsModule = function IconsModule(_ref) {
43995
44271
  var icon = _ref.icon,
@@ -44046,7 +44322,7 @@ var activeColor$7 = "#0E506D";
44046
44322
  var linkColor$4 = "#3176AA";
44047
44323
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
44048
44324
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
44049
- var fallbackValues$F = {
44325
+ var fallbackValues$E = {
44050
44326
  color: color$a,
44051
44327
  hoverColor: hoverColor$5,
44052
44328
  activeColor: activeColor$7,
@@ -44158,7 +44434,7 @@ var AutopayModal = function AutopayModal(_ref) {
44158
44434
  }, modalExtraProps), renderAutoPayControl());
44159
44435
  };
44160
44436
 
44161
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$F);
44437
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$E);
44162
44438
 
44163
44439
  var AmountModule = function AmountModule(_ref) {
44164
44440
  var totalAmountDue = _ref.totalAmountDue,
@@ -44954,7 +45230,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
44954
45230
  }, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
44955
45231
  };
44956
45232
 
44957
- var backgroundColor$a = {
45233
+ var backgroundColor$9 = {
44958
45234
  "default": "transparent",
44959
45235
  small: "transparent"
44960
45236
  };
@@ -44970,8 +45246,8 @@ var labeledAmountTotal = {
44970
45246
  "default": "h6",
44971
45247
  small: "p"
44972
45248
  };
44973
- var fallbackValues$G = {
44974
- backgroundColor: backgroundColor$a,
45249
+ var fallbackValues$F = {
45250
+ backgroundColor: backgroundColor$9,
44975
45251
  lineItem: lineItem,
44976
45252
  labeledAmountSubtotal: labeledAmountSubtotal,
44977
45253
  labeledAmountTotal: labeledAmountTotal
@@ -45221,7 +45497,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
45221
45497
  });
45222
45498
  };
45223
45499
 
45224
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$G, "default");
45500
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$F, "default");
45225
45501
 
45226
45502
  var linkColor$5 = {
45227
45503
  "default": "#3176AA"
@@ -45238,7 +45514,7 @@ var fontWeight$7 = {
45238
45514
  var modalLinkHoverFocus$1 = {
45239
45515
  "default": "outline: none; text-decoration: underline;"
45240
45516
  };
45241
- var fallbackValues$H = {
45517
+ var fallbackValues$G = {
45242
45518
  linkColor: linkColor$5,
45243
45519
  fontSize: fontSize$a,
45244
45520
  lineHeight: lineHeight$4,
@@ -45297,7 +45573,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
45297
45573
  }, link));
45298
45574
  };
45299
45575
 
45300
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$H, "default");
45576
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$G, "default");
45301
45577
 
45302
45578
  var PaymentFormACH = function PaymentFormACH(_ref) {
45303
45579
  var _routingNumberErrors, _accountNumberErrors;
@@ -45854,7 +46130,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
45854
46130
  var bodyBackgroundColor$1 = "#eeeeee";
45855
46131
  var borderColor$3 = "".concat(GREY_CHATEAU);
45856
46132
  var focusStyles = "outline: none;";
45857
- var fallbackValues$I = {
46133
+ var fallbackValues$H = {
45858
46134
  headingBackgroundColor: headingBackgroundColor$1,
45859
46135
  headingDisabledColor: headingDisabledColor,
45860
46136
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -46073,7 +46349,7 @@ var RadioSection = function RadioSection(_ref) {
46073
46349
  })));
46074
46350
  };
46075
46351
 
46076
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$I);
46352
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$H);
46077
46353
 
46078
46354
  var RegistrationForm = function RegistrationForm(_ref) {
46079
46355
  var _emailErrorMessages, _passwordErrorMessage;
@@ -46370,7 +46646,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
46370
46646
  var activeTabBackground = "#FFFFFF";
46371
46647
  var activeTabAccent = "#15749D";
46372
46648
  var activeTabHover = "#B8D5E1";
46373
- var fallbackValues$J = {
46649
+ var fallbackValues$I = {
46374
46650
  activeTabBackground: activeTabBackground,
46375
46651
  activeTabAccent: activeTabAccent,
46376
46652
  activeTabHover: activeTabHover
@@ -46449,12 +46725,12 @@ var Tabs = function Tabs(_ref) {
46449
46725
  }))));
46450
46726
  };
46451
46727
 
46452
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$J);
46728
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$I);
46453
46729
 
46454
46730
  var activeTabBackground$1 = "#FFFFFF";
46455
46731
  var activeTabAccent$1 = "#15749D";
46456
46732
  var activeTabHover$1 = "#B8D5E1";
46457
- var fallbackValues$K = {
46733
+ var fallbackValues$J = {
46458
46734
  activeTabBackground: activeTabBackground$1,
46459
46735
  activeTabAccent: activeTabAccent$1,
46460
46736
  activeTabHover: activeTabHover$1
@@ -46510,9 +46786,9 @@ var TabSidebar = function TabSidebar(_ref) {
46510
46786
  })));
46511
46787
  };
46512
46788
 
46513
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$K);
46789
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$J);
46514
46790
 
46515
- var backgroundColor$b = {
46791
+ var backgroundColor$a = {
46516
46792
  "default": "#ffffff",
46517
46793
  footer: "#ffffff"
46518
46794
  };
@@ -46541,8 +46817,8 @@ var modalLinkHoverFocus$2 = {
46541
46817
  "default": standardInteractionStyles,
46542
46818
  footer: standardInteractionStyles
46543
46819
  };
46544
- var fallbackValues$L = {
46545
- backgroundColor: backgroundColor$b,
46820
+ var fallbackValues$K = {
46821
+ backgroundColor: backgroundColor$a,
46546
46822
  linkColor: linkColor$6,
46547
46823
  border: border$3,
46548
46824
  fontSize: fontSize$b,
@@ -46603,7 +46879,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
46603
46879
  }, link));
46604
46880
  };
46605
46881
 
46606
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$L, "default");
46882
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$K, "default");
46607
46883
 
46608
46884
  var TermsAndConditions = function TermsAndConditions(_ref) {
46609
46885
  var onCheck = _ref.onCheck,
@@ -46678,7 +46954,7 @@ var fontColor$1 = WHITE;
46678
46954
  var textAlign$1 = "left";
46679
46955
  var headerBackgroundColor$1 = BRIGHT_GREY;
46680
46956
  var imageBackgroundColor$1 = MATISSE_BLUE;
46681
- var fallbackValues$M = {
46957
+ var fallbackValues$L = {
46682
46958
  fontWeight: fontWeight$9,
46683
46959
  fontColor: fontColor$1,
46684
46960
  textAlign: textAlign$1,
@@ -46725,7 +47001,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
46725
47001
  })))));
46726
47002
  };
46727
47003
 
46728
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$M));
47004
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$L));
46729
47005
 
46730
47006
  var WorkflowTile = function WorkflowTile(_ref) {
46731
47007
  var _ref$workflowName = _ref.workflowName,
@@ -46775,7 +47051,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
46775
47051
  };
46776
47052
 
46777
47053
  var pageBackground = "#FBFCFD";
46778
- var fallbackValues$N = {
47054
+ var fallbackValues$M = {
46779
47055
  pageBackground: pageBackground
46780
47056
  };
46781
47057
 
@@ -46822,7 +47098,7 @@ var CenterSingle = function CenterSingle(_ref) {
46822
47098
  })));
46823
47099
  };
46824
47100
 
46825
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$N));
47101
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$M));
46826
47102
 
46827
47103
  var CenterStack = function CenterStack(_ref) {
46828
47104
  var header = _ref.header,
@@ -46864,7 +47140,7 @@ var CenterStack = function CenterStack(_ref) {
46864
47140
  })));
46865
47141
  };
46866
47142
 
46867
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$N));
47143
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$M));
46868
47144
 
46869
47145
  var CenterSingle$2 = function CenterSingle(_ref) {
46870
47146
  var header = _ref.header,
@@ -46909,7 +47185,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
46909
47185
  })));
46910
47186
  };
46911
47187
 
46912
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$N));
47188
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$M));
46913
47189
 
46914
47190
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
46915
47191
  var header = _ref.header,
@@ -46963,7 +47239,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
46963
47239
  })));
46964
47240
  };
46965
47241
 
46966
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$N));
47242
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$M));
46967
47243
 
46968
47244
  var SidebarStackContent = function SidebarStackContent(_ref) {
46969
47245
  var header = _ref.header,
@@ -47034,7 +47310,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
47034
47310
  })));
47035
47311
  };
47036
47312
 
47037
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$N));
47313
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$M));
47038
47314
 
47039
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, InternalUserInfoForm, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentIcon, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
47315
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, InternalUserInfoForm, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentIcon, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletIcon$1 as WalletIcon, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
47040
47316
  //# sourceMappingURL=index.esm.js.map