intelicoreact 1.3.21 → 1.3.22

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 (252) hide show
  1. package/dist/Atomic/FormElements/ActionAlert/ActionAlert.js +15 -23
  2. package/dist/Atomic/FormElements/AdvancedStatus/AdvancedStatus.js +15 -23
  3. package/dist/Atomic/FormElements/Calendar/Calendar.js +69 -124
  4. package/dist/Atomic/FormElements/CheckboxInput/CheckboxInput.js +27 -36
  5. package/dist/Atomic/FormElements/CheckboxesLine/CheckboxesLine.js +23 -39
  6. package/dist/Atomic/FormElements/Datepicker/Datepicker.js +110 -246
  7. package/dist/Atomic/FormElements/Datepicker/components/Calendar.js +44 -85
  8. package/dist/Atomic/FormElements/Dropdown/Dropdown.js +246 -414
  9. package/dist/Atomic/FormElements/Dropdown/components/DropdownLoader.js +5 -9
  10. package/dist/Atomic/FormElements/DropdownLiveSearch/DropdownLiveSearch.js +93 -165
  11. package/dist/Atomic/FormElements/FileLoader/FileLoader.js +39 -64
  12. package/dist/Atomic/FormElements/FileLoader/partial/LoadZone.js +51 -132
  13. package/dist/Atomic/FormElements/FileLoader/partial/LoadedContent.js +34 -73
  14. package/dist/Atomic/FormElements/FileLoaderLocal/FileLoaderLocal.js +54 -75
  15. package/dist/Atomic/FormElements/FileLoaderLocalGroup/FileLoaderLocalGroup.js +67 -110
  16. package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN.js +33 -83
  17. package/dist/Atomic/FormElements/Input/Input.js +161 -253
  18. package/dist/Atomic/FormElements/InputCalendar/InputCalendar.js +48 -102
  19. package/dist/Atomic/FormElements/InputColor/InputColor.js +27 -40
  20. package/dist/Atomic/FormElements/InputCurrency/InputCurrency.js +28 -58
  21. package/dist/Atomic/FormElements/InputDateRange/InputDateRange.js +108 -176
  22. package/dist/Atomic/FormElements/InputDateRange/components/DateInput.js +32 -57
  23. package/dist/Atomic/FormElements/InputDateRange/components/Datepicker.js +184 -302
  24. package/dist/Atomic/FormElements/InputDateRange/components/OpenedPart.js +85 -157
  25. package/dist/Atomic/FormElements/InputDateRange/components/SelectItem.js +11 -16
  26. package/dist/Atomic/FormElements/InputDateRange/dependencies.js +76 -193
  27. package/dist/Atomic/FormElements/InputLink/InputLink.js +34 -58
  28. package/dist/Atomic/FormElements/InputMask/InputCarretPosition.js +8 -12
  29. package/dist/Atomic/FormElements/InputMask/InputMask.js +554 -964
  30. package/dist/Atomic/FormElements/InputMask/config.js +1 -1
  31. package/dist/Atomic/FormElements/InputMask/functions.js +17 -43
  32. package/dist/Atomic/FormElements/InputMask2/InputMask2.js +268 -404
  33. package/dist/Atomic/FormElements/InputMask2/config.js +1 -1
  34. package/dist/Atomic/FormElements/InputMask2/functions.js +17 -43
  35. package/dist/Atomic/FormElements/InputMask3/InputMask3.js +300 -460
  36. package/dist/Atomic/FormElements/InputMask3/config.js +1 -1
  37. package/dist/Atomic/FormElements/InputMask3/functions.js +17 -43
  38. package/dist/Atomic/FormElements/InputWithAction/InputWithAction.js +53 -113
  39. package/dist/Atomic/FormElements/InputsRow/InputsRow.js +64 -118
  40. package/dist/Atomic/FormElements/Label/Label.js +13 -23
  41. package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.js +217 -349
  42. package/dist/Atomic/FormElements/MultiSelect/MultiSelect.js +25 -47
  43. package/dist/Atomic/FormElements/NumericInput/NumericInput.js +133 -207
  44. package/dist/Atomic/FormElements/RadioGroup/RadioGroup.js +29 -61
  45. package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.js +20 -42
  46. package/dist/Atomic/FormElements/RadioInput/RadioInput.js +22 -33
  47. package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.js +20 -43
  48. package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.js +54 -101
  49. package/dist/Atomic/FormElements/RangeInputs/RangeInputs.js +59 -102
  50. package/dist/Atomic/FormElements/RangeList/RangeList.js +89 -150
  51. package/dist/Atomic/FormElements/RangeList/partial/RangeListRow.js +23 -29
  52. package/dist/Atomic/FormElements/RangeSlider/RangeSlider.js +135 -300
  53. package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.js +381 -571
  54. package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.js +14 -24
  55. package/dist/Atomic/FormElements/Switcher/Switcher.js +24 -29
  56. package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.js +25 -47
  57. package/dist/Atomic/FormElements/SwitcherHide/SwitcherHide.js +20 -32
  58. package/dist/Atomic/FormElements/SwitcherRadio/SwitcherRadio.js +32 -55
  59. package/dist/Atomic/FormElements/SwitcherRange/SwitcherRange.js +22 -42
  60. package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.js +23 -33
  61. package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.js +51 -120
  62. package/dist/Atomic/FormElements/SwitcherTagsDropdown/partial/States.js +2 -3
  63. package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.js +23 -46
  64. package/dist/Atomic/FormElements/TagsDropdown/TagsDropdown.js +260 -413
  65. package/dist/Atomic/FormElements/Text/Text.js +47 -53
  66. package/dist/Atomic/FormElements/TextSwitcher/TextSwitcher.js +21 -31
  67. package/dist/Atomic/FormElements/Textarea/Textarea.js +16 -27
  68. package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.js +68 -128
  69. package/dist/Atomic/FormElements/TieredCheckboxes/partial/AccordionWithCheckbox.js +25 -36
  70. package/dist/Atomic/FormElements/TimeRange/TimeRange.js +33 -70
  71. package/dist/Atomic/FormElements/UserContacts/UserContacts.js +58 -124
  72. package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.js +48 -80
  73. package/dist/Atomic/FormElements/VariantsListRadio/partials/VariantsListRadioItem.js +32 -42
  74. package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.js +40 -60
  75. package/dist/Atomic/FormElements/WidgetPseudoTable/partial/constructor.js +2 -3
  76. package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.js +50 -69
  77. package/dist/Atomic/FormElements/WidgetWithSwitchableRows/partial/constructor.js +3 -3
  78. package/dist/Atomic/Layout/Header/Header.js +21 -48
  79. package/dist/Atomic/Layout/MainMenu/MainMenu.js +36 -79
  80. package/dist/Atomic/Layout/Spinner/Spinner.js +8 -14
  81. package/dist/Atomic/UI/Accordion/Accordion.js +18 -48
  82. package/dist/Atomic/UI/Accordion/AccordionItem.js +35 -60
  83. package/dist/Atomic/UI/AccordionTable/AccordionTable.js +49 -106
  84. package/dist/Atomic/UI/AccordionText/AccordionText.js +13 -37
  85. package/dist/Atomic/UI/AdvancedTag/AdvTag.js +48 -94
  86. package/dist/Atomic/UI/AdvancedTag/AdvancedTags.js +22 -50
  87. package/dist/Atomic/UI/Alert/Alert.js +20 -44
  88. package/dist/Atomic/UI/Arrow/Arrow.js +15 -35
  89. package/dist/Atomic/UI/Box/Box.js +14 -21
  90. package/dist/Atomic/UI/Button/Button.js +26 -35
  91. package/dist/Atomic/UI/ButtonsBar/ButtonsBar.js +22 -31
  92. package/dist/Atomic/UI/Chart/Chart.js +45 -86
  93. package/dist/Atomic/UI/Chart/partial/Chart.constants.js +14 -24
  94. package/dist/Atomic/UI/Chart/partial/ChartTypeSwitcherIcon/ChartTypeSwitcherIcon.js +13 -22
  95. package/dist/Atomic/UI/Chart/partial/datasetSetters.js +68 -113
  96. package/dist/Atomic/UI/Chart/partial/optionsConstructor.js +158 -140
  97. package/dist/Atomic/UI/Chart/partial/optionsSetters.js +26 -42
  98. package/dist/Atomic/UI/Chart/partial/utils.js +20 -48
  99. package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.js +22 -42
  100. package/dist/Atomic/UI/DateTime/DateTime.js +23 -38
  101. package/dist/Atomic/UI/DebugContainer/DebugContainer.js +12 -36
  102. package/dist/Atomic/UI/DebugContainer/useDebugContainer.js +5 -21
  103. package/dist/Atomic/UI/DoubleString/DoubleString.js +27 -50
  104. package/dist/Atomic/UI/DynamicIcon/DynamicIcon.js +15 -63
  105. package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.js +62 -157
  106. package/dist/Atomic/UI/ExampleChartIntegration/partial/utils.js +47 -110
  107. package/dist/Atomic/UI/Hint/Hint.js +49 -94
  108. package/dist/Atomic/UI/Modal/Modal.js +149 -179
  109. package/dist/Atomic/UI/Modal/ModalHOC.js +12 -21
  110. package/dist/Atomic/UI/Modal/partials/ModalFooter.js +7 -12
  111. package/dist/Atomic/UI/Modal/partials/ModalTitle.js +17 -21
  112. package/dist/Atomic/UI/Modal/partials/useMobileModal.js +98 -160
  113. package/dist/Atomic/UI/ModalBackup/Modal.js +65 -90
  114. package/dist/Atomic/UI/ModalBackup/ModalHOC.js +12 -21
  115. package/dist/Atomic/UI/ModalBackup/partials/ModalFooter.js +6 -11
  116. package/dist/Atomic/UI/ModalBackup/partials/ModalTitle.js +15 -19
  117. package/dist/Atomic/UI/MonoAccordion/MonoAccordion.js +32 -62
  118. package/dist/Atomic/UI/NavLine/NavLine.js +120 -211
  119. package/dist/Atomic/UI/NavLine/Tabs.js +2 -3
  120. package/dist/Atomic/UI/PageTitle/PageTitle.js +13 -17
  121. package/dist/Atomic/UI/PieChart/PieChart.js +11 -21
  122. package/dist/Atomic/UI/Price/Price.js +10 -13
  123. package/dist/Atomic/UI/PriceRange/PriceRange.js +7 -11
  124. package/dist/Atomic/UI/ProgressLine/ProgressLine.js +27 -56
  125. package/dist/Atomic/UI/Status/Status.js +19 -30
  126. package/dist/Atomic/UI/Table/Partials/TdCell.js +28 -71
  127. package/dist/Atomic/UI/Table/Partials/TdHeader.js +7 -16
  128. package/dist/Atomic/UI/Table/Partials/TdRow.js +29 -65
  129. package/dist/Atomic/UI/Table/Partials/TdTitle.js +16 -40
  130. package/dist/Atomic/UI/Table/Table.js +27 -47
  131. package/dist/Atomic/UI/Table/TdTypes/TdActions.js +18 -48
  132. package/dist/Atomic/UI/Table/TdTypes/TdPriority.js +9 -19
  133. package/dist/Atomic/UI/Table/TdTypes/TdRange.js +5 -8
  134. package/dist/Atomic/UI/Table/TdTypes/TdWeight.js +25 -47
  135. package/dist/Atomic/UI/Tag/Tag.js +20 -48
  136. package/dist/Atomic/UI/TagList/TagList.js +80 -150
  137. package/dist/Atomic/UI/UserBox/UserBox.js +14 -26
  138. package/dist/Classes/AbortableFetch.js +283 -422
  139. package/dist/Classes/AnimatedHandler.js +44 -56
  140. package/dist/Classes/RESTAPI/index.js +154 -433
  141. package/dist/Classes/RESTAPI/partials/AbortableFetch.js +290 -428
  142. package/dist/Classes/RESTAPI/partials/ApiBase.js +24 -67
  143. package/dist/Classes/RESTAPI/partials/ApiRequestCreators.js +57 -275
  144. package/dist/Classes/RESTAPI/partials/ApiUtils.js +146 -377
  145. package/dist/Classes/RESTAPI/partials/CredentialsProcessing.js +155 -403
  146. package/dist/Classes/RESTAPI/partials/Utils.js +81 -135
  147. package/dist/Classes/RESTAPI/partials/_outerDependencies.js +2 -6
  148. package/dist/Classes/RESTAPI/partials/_utils.js +101 -395
  149. package/dist/Constants/index.constants.js +8 -15
  150. package/dist/Functions/Portal.js +14 -33
  151. package/dist/Functions/customEventListener.js +5 -20
  152. package/dist/Functions/fieldValueFormatters.js +148 -211
  153. package/dist/Functions/hooks/useFormFieldsChangesManager.js +75 -137
  154. package/dist/Functions/locale/createTranslator.js +13 -27
  155. package/dist/Functions/operations.js +35 -49
  156. package/dist/Functions/presets/inputMaskPresets.js +25 -27
  157. package/dist/Functions/presets/inputPresets.js +19 -22
  158. package/dist/Functions/presets/mobileKeyboardTypesPresets.js +7 -9
  159. package/dist/Functions/schemas.js +6 -15
  160. package/dist/Functions/useClickOutside.js +3 -7
  161. package/dist/Functions/useDebounce.js +11 -25
  162. package/dist/Functions/useFieldFocus.js +42 -67
  163. package/dist/Functions/useFormTools/form-drivers/ArrayWithObjects.js +35 -54
  164. package/dist/Functions/useFormTools/form-drivers/ObjectWithIterableObjects.js +74 -95
  165. package/dist/Functions/useFormTools/form-drivers/ObjectWithNamedKeyObjects.js +55 -91
  166. package/dist/Functions/useFormTools/functions/General.js +80 -99
  167. package/dist/Functions/useFormTools/functions/RenderFields.js +45 -72
  168. package/dist/Functions/useFormTools/functions/usePrevious.js +3 -7
  169. package/dist/Functions/useFormTools/index.js +382 -598
  170. package/dist/Functions/useInputHighlightError.js +27 -52
  171. package/dist/Functions/useIsMobile.js +13 -36
  172. package/dist/Functions/useLocalStorage.js +7 -22
  173. package/dist/Functions/useLocationParams.js +16 -27
  174. package/dist/Functions/useMetaInfo.js +19 -50
  175. package/dist/Functions/useMouseUpOutside.js +2 -5
  176. package/dist/Functions/useOnlineStatus.js +7 -26
  177. package/dist/Functions/usePasswordChecker.js +42 -77
  178. package/dist/Functions/usePrevious.js +3 -7
  179. package/dist/Functions/useResize.js +12 -32
  180. package/dist/Functions/useScrollTo.js +6 -20
  181. package/dist/Functions/useToggle.js +10 -30
  182. package/dist/Functions/utils.js +186 -366
  183. package/dist/Molecular/CustomIcons/components/AffiliateNetworks.js +21 -32
  184. package/dist/Molecular/CustomIcons/components/AlertCircle.js +21 -32
  185. package/dist/Molecular/CustomIcons/components/AppStore.js +25 -36
  186. package/dist/Molecular/CustomIcons/components/Arrow.js +31 -42
  187. package/dist/Molecular/CustomIcons/components/ArrowDown.js +13 -24
  188. package/dist/Molecular/CustomIcons/components/ArrowLeft.js +16 -27
  189. package/dist/Molecular/CustomIcons/components/ArrowRight.js +16 -27
  190. package/dist/Molecular/CustomIcons/components/ArrowUp.js +13 -24
  191. package/dist/Molecular/CustomIcons/components/Bell.js +11 -22
  192. package/dist/Molecular/CustomIcons/components/Button.js +11 -22
  193. package/dist/Molecular/CustomIcons/components/Campaigns.js +12 -23
  194. package/dist/Molecular/CustomIcons/components/Check.js +12 -23
  195. package/dist/Molecular/CustomIcons/components/Check2.js +11 -22
  196. package/dist/Molecular/CustomIcons/components/ChevronDown.js +11 -22
  197. package/dist/Molecular/CustomIcons/components/ChevronDownDisabled.js +11 -22
  198. package/dist/Molecular/CustomIcons/components/ChevronLeft.js +11 -22
  199. package/dist/Molecular/CustomIcons/components/ChevronRight.js +11 -22
  200. package/dist/Molecular/CustomIcons/components/ChevronUp.js +11 -22
  201. package/dist/Molecular/CustomIcons/components/ChevronUpDown.js +26 -37
  202. package/dist/Molecular/CustomIcons/components/Close.js +13 -24
  203. package/dist/Molecular/CustomIcons/components/ColumnsOrder.js +38 -49
  204. package/dist/Molecular/CustomIcons/components/Delete.js +12 -23
  205. package/dist/Molecular/CustomIcons/components/Edit.js +11 -22
  206. package/dist/Molecular/CustomIcons/components/Email.js +29 -40
  207. package/dist/Molecular/CustomIcons/components/FinturfLogo.js +19 -30
  208. package/dist/Molecular/CustomIcons/components/FinturfLogo2.js +27 -38
  209. package/dist/Molecular/CustomIcons/components/Flows.js +11 -22
  210. package/dist/Molecular/CustomIcons/components/Gift.js +16 -27
  211. package/dist/Molecular/CustomIcons/components/GoogleAuth.js +25 -36
  212. package/dist/Molecular/CustomIcons/components/GooglePlay.js +25 -36
  213. package/dist/Molecular/CustomIcons/components/HelpCircle.js +14 -25
  214. package/dist/Molecular/CustomIcons/components/HelpCircle2.js +15 -26
  215. package/dist/Molecular/CustomIcons/components/HelpCircleFilled.js +14 -25
  216. package/dist/Molecular/CustomIcons/components/Home.js +14 -25
  217. package/dist/Molecular/CustomIcons/components/Home2.js +17 -28
  218. package/dist/Molecular/CustomIcons/components/Key.js +19 -30
  219. package/dist/Molecular/CustomIcons/components/Landers.js +15 -26
  220. package/dist/Molecular/CustomIcons/components/Lock.js +11 -22
  221. package/dist/Molecular/CustomIcons/components/Mail.js +19 -30
  222. package/dist/Molecular/CustomIcons/components/Mastercard.js +61 -72
  223. package/dist/Molecular/CustomIcons/components/Minus.js +24 -35
  224. package/dist/Molecular/CustomIcons/components/Offers.js +12 -23
  225. package/dist/Molecular/CustomIcons/components/Pause.js +24 -35
  226. package/dist/Molecular/CustomIcons/components/PayPal.js +38 -49
  227. package/dist/Molecular/CustomIcons/components/PayPalLightLarge.js +25 -36
  228. package/dist/Molecular/CustomIcons/components/Phone.js +26 -37
  229. package/dist/Molecular/CustomIcons/components/Play.js +24 -35
  230. package/dist/Molecular/CustomIcons/components/Plus.js +24 -35
  231. package/dist/Molecular/CustomIcons/components/Profile.js +16 -27
  232. package/dist/Molecular/CustomIcons/components/QRCode.js +26 -37
  233. package/dist/Molecular/CustomIcons/components/Rectangle.js +11 -22
  234. package/dist/Molecular/CustomIcons/components/Revert.js +14 -25
  235. package/dist/Molecular/CustomIcons/components/Star.js +10 -21
  236. package/dist/Molecular/CustomIcons/components/Star2.js +12 -23
  237. package/dist/Molecular/CustomIcons/components/TrafficSources.js +14 -25
  238. package/dist/Molecular/CustomIcons/components/Trash.js +11 -22
  239. package/dist/Molecular/CustomIcons/components/TrashRed.js +11 -22
  240. package/dist/Molecular/CustomIcons/components/Triggers.js +11 -22
  241. package/dist/Molecular/CustomIcons/components/User.js +16 -27
  242. package/dist/Molecular/CustomIcons/components/Visa.js +27 -38
  243. package/dist/Molecular/CustomIcons/components/X.js +11 -22
  244. package/dist/Molecular/CustomIcons/index.js +61 -183
  245. package/dist/Molecular/FormElement/FormElement.js +18 -27
  246. package/dist/Molecular/FormWithDependOn/FormWithDependOn.js +95 -112
  247. package/dist/Molecular/FormWithDependOn/partials/_utils.js +35 -34
  248. package/dist/Molecular/InputAddress/InputAddress.js +176 -312
  249. package/dist/Molecular/InputPassword/InputPassword.js +15 -39
  250. package/dist/index.js +1 -3
  251. package/package.json +1 -1
  252. package/dist/Atomic/FormElements/UserContacts/partial/defaultIcons.js +0 -91
@@ -1,32 +1,21 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Lock = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Lock = function Lock(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- width: 16,
24
- height: 16,
25
- fill: "none"
26
- }, props), /*#__PURE__*/React.createElement("path", {
27
- stroke: "#000",
28
- d: "M12.667 7.333H3.333C2.597 7.333 2 7.93 2 8.667v4.666c0 .737.597 1.334 1.333 1.334h9.334c.736 0 1.333-.597 1.333-1.334V8.667c0-.737-.597-1.334-1.333-1.334ZM4.667 7.333V4.667a3.333 3.333 0 0 1 6.666 0v2.666"
29
- }));
30
- };
31
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Lock = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ width: 16,
15
+ height: 16,
16
+ fill: "none"
17
+ }, props), /*#__PURE__*/React.createElement("path", {
18
+ stroke: "#000",
19
+ d: "M12.667 7.333H3.333C2.597 7.333 2 7.93 2 8.667v4.666c0 .737.597 1.334 1.333 1.334h9.334c.736 0 1.333-.597 1.333-1.334V8.667c0-.737-.597-1.334-1.333-1.334ZM4.667 7.333V4.667a3.333 3.333 0 0 1 6.666 0v2.666"
20
+ }));
32
21
  exports.Lock = Lock;
@@ -1,40 +1,29 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Mail = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Mail = function Mail(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- xmlSpace: "preserve",
24
- id: "Layer_1",
25
- x: 0,
26
- y: 0,
27
- style: {
28
- enableBackground: "new 0 0 16 16"
29
- },
30
- viewBox: "0 0 16 16"
31
- }, props), /*#__PURE__*/React.createElement("style", null, ".st0{fill:none;stroke:#9aa0b9;strokeWidth:1.07;strokeLinecap:round;strokeLinejoin:round}"), /*#__PURE__*/React.createElement("path", {
32
- d: "M2.7 2.7h10.7c.7 0 1.3.6 1.3 1.3v8c0 .7-.6 1.3-1.3 1.3H2.7c-.7 0-1.3-.6-1.3-1.3V4c-.1-.7.5-1.3 1.3-1.3z",
33
- className: "st0"
34
- }), /*#__PURE__*/React.createElement("path", {
35
- d: "M14.7 4 8 8.7 1.3 4",
36
- className: "st0"
37
- }));
38
- };
39
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Mail = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ xmlSpace: "preserve",
15
+ id: "Layer_1",
16
+ x: 0,
17
+ y: 0,
18
+ style: {
19
+ enableBackground: "new 0 0 16 16"
20
+ },
21
+ viewBox: "0 0 16 16"
22
+ }, props), /*#__PURE__*/React.createElement("style", null, ".st0{fill:none;stroke:#9aa0b9;strokeWidth:1.07;strokeLinecap:round;strokeLinejoin:round}"), /*#__PURE__*/React.createElement("path", {
23
+ d: "M2.7 2.7h10.7c.7 0 1.3.6 1.3 1.3v8c0 .7-.6 1.3-1.3 1.3H2.7c-.7 0-1.3-.6-1.3-1.3V4c-.1-.7.5-1.3 1.3-1.3z",
24
+ className: "st0"
25
+ }), /*#__PURE__*/React.createElement("path", {
26
+ d: "M14.7 4 8 8.7 1.3 4",
27
+ className: "st0"
28
+ }));
40
29
  exports.Mail = Mail;
@@ -1,82 +1,71 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Mastercard = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Mastercard = function Mastercard(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- width: 38,
24
- height: 24,
25
- fill: "none"
26
- }, props), /*#__PURE__*/React.createElement("g", {
27
- clipPath: "url(#a)"
28
- }, /*#__PURE__*/React.createElement("path", {
29
- fill: "#fff",
30
- fillRule: "evenodd",
31
- d: "M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z",
32
- clipRule: "evenodd"
33
- }), /*#__PURE__*/React.createElement("path", {
34
- fill: "#D8232A",
35
- fillRule: "evenodd",
36
- d: "M14.865 19.027a6.54 6.54 0 1 0 0-13.081 6.54 6.54 0 0 0 0 13.081Z",
37
- clipRule: "evenodd"
38
- }), /*#__PURE__*/React.createElement("path", {
39
- fill: "#ED9F2D",
40
- fillRule: "evenodd",
41
- d: "M19.026 17.532a6.54 6.54 0 1 0 0-10.091 6.527 6.527 0 0 1 2.379 5.045 6.527 6.527 0 0 1-2.379 5.046Z",
42
- clipRule: "evenodd"
43
- }), /*#__PURE__*/React.createElement("path", {
44
- fill: "#D8232A",
45
- fillRule: "evenodd",
46
- d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
47
- clipRule: "evenodd"
48
- }), /*#__PURE__*/React.createElement("mask", {
49
- id: "b",
50
- width: 6,
51
- height: 11,
52
- x: 16,
53
- y: 7,
54
- "mask-type": "alpha",
55
- maskUnits: "userSpaceOnUse"
56
- }, /*#__PURE__*/React.createElement("path", {
57
- fill: "#fff",
58
- fillRule: "evenodd",
59
- d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
60
- clipRule: "evenodd"
61
- })), /*#__PURE__*/React.createElement("g", {
62
- mask: "url(#b)"
63
- }, /*#__PURE__*/React.createElement("path", {
64
- fill: "#ED9F2D",
65
- fillRule: "evenodd",
66
- d: "M16.054 7.73H22v.594h-5.946V7.73Zm0 1.189H22v.595h-5.946v-.595ZM22 10.109h-5.946v.594H22v-.595Zm-5.946 1.188H22v.595h-5.946v-.595ZM22 12.487h-5.946v.594H22v-.595Zm-5.946 1.189H22v.594h-5.946v-.594ZM22 14.865h-5.946v.594H22v-.594Zm-5.946 1.189H22v.595h-5.946v-.595ZM22 17.244h-5.946v.594H22v-.595Z",
67
- clipRule: "evenodd"
68
- })), /*#__PURE__*/React.createElement("path", {
69
- fill: "#E5E5E5",
70
- fillOpacity: 0.01,
71
- fillRule: "evenodd",
72
- d: "M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z",
73
- clipRule: "evenodd"
74
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
75
- id: "a"
76
- }, /*#__PURE__*/React.createElement("path", {
77
- fill: "#fff",
78
- d: "M0 0h38v24H0z"
79
- }))));
80
- };
81
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Mastercard = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ width: 38,
15
+ height: 24,
16
+ fill: "none"
17
+ }, props), /*#__PURE__*/React.createElement("g", {
18
+ clipPath: "url(#a)"
19
+ }, /*#__PURE__*/React.createElement("path", {
20
+ fill: "#fff",
21
+ fillRule: "evenodd",
22
+ d: "M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z",
23
+ clipRule: "evenodd"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fill: "#D8232A",
26
+ fillRule: "evenodd",
27
+ d: "M14.865 19.027a6.54 6.54 0 1 0 0-13.081 6.54 6.54 0 0 0 0 13.081Z",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "#ED9F2D",
31
+ fillRule: "evenodd",
32
+ d: "M19.026 17.532a6.54 6.54 0 1 0 0-10.091 6.527 6.527 0 0 1 2.379 5.045 6.527 6.527 0 0 1-2.379 5.046Z",
33
+ clipRule: "evenodd"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ fill: "#D8232A",
36
+ fillRule: "evenodd",
37
+ d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
38
+ clipRule: "evenodd"
39
+ }), /*#__PURE__*/React.createElement("mask", {
40
+ id: "b",
41
+ width: 6,
42
+ height: 11,
43
+ x: 16,
44
+ y: 7,
45
+ "mask-type": "alpha",
46
+ maskUnits: "userSpaceOnUse"
47
+ }, /*#__PURE__*/React.createElement("path", {
48
+ fill: "#fff",
49
+ fillRule: "evenodd",
50
+ d: "M19.027 7.44a6.527 6.527 0 0 0-2.379 5.046c0 2.031.926 3.846 2.379 5.046a6.527 6.527 0 0 0 2.378-5.046 6.527 6.527 0 0 0-2.378-5.045Z",
51
+ clipRule: "evenodd"
52
+ })), /*#__PURE__*/React.createElement("g", {
53
+ mask: "url(#b)"
54
+ }, /*#__PURE__*/React.createElement("path", {
55
+ fill: "#ED9F2D",
56
+ fillRule: "evenodd",
57
+ d: "M16.054 7.73H22v.594h-5.946V7.73Zm0 1.189H22v.595h-5.946v-.595ZM22 10.109h-5.946v.594H22v-.595Zm-5.946 1.188H22v.595h-5.946v-.595ZM22 12.487h-5.946v.594H22v-.595Zm-5.946 1.189H22v.594h-5.946v-.594ZM22 14.865h-5.946v.594H22v-.594Zm-5.946 1.189H22v.595h-5.946v-.595ZM22 17.244h-5.946v.594H22v-.595Z",
58
+ clipRule: "evenodd"
59
+ })), /*#__PURE__*/React.createElement("path", {
60
+ fill: "#E5E5E5",
61
+ fillOpacity: 0.01,
62
+ fillRule: "evenodd",
63
+ d: "M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
66
+ id: "a"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "#fff",
69
+ d: "M0 0h38v24H0z"
70
+ }))));
82
71
  exports.Mastercard = Mastercard;
@@ -1,45 +1,34 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Minus = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Minus = function Minus(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- width: 16,
24
- height: 16,
25
- fill: "none"
26
- }, props), /*#__PURE__*/React.createElement("mask", {
27
- id: "a",
28
- width: 16,
29
- height: 16,
30
- x: 0,
31
- y: 0,
32
- "mask-type": "alpha",
33
- maskUnits: "userSpaceOnUse"
34
- }, /*#__PURE__*/React.createElement("path", {
35
- stroke: "#000",
36
- d: "M3.333 8h9.334"
37
- })), /*#__PURE__*/React.createElement("g", {
38
- mask: "url(#a)"
39
- }, /*#__PURE__*/React.createElement("path", {
40
- fill: "#1E1E2D",
41
- d: "M0 0h16v16H0z"
42
- })));
43
- };
44
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Minus = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ width: 16,
15
+ height: 16,
16
+ fill: "none"
17
+ }, props), /*#__PURE__*/React.createElement("mask", {
18
+ id: "a",
19
+ width: 16,
20
+ height: 16,
21
+ x: 0,
22
+ y: 0,
23
+ "mask-type": "alpha",
24
+ maskUnits: "userSpaceOnUse"
25
+ }, /*#__PURE__*/React.createElement("path", {
26
+ stroke: "#000",
27
+ d: "M3.333 8h9.334"
28
+ })), /*#__PURE__*/React.createElement("g", {
29
+ mask: "url(#a)"
30
+ }, /*#__PURE__*/React.createElement("path", {
31
+ fill: "#1E1E2D",
32
+ d: "M0 0h16v16H0z"
33
+ })));
45
34
  exports.Minus = Minus;
@@ -1,33 +1,22 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Offers = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Offers = function Offers(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- xmlSpace: "preserve",
24
- viewBox: "0 0 16 16"
25
- }, props), /*#__PURE__*/React.createElement("path", {
26
- fill: "none",
27
- stroke: "#9AA0B9",
28
- strokeMiterlimit: 10,
29
- d: "M2.7 10s.7-.7 2.7-.7 3.3 1.3 5.3 1.3 2.7-.7 2.7-.7V2s-.7.7-2.7.7-3.3-1.3-5.3-1.3-2.7.6-2.7.6v8zM2.7 14.7V10"
30
- }));
31
- };
32
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Offers = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ xmlSpace: "preserve",
15
+ viewBox: "0 0 16 16"
16
+ }, props), /*#__PURE__*/React.createElement("path", {
17
+ fill: "none",
18
+ stroke: "#9AA0B9",
19
+ strokeMiterlimit: 10,
20
+ d: "M2.7 10s.7-.7 2.7-.7 3.3 1.3 5.3 1.3 2.7-.7 2.7-.7V2s-.7.7-2.7.7-3.3-1.3-5.3-1.3-2.7.6-2.7.6v8zM2.7 14.7V10"
21
+ }));
33
22
  exports.Offers = Offers;
@@ -1,45 +1,34 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.Pause = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var Pause = function Pause(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- width: 16,
24
- height: 16,
25
- fill: "none"
26
- }, props), /*#__PURE__*/React.createElement("mask", {
27
- id: "a",
28
- width: 16,
29
- height: 16,
30
- x: 0,
31
- y: 0,
32
- "mask-type": "alpha",
33
- maskUnits: "userSpaceOnUse"
34
- }, /*#__PURE__*/React.createElement("path", {
35
- stroke: "#000",
36
- d: "M6.667 2.667H4v10.666h2.667V2.667ZM12 2.667H9.333v10.666H12V2.667Z"
37
- })), /*#__PURE__*/React.createElement("g", {
38
- mask: "url(#a)"
39
- }, /*#__PURE__*/React.createElement("path", {
40
- fill: "#F06D8D",
41
- d: "M0 0h16v16H0z"
42
- })));
43
- };
44
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const Pause = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ width: 16,
15
+ height: 16,
16
+ fill: "none"
17
+ }, props), /*#__PURE__*/React.createElement("mask", {
18
+ id: "a",
19
+ width: 16,
20
+ height: 16,
21
+ x: 0,
22
+ y: 0,
23
+ "mask-type": "alpha",
24
+ maskUnits: "userSpaceOnUse"
25
+ }, /*#__PURE__*/React.createElement("path", {
26
+ stroke: "#000",
27
+ d: "M6.667 2.667H4v10.666h2.667V2.667ZM12 2.667H9.333v10.666H12V2.667Z"
28
+ })), /*#__PURE__*/React.createElement("g", {
29
+ mask: "url(#a)"
30
+ }, /*#__PURE__*/React.createElement("path", {
31
+ fill: "#F06D8D",
32
+ d: "M0 0h16v16H0z"
33
+ })));
45
34
  exports.Pause = Pause;
@@ -1,59 +1,48 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
4
  Object.defineProperty(exports, "__esModule", {
8
5
  value: true
9
6
  });
10
7
  exports.PayPal = void 0;
11
-
12
8
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
13
-
14
9
  var React = _interopRequireWildcard(require("react"));
15
-
16
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
-
18
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
-
20
- var PayPal = function PayPal(props) {
21
- return /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
22
- xmlns: "http://www.w3.org/2000/svg",
23
- width: 201,
24
- height: 42,
25
- fill: "none"
26
- }, props), /*#__PURE__*/React.createElement("rect", {
27
- width: 200,
28
- height: 41,
29
- x: 0.5,
30
- y: 0.5,
31
- fill: "#fff",
32
- stroke: "#6B81DD",
33
- rx: 3.5
34
- }), /*#__PURE__*/React.createElement("rect", {
35
- width: 61,
36
- height: 40,
37
- x: 1,
38
- y: 1,
39
- fill: "#fff",
40
- rx: 4
41
- }), /*#__PURE__*/React.createElement("path", {
42
- fill: "#253D80",
43
- d: "m26.85 32.65.444-2.75H21.626l3.253-20.325a.261.261 0 0 1 .09-.163.308.308 0 0 1 .177-.062h7.892c2.63 0 4.435.537 5.388 1.6.422.446.716.994.852 1.588a5.437 5.437 0 0 1 0 2.187v.625l.445.25c.338.166.644.39.902.662.388.462.64 1.02.724 1.613.096.775.061 1.56-.101 2.325a8.016 8.016 0 0 1-.979 2.637 5.41 5.41 0 0 1-1.538 1.663 6.485 6.485 0 0 1-2.071.913c-.83.206-1.685.306-2.542.3h-.622c-.437 0-.86.15-1.195.424-.337.28-.559.671-.623 1.1v.25l-.775 4.85v.188c.01.033.01.067 0 .1h-.076l-3.978.025Z"
44
- }), /*#__PURE__*/React.createElement("path", {
45
- fill: "#189BD7",
46
- d: "m40.141 14.85-.076.463c-1.042 5.25-4.613 7.074-9.163 7.074H28.59c-.556 0-1.03.397-1.118.938l-1.182 7.4-.343 2.1a.58.58 0 0 0 .136.468c.112.13.276.205.449.207h4.117c.488 0 .904-.35.979-.825v-.2l.775-4.838v-.262a.973.973 0 0 1 .966-.825h.673c3.978 0 7.104-1.588 8.007-6.25a5.23 5.23 0 0 0-.814-4.663 4.098 4.098 0 0 0-1.093-.787Z"
47
- }), /*#__PURE__*/React.createElement("path", {
48
- fill: "#242E65",
49
- d: "m39.049 14.425-.483-.125-.534-.1A13.012 13.012 0 0 0 36 14.063h-6.202a.952.952 0 0 0-.966.813l-1.27 8.211v.238c.087-.54.561-.938 1.118-.938h2.313c4.55 0 8.12-1.825 9.162-7.075l.077-.462a5.762 5.762 0 0 0-.852-.35l-.33-.075Z"
50
- }), /*#__PURE__*/React.createElement("path", {
51
- fill: "#253D80",
52
- d: "M28.831 14.875a.952.952 0 0 1 .966-.813H36c.68-.007 1.36.039 2.033.138l.534.1.483.125.241.075c.293.094.578.21.852.35a4.938 4.938 0 0 0-1.017-4.463C37.855 9.063 35.77 8.5 33.05 8.5h-7.904c-.557 0-1.03.397-1.118.938L20.736 29.95c-.03.193.028.39.157.539.13.148.318.235.517.236h4.88l1.27-7.638 1.271-8.212Z"
53
- }), /*#__PURE__*/React.createElement("path", {
54
- fill: "#6B81DD",
55
- d: "M66.871 22.067c-.114.978-.476 1.733-1.085 2.267-.606.529-1.412.793-2.419.793-1.092 0-1.968-.392-2.628-1.174-.656-.783-.984-1.83-.984-3.142v-.89c0-.858.153-1.613.457-2.265.31-.652.745-1.151 1.308-1.498.563-.352 1.214-.527 1.955-.527.982 0 1.769.275 2.361.825.593.546.938 1.303 1.035 2.273h-1.225c-.106-.737-.336-1.27-.692-1.6-.351-.33-.844-.495-1.479-.495-.779 0-1.39.288-1.834.863-.44.576-.66 1.394-.66 2.457v.895c0 1.003.209 1.8.628 2.393.419.592 1.005.888 1.758.888.677 0 1.196-.152 1.555-.457.364-.309.606-.844.724-1.606h1.225Zm2.66-3.104c.52-.639 1.197-.958 2.031-.958 1.451 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.716.101-1.003.304-.288.203-.512.47-.673.8V25h-1.175v-9.75h1.175v3.713Zm8.836 6.164c-.931 0-1.689-.305-2.273-.914-.584-.614-.876-1.433-.876-2.457v-.215c0-.682.13-1.289.388-1.822a3.048 3.048 0 0 1 1.091-1.257c.47-.305.978-.457 1.524-.457.893 0 1.587.294 2.082.882.495.588.742 1.43.742 2.527v.488h-4.652c.016.677.213 1.225.59 1.644.38.415.863.623 1.447.623.415 0 .766-.085 1.054-.254.288-.17.54-.394.755-.673l.718.558c-.576.885-1.44 1.327-2.59 1.327Zm-.146-6.157c-.474 0-.872.173-1.194.52-.321.343-.52.825-.596 1.448h3.44v-.09c-.034-.596-.195-1.057-.482-1.383-.288-.33-.677-.495-1.168-.495Zm6.944 5.199c.419 0 .785-.128 1.098-.381a1.34 1.34 0 0 0 .52-.953h1.111a2.129 2.129 0 0 1-.406 1.124 2.67 2.67 0 0 1-1.003.85 2.866 2.866 0 0 1-1.32.318c-.935 0-1.68-.311-2.234-.933-.55-.627-.825-1.481-.825-2.565v-.196c0-.669.122-1.264.368-1.784.245-.52.596-.925 1.053-1.213.462-.287 1.005-.431 1.632-.431.77 0 1.409.23 1.917.692.512.461.785 1.06.819 1.796h-1.111c-.034-.444-.203-.808-.508-1.092-.3-.287-.673-.431-1.117-.431-.597 0-1.06.216-1.39.647-.326.428-.49 1.048-.49 1.86v.222c0 .792.164 1.4.49 1.828.325.428.79.642 1.396.642Zm5.967-2.35-.737.769V25h-1.174v-9.75h1.174v5.897l.629-.755 2.14-2.26h1.427L91.92 21 94.902 25h-1.377l-2.393-3.18Zm4.36-.317c0-.672.132-1.278.394-1.815a2.988 2.988 0 0 1 1.105-1.244 3.023 3.023 0 0 1 1.618-.438c.936 0 1.691.324 2.266.971.58.648.87 1.509.87 2.584v.082c0 .669-.129 1.27-.387 1.803-.254.529-.62.941-1.098 1.238-.474.296-1.02.444-1.638.444-.93 0-1.686-.324-2.266-.971-.576-.648-.863-1.505-.863-2.571v-.083Zm1.181.14c0 .762.176 1.373.527 1.835.356.46.83.692 1.422.692.597 0 1.07-.233 1.422-.699.351-.47.527-1.125.527-1.968 0-.753-.18-1.362-.54-1.828a1.693 1.693 0 0 0-1.422-.704c-.58 0-1.047.23-1.402.692-.356.46-.534 1.121-.534 1.98Zm10.785 2.679c-.457.537-1.128.806-2.012.806-.732 0-1.291-.212-1.676-.635-.381-.427-.573-1.058-.578-1.891v-4.47h1.175v4.438c0 1.04.423 1.561 1.269 1.561.897 0 1.494-.334 1.79-1.003v-4.995h1.175V25h-1.118l-.025-.68Zm4.526-7.852v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25c-.309.085-.61.127-.902.127-.524 0-.92-.159-1.187-.476-.266-.317-.399-.768-.399-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm11.965 6.912 1.321-5.25h1.174l-2 6.869h-.952l-1.669-5.205L120.198 25h-.952l-1.994-6.868h1.168l1.352 5.141 1.6-5.141h.946l1.631 5.25Zm4.97 1.619h-1.174v-6.868h1.174V25Zm-1.269-8.69a.71.71 0 0 1 .171-.482c.119-.131.292-.197.521-.197.228 0 .402.066.52.197a.692.692 0 0 1 .178.482c0 .19-.059.35-.178.476-.118.127-.292.19-.52.19-.229 0-.402-.063-.521-.19a.686.686 0 0 1-.171-.476Zm4.748.159v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25a3.404 3.404 0 0 1-.901.127c-.525 0-.921-.159-1.187-.476-.267-.317-.4-.768-.4-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm3.834 2.494c.52-.639 1.198-.958 2.031-.958 1.452 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.715.101-1.003.304-.288.203-.512.47-.673.8V25h-1.174v-9.75h1.174v3.713Zm10.613 2.419V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM157.808 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.955.851-.678 0-1.234-.19-1.67-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.143v-.54c0-.41-.123-.736-.369-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99.246-.322.576-.576.99-.762.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.718-.742v-1.41h-.921c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.246.207.561.311.946.311Zm6.925-.825 1.6-5.148h1.257l-2.762 7.928c-.427 1.143-1.106 1.714-2.037 1.714l-.222-.02-.438-.082v-.952l.317.026c.398 0 .707-.08.927-.242.224-.16.408-.455.552-.882l.26-.698-2.45-6.792h1.282l1.714 5.148Zm5.313-1.898V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM179.06 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.956.851-.677 0-1.233-.19-1.669-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.142v-.54c0-.41-.122-.736-.368-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99a2.51 2.51 0 0 1 .99-.762c.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.717-.742v-1.41h-.92c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.245.207.561.311.946.311Zm6.056.895h-1.175v-9.75h1.175V25Z"
56
- }));
57
- };
58
-
10
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
11
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
12
+ const PayPal = props => /*#__PURE__*/React.createElement("svg", (0, _extends2.default)({
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ width: 201,
15
+ height: 42,
16
+ fill: "none"
17
+ }, props), /*#__PURE__*/React.createElement("rect", {
18
+ width: 200,
19
+ height: 41,
20
+ x: 0.5,
21
+ y: 0.5,
22
+ fill: "#fff",
23
+ stroke: "#6B81DD",
24
+ rx: 3.5
25
+ }), /*#__PURE__*/React.createElement("rect", {
26
+ width: 61,
27
+ height: 40,
28
+ x: 1,
29
+ y: 1,
30
+ fill: "#fff",
31
+ rx: 4
32
+ }), /*#__PURE__*/React.createElement("path", {
33
+ fill: "#253D80",
34
+ d: "m26.85 32.65.444-2.75H21.626l3.253-20.325a.261.261 0 0 1 .09-.163.308.308 0 0 1 .177-.062h7.892c2.63 0 4.435.537 5.388 1.6.422.446.716.994.852 1.588a5.437 5.437 0 0 1 0 2.187v.625l.445.25c.338.166.644.39.902.662.388.462.64 1.02.724 1.613.096.775.061 1.56-.101 2.325a8.016 8.016 0 0 1-.979 2.637 5.41 5.41 0 0 1-1.538 1.663 6.485 6.485 0 0 1-2.071.913c-.83.206-1.685.306-2.542.3h-.622c-.437 0-.86.15-1.195.424-.337.28-.559.671-.623 1.1v.25l-.775 4.85v.188c.01.033.01.067 0 .1h-.076l-3.978.025Z"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "#189BD7",
37
+ d: "m40.141 14.85-.076.463c-1.042 5.25-4.613 7.074-9.163 7.074H28.59c-.556 0-1.03.397-1.118.938l-1.182 7.4-.343 2.1a.58.58 0 0 0 .136.468c.112.13.276.205.449.207h4.117c.488 0 .904-.35.979-.825v-.2l.775-4.838v-.262a.973.973 0 0 1 .966-.825h.673c3.978 0 7.104-1.588 8.007-6.25a5.23 5.23 0 0 0-.814-4.663 4.098 4.098 0 0 0-1.093-.787Z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "#242E65",
40
+ d: "m39.049 14.425-.483-.125-.534-.1A13.012 13.012 0 0 0 36 14.063h-6.202a.952.952 0 0 0-.966.813l-1.27 8.211v.238c.087-.54.561-.938 1.118-.938h2.313c4.55 0 8.12-1.825 9.162-7.075l.077-.462a5.762 5.762 0 0 0-.852-.35l-.33-.075Z"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "#253D80",
43
+ d: "M28.831 14.875a.952.952 0 0 1 .966-.813H36c.68-.007 1.36.039 2.033.138l.534.1.483.125.241.075c.293.094.578.21.852.35a4.938 4.938 0 0 0-1.017-4.463C37.855 9.063 35.77 8.5 33.05 8.5h-7.904c-.557 0-1.03.397-1.118.938L20.736 29.95c-.03.193.028.39.157.539.13.148.318.235.517.236h4.88l1.27-7.638 1.271-8.212Z"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ fill: "#6B81DD",
46
+ d: "M66.871 22.067c-.114.978-.476 1.733-1.085 2.267-.606.529-1.412.793-2.419.793-1.092 0-1.968-.392-2.628-1.174-.656-.783-.984-1.83-.984-3.142v-.89c0-.858.153-1.613.457-2.265.31-.652.745-1.151 1.308-1.498.563-.352 1.214-.527 1.955-.527.982 0 1.769.275 2.361.825.593.546.938 1.303 1.035 2.273h-1.225c-.106-.737-.336-1.27-.692-1.6-.351-.33-.844-.495-1.479-.495-.779 0-1.39.288-1.834.863-.44.576-.66 1.394-.66 2.457v.895c0 1.003.209 1.8.628 2.393.419.592 1.005.888 1.758.888.677 0 1.196-.152 1.555-.457.364-.309.606-.844.724-1.606h1.225Zm2.66-3.104c.52-.639 1.197-.958 2.031-.958 1.451 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.716.101-1.003.304-.288.203-.512.47-.673.8V25h-1.175v-9.75h1.175v3.713Zm8.836 6.164c-.931 0-1.689-.305-2.273-.914-.584-.614-.876-1.433-.876-2.457v-.215c0-.682.13-1.289.388-1.822a3.048 3.048 0 0 1 1.091-1.257c.47-.305.978-.457 1.524-.457.893 0 1.587.294 2.082.882.495.588.742 1.43.742 2.527v.488h-4.652c.016.677.213 1.225.59 1.644.38.415.863.623 1.447.623.415 0 .766-.085 1.054-.254.288-.17.54-.394.755-.673l.718.558c-.576.885-1.44 1.327-2.59 1.327Zm-.146-6.157c-.474 0-.872.173-1.194.52-.321.343-.52.825-.596 1.448h3.44v-.09c-.034-.596-.195-1.057-.482-1.383-.288-.33-.677-.495-1.168-.495Zm6.944 5.199c.419 0 .785-.128 1.098-.381a1.34 1.34 0 0 0 .52-.953h1.111a2.129 2.129 0 0 1-.406 1.124 2.67 2.67 0 0 1-1.003.85 2.866 2.866 0 0 1-1.32.318c-.935 0-1.68-.311-2.234-.933-.55-.627-.825-1.481-.825-2.565v-.196c0-.669.122-1.264.368-1.784.245-.52.596-.925 1.053-1.213.462-.287 1.005-.431 1.632-.431.77 0 1.409.23 1.917.692.512.461.785 1.06.819 1.796h-1.111c-.034-.444-.203-.808-.508-1.092-.3-.287-.673-.431-1.117-.431-.597 0-1.06.216-1.39.647-.326.428-.49 1.048-.49 1.86v.222c0 .792.164 1.4.49 1.828.325.428.79.642 1.396.642Zm5.967-2.35-.737.769V25h-1.174v-9.75h1.174v5.897l.629-.755 2.14-2.26h1.427L91.92 21 94.902 25h-1.377l-2.393-3.18Zm4.36-.317c0-.672.132-1.278.394-1.815a2.988 2.988 0 0 1 1.105-1.244 3.023 3.023 0 0 1 1.618-.438c.936 0 1.691.324 2.266.971.58.648.87 1.509.87 2.584v.082c0 .669-.129 1.27-.387 1.803-.254.529-.62.941-1.098 1.238-.474.296-1.02.444-1.638.444-.93 0-1.686-.324-2.266-.971-.576-.648-.863-1.505-.863-2.571v-.083Zm1.181.14c0 .762.176 1.373.527 1.835.356.46.83.692 1.422.692.597 0 1.07-.233 1.422-.699.351-.47.527-1.125.527-1.968 0-.753-.18-1.362-.54-1.828a1.693 1.693 0 0 0-1.422-.704c-.58 0-1.047.23-1.402.692-.356.46-.534 1.121-.534 1.98Zm10.785 2.679c-.457.537-1.128.806-2.012.806-.732 0-1.291-.212-1.676-.635-.381-.427-.573-1.058-.578-1.891v-4.47h1.175v4.438c0 1.04.423 1.561 1.269 1.561.897 0 1.494-.334 1.79-1.003v-4.995h1.175V25h-1.118l-.025-.68Zm4.526-7.852v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25c-.309.085-.61.127-.902.127-.524 0-.92-.159-1.187-.476-.266-.317-.399-.768-.399-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm11.965 6.912 1.321-5.25h1.174l-2 6.869h-.952l-1.669-5.205L120.198 25h-.952l-1.994-6.868h1.168l1.352 5.141 1.6-5.141h.946l1.631 5.25Zm4.97 1.619h-1.174v-6.868h1.174V25Zm-1.269-8.69a.71.71 0 0 1 .171-.482c.119-.131.292-.197.521-.197.228 0 .402.066.52.197a.692.692 0 0 1 .178.482c0 .19-.059.35-.178.476-.118.127-.292.19-.52.19-.229 0-.402-.063-.521-.19a.686.686 0 0 1-.171-.476Zm4.748.159v1.663h1.282v.908h-1.282v4.259c0 .275.057.482.171.622.115.135.309.203.584.203.136 0 .322-.025.559-.076V25a3.404 3.404 0 0 1-.901.127c-.525 0-.921-.159-1.187-.476-.267-.317-.4-.768-.4-1.352v-4.26h-1.251v-.907h1.251v-1.663h1.174Zm3.834 2.494c.52-.639 1.198-.958 2.031-.958 1.452 0 2.184.819 2.196 2.456V25h-1.174v-4.545c-.004-.495-.118-.861-.343-1.098-.22-.237-.565-.355-1.034-.355-.381 0-.715.101-1.003.304-.288.203-.512.47-.673.8V25h-1.174v-9.75h1.174v3.713Zm10.613 2.419V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM157.808 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.955.851-.678 0-1.234-.19-1.67-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.143v-.54c0-.41-.123-.736-.369-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99.246-.322.576-.576.99-.762.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.718-.742v-1.41h-.921c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.246.207.561.311.946.311Zm6.925-.825 1.6-5.148h1.257l-2.762 7.928c-.427 1.143-1.106 1.714-2.037 1.714l-.222-.02-.438-.082v-.952l.317.026c.398 0 .707-.08.927-.242.224-.16.408-.455.552-.882l.26-.698-2.45-6.792h1.282l1.714 5.148Zm5.313-1.898V25h-1.219v-9.242h3.409c1.012 0 1.803.258 2.374.774.576.517.863 1.2.863 2.05 0 .898-.281 1.59-.844 2.076-.558.483-1.36.724-2.406.724h-2.177Zm0-.997h2.19c.652 0 1.151-.152 1.498-.457.347-.309.521-.753.521-1.333 0-.55-.174-.99-.521-1.32-.347-.33-.823-.502-1.428-.514h-2.26v3.624ZM179.06 25c-.068-.135-.123-.377-.165-.724-.546.567-1.198.851-1.956.851-.677 0-1.233-.19-1.669-.571a1.87 1.87 0 0 1-.647-1.46c0-.715.27-1.27.812-1.663.546-.398 1.312-.597 2.298-.597h1.142v-.54c0-.41-.122-.736-.368-.977-.245-.246-.607-.368-1.085-.368-.419 0-.77.105-1.054.317-.283.212-.425.468-.425.768h-1.181c0-.343.121-.673.362-.99a2.51 2.51 0 0 1 .99-.762c.419-.186.878-.28 1.378-.28.791 0 1.411.2 1.86.598.448.393.681.937.698 1.63v3.162c0 .63.08 1.132.241 1.504V25h-1.231Zm-1.949-.895c.368 0 .717-.095 1.047-.286.33-.19.569-.438.717-.742v-1.41h-.92c-1.439 0-2.158.421-2.158 1.264 0 .368.123.656.368.863.245.207.561.311.946.311Zm6.056.895h-1.175v-9.75h1.175V25Z"
47
+ }));
59
48
  exports.PayPal = PayPal;