@stamcat/craftsman 0.0.27-alpha.9 → 0.0.28
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.
- package/AGENTS.md +21 -403
- package/Components.esm.js +62 -11
- package/README.md +63 -12
- package/Styles.esm.js +7 -7
- package/Utilities.esm.js +2 -2
- package/_virtual/_rolldown/runtime.esm.js +18 -6
- package/package.json +51 -3
- package/src/components/Button/AGENTS.md +65 -0
- package/src/components/Button/Button.d.ts +1 -1
- package/src/components/Button/Button.esm.js +11 -17
- package/src/components/Carousel/AGENTS.md +41 -0
- package/src/components/Carousel/Carousel.css +1 -0
- package/src/components/Carousel/Carousel.d.ts +11 -0
- package/src/components/Carousel/Carousel.scss +34 -0
- package/src/components/Carousel/Carousel2.esm.js +75 -0
- package/src/components/Checkbox/AGENTS.md +34 -0
- package/src/components/Checkbox/Checkbox.d.ts +8 -0
- package/src/components/Checkbox/Checkbox.esm.js +18 -0
- package/src/components/DatePicker/AGENTS.md +36 -0
- package/src/components/DatePicker/DatePicker.css +1 -0
- package/src/components/DatePicker/DatePicker.d.ts +8 -0
- package/src/components/DatePicker/DatePicker.scss +61 -0
- package/src/components/DatePicker/DatePicker2.esm.js +29 -0
- package/src/components/DatePicker/ReactCalendar.css +1 -0
- package/src/components/DatePicker/ReactCalendar.scss +158 -0
- package/src/components/DatePicker/_DatePicker.scss +73 -0
- package/src/components/DateRangePicker/AGENTS.md +38 -0
- package/src/components/DateRangePicker/DateRangePicker.css +1 -0
- package/src/components/DateRangePicker/DateRangePicker.d.ts +8 -0
- package/src/components/DateRangePicker/DateRangePicker.scss +62 -0
- package/src/components/DateRangePicker/DateRangePicker2.esm.js +29 -0
- package/src/components/DateTimePicker/AGENTS.md +41 -0
- package/src/components/DateTimePicker/DateTimePicker.css +1 -0
- package/src/components/DateTimePicker/DateTimePicker.d.ts +13 -0
- package/src/components/DateTimePicker/DateTimePicker.scss +86 -0
- package/src/components/DateTimePicker/DateTimePicker2.esm.js +82 -0
- package/src/components/Icons/IconAmazonPay.d.ts +2 -0
- package/src/components/Icons/IconAmazonPay.esm.js +76 -0
- package/src/components/Icons/IconAmex.d.ts +2 -0
- package/src/components/Icons/IconAmex.esm.js +87 -0
- package/src/components/Icons/IconApplePay.d.ts +2 -0
- package/src/components/Icons/IconApplePay.esm.js +26 -0
- package/src/components/Icons/IconDiscover.d.ts +2 -0
- package/src/components/Icons/IconDiscover.esm.js +129 -0
- package/src/components/Icons/IconGooglePay.d.ts +2 -0
- package/src/components/Icons/IconGooglePay.esm.js +64 -0
- package/src/components/Icons/IconMaestro.d.ts +2 -0
- package/src/components/Icons/IconMaestro.esm.js +38 -0
- package/src/components/Icons/IconMastercard.d.ts +2 -0
- package/src/components/Icons/IconMastercard.esm.js +27 -0
- package/src/components/Icons/IconPayPal.d.ts +2 -0
- package/src/components/Icons/IconPayPal.esm.js +52 -0
- package/src/components/Icons/IconSepa.d.ts +2 -0
- package/src/components/Icons/IconSepa.esm.js +272 -0
- package/src/components/Icons/IconShopPay.d.ts +2 -0
- package/src/components/Icons/IconShopPay.esm.js +35 -0
- package/src/components/Icons/IconSquare.d.ts +2 -0
- package/src/components/Icons/IconSquare.esm.js +11 -0
- package/src/components/Icons/IconStripe.d.ts +2 -0
- package/src/components/Icons/IconStripe.esm.js +57 -0
- package/src/components/Icons/IconUnionPay.d.ts +2 -0
- package/src/components/Icons/IconUnionPay.esm.js +28 -0
- package/src/components/Icons/IconVenmo.d.ts +2 -0
- package/src/components/Icons/IconVenmo.esm.js +21 -0
- package/src/components/Icons/IconVisa.d.ts +2 -0
- package/src/components/Icons/IconVisa.esm.js +14 -0
- package/src/components/Icons/index.d.ts +15 -0
- package/src/components/Icons/index.esm.js +16 -0
- package/src/components/Icons/types.d.ts +4 -0
- package/src/components/Input/AGENTS.md +30 -0
- package/src/components/Input/Input.css +1 -1
- package/src/components/Input/Input.scss +108 -95
- package/src/components/Input/Input2.esm.js +27 -18
- package/src/components/Input/InputWrapper.d.ts +1 -0
- package/src/components/InputNumber/AGENTS.md +37 -0
- package/src/components/InputNumber/InputNumber.css +1 -0
- package/src/components/InputNumber/InputNumber.d.ts +10 -0
- package/src/components/InputNumber/InputNumber.scss +29 -0
- package/src/components/InputNumber/InputNumber2.esm.js +36 -0
- package/src/components/InputPassword/AGENTS.md +29 -0
- package/src/components/{Input → InputPassword}/InputPassword.d.ts +1 -1
- package/src/components/InputPassword/InputPassword.esm.js +30 -0
- package/src/components/InputPhone/AGENTS.md +35 -0
- package/src/components/InputPhone/InputPhone.css +1 -0
- package/src/components/{Input → InputPhone}/InputPhone.d.ts +1 -1
- package/src/components/InputPhone/InputPhone.scss +266 -0
- package/src/components/{Input/InputPhone.esm.js → InputPhone/InputPhone2.esm.js} +4 -4
- package/src/components/Loader/AGENTS.md +31 -0
- package/src/components/Loader/Loader.esm.js +1 -1
- package/src/components/Loader/types.d.ts +1 -1
- package/src/components/Modal/AGENTS.md +47 -0
- package/src/components/Modal/Modal.css +1 -0
- package/src/components/Modal/Modal.scss +150 -0
- package/src/components/Modal/Modal2.esm.js +53 -0
- package/src/components/Notice/AGENTS.md +42 -0
- package/src/components/Notice/Notice.css +1 -0
- package/src/components/Notice/Notice.d.ts +13 -0
- package/src/components/Notice/Notice.scss +76 -0
- package/src/components/Notice/Notice2.esm.js +56 -0
- package/src/components/Pagination/AGENTS.md +38 -0
- package/src/components/Pagination/Pagination.css +1 -0
- package/src/components/Pagination/Pagination.d.ts +10 -0
- package/src/components/Pagination/Pagination.scss +22 -0
- package/src/components/Pagination/Pagination2.esm.js +64 -0
- package/src/components/RadioButton/AGENTS.md +44 -0
- package/src/components/RadioButton/RadioButton.d.ts +9 -0
- package/src/components/RadioButton/RadioButton.esm.js +18 -0
- package/src/components/Select/AGENTS.md +36 -0
- package/src/components/SortableList/AGENTS.md +45 -0
- package/src/components/SortableList/ListItem.d.ts +10 -0
- package/src/components/SortableList/ListItem.esm.js +67 -0
- package/src/components/SortableList/SortableList.css +1 -0
- package/src/components/SortableList/SortableList.d.ts +23 -0
- package/src/components/SortableList/SortableList.scss +41 -0
- package/src/components/SortableList/SortableList2.esm.js +54 -0
- package/src/components/SortableList/utilities.d.ts +7 -0
- package/src/components/SortableList/utilities.esm.js +4 -0
- package/src/components/Text/AGENTS.md +32 -0
- package/src/components/Text/Text.css +1 -1
- package/src/components/Text/Text.scss +2 -2
- package/src/components/Textarea/AGENTS.md +32 -0
- package/src/components/{Input → Textarea}/Textarea.d.ts +1 -1
- package/src/components/Textarea/Textarea.esm.js +23 -0
- package/src/components/TimePicker/AGENTS.md +42 -0
- package/src/components/TimePicker/TimePicker.css +1 -0
- package/src/components/TimePicker/TimePicker.d.ts +13 -0
- package/src/components/TimePicker/TimePicker.scss +226 -0
- package/src/components/TimePicker/TimePicker2.esm.js +98 -0
- package/src/components/TimePicker/TimePickerDisplay.d.ts +16 -0
- package/src/components/TimePicker/TimePickerDisplay.esm.js +54 -0
- package/src/components/TimePicker/TimePickerWheel.d.ts +13 -0
- package/src/components/TimePicker/TimePickerWheel.esm.js +61 -0
- package/src/components/TimePicker/constants.d.ts +7 -0
- package/src/components/TimePicker/constants.esm.js +3 -0
- package/src/components/TimePicker/utilities.d.ts +15 -0
- package/src/components/TimePicker/utilities.esm.js +20 -0
- package/src/components/Toggle/AGENTS.md +33 -0
- package/src/components/Toggle/Toggle.css +1 -0
- package/src/components/Toggle/Toggle.d.ts +5 -0
- package/src/components/Toggle/Toggle.scss +64 -0
- package/src/components/Toggle/Toggle2.esm.js +19 -0
- package/src/components/Tooltip/AGENTS.md +41 -0
- package/src/components/Tooltip/Tooltip.css +1 -0
- package/src/components/Tooltip/Tooltip.d.ts +12 -0
- package/src/components/Tooltip/Tooltip.scss +29 -0
- package/src/components/Tooltip/Tooltip2.esm.js +65 -0
- package/src/components/index.d.ts +17 -6
- package/src/styles/global/components/_button.scss +24 -21
- package/src/styles/global/components/_checkbox.scss +5 -4
- package/src/styles/global/components/_input.scss +1 -1
- package/src/styles/global/components/_radioButton.scss +5 -4
- package/src/styles/global/components/_typography.scss +6 -1
- package/src/styles/global/globalStyles.scss +9 -5
- package/src/styles/theme/components.esm.js +5 -6
- package/src/styles/utilities/_functions.scss +2 -2
- package/src/styles/utilities/_placeholders.scss +6 -0
- package/src/styles/utilities/layout.esm.js +3 -3
- package/src/utilities/types.d.ts +28 -3
- package/src/utilities/types.esm.js +11 -5
- package/src/utilities/validations.d.ts +5 -0
- package/src/utilities/validations.esm.js +19 -1
- package/src/components/Input/Checkbox.d.ts +0 -7
- package/src/components/Input/Checkbox.esm.js +0 -11
- package/src/components/Input/DatePicker.d.ts +0 -8
- package/src/components/Input/DatePicker.esm.js +0 -24
- package/src/components/Input/InputPassword.esm.js +0 -28
- package/src/components/Input/RadioButton.d.ts +0 -7
- package/src/components/Input/RadioButton.esm.js +0 -11
- package/src/components/Input/Textarea.esm.js +0 -24
- package/src/components/Modal/Modal.esm.js +0 -53
- package/src/components/Modal/Modal.module.css +0 -1
- package/src/components/Modal/Modal.module.esm.js +0 -16
- package/src/components/Modal/Modal.module.scss +0 -147
- package/src/styles/global/components/_reactCalendar.css +0 -1
- package/src/styles/global/components/_reactCalendar.scss +0 -237
- package/src/styles/global/components/_reactDatePicker.css +0 -1
- package/src/styles/global/components/_reactDatePicker.scss +0 -152
- package/src/styles/global/components/_reactPhone.css +0 -1
- package/src/styles/global/components/_reactPhone.scss +0 -265
- /package/src/components/{Progress.d.ts → Progress/Progress.d.ts} +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconAmazonPay.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 176.515 33.863",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: [/* @__PURE__ */ e("defs", { children: /* @__PURE__ */ e("clipPath", {
|
|
9
|
+
id: "_clipPath_YQXZfDyPH8PDg72bLQM3P9CWVeOJZUa0",
|
|
10
|
+
children: /* @__PURE__ */ e("rect", {
|
|
11
|
+
width: "176.515",
|
|
12
|
+
height: "33.863"
|
|
13
|
+
})
|
|
14
|
+
}) }), /* @__PURE__ */ t("g", {
|
|
15
|
+
clipPath: "url(#_clipPath_YQXZfDyPH8PDg72bLQM3P9CWVeOJZUa0)",
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ e("path", {
|
|
18
|
+
d: " M 69.652 26.489 C 63.129 31.303 53.672 33.863 45.528 33.863 C 34.115 33.863 23.837 29.644 16.059 22.621 C 15.449 22.069 15.993 21.316 16.727 21.743 C 25.118 26.626 35.496 29.567 46.213 29.567 C 53.443 29.567 61.391 28.066 68.704 24.964 C 69.807 24.497 70.732 25.691 69.652 26.489 Z ",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
fill: "rgb(247,156,52)"
|
|
21
|
+
}),
|
|
22
|
+
/* @__PURE__ */ e("path", {
|
|
23
|
+
d: " M 72.367 23.389 C 71.532 22.321 66.852 22.883 64.749 23.135 C 64.112 23.212 64.013 22.655 64.587 22.252 C 68.321 19.629 74.44 20.386 75.151 21.265 C 75.867 22.15 74.962 28.285 71.464 31.212 C 70.925 31.662 70.413 31.422 70.652 30.828 C 71.44 28.861 73.202 24.459 72.367 23.389 Z ",
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
fill: "rgb(247,156,52)"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ e("path", {
|
|
28
|
+
d: " M 64.897 3.724 L 64.897 1.176 C 64.899 0.788 65.191 0.53 65.543 0.531 L 76.965 0.53 C 77.33 0.53 77.624 0.795 77.624 1.173 L 77.624 3.358 C 77.62 3.725 77.311 4.203 76.764 4.962 L 70.847 13.41 C 73.043 13.359 75.366 13.688 77.362 14.809 C 77.812 15.062 77.933 15.437 77.968 15.804 L 77.968 18.523 C 77.968 18.898 77.558 19.331 77.126 19.106 C 73.611 17.264 68.946 17.063 65.058 19.128 C 64.661 19.34 64.246 18.912 64.246 18.537 L 64.246 15.952 C 64.246 15.539 64.254 14.831 64.671 14.201 L 71.525 4.367 L 65.557 4.366 C 65.192 4.366 64.899 4.106 64.897 3.724 Z ",
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
fill: "rgb(51,62,71)"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ e("path", {
|
|
33
|
+
d: " M 23.233 19.641 L 19.758 19.641 C 19.427 19.62 19.163 19.372 19.136 19.054 L 19.139 1.219 C 19.139 0.863 19.439 0.578 19.81 0.578 L 23.046 0.577 C 23.384 0.594 23.656 0.85 23.677 1.176 L 23.677 3.504 L 23.743 3.504 C 24.586 1.252 26.175 0.201 28.316 0.201 C 30.489 0.201 31.852 1.252 32.825 3.504 C 33.668 1.252 35.582 0.201 37.625 0.201 C 39.085 0.201 40.674 0.802 41.647 2.153 C 42.75 3.655 42.524 5.831 42.524 7.745 L 42.52 19 C 42.52 19.355 42.221 19.641 41.85 19.641 L 38.38 19.641 C 38.03 19.619 37.756 19.343 37.756 19.001 L 37.755 9.546 C 37.755 8.796 37.82 6.92 37.657 6.207 C 37.398 5.005 36.62 4.667 35.615 4.667 C 34.771 4.667 33.895 5.23 33.538 6.13 C 33.181 7.032 33.214 8.532 33.214 9.546 L 33.214 19 C 33.214 19.355 32.914 19.641 32.544 19.641 L 29.073 19.641 C 28.724 19.619 28.449 19.343 28.449 19.001 L 28.445 9.546 C 28.445 7.557 28.77 4.631 26.305 4.631 C 23.807 4.631 23.905 7.482 23.905 9.546 L 23.903 19 C 23.903 19.355 23.603 19.641 23.233 19.641 Z ",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
fill: "rgb(51,62,71)"
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ e("path", {
|
|
38
|
+
d: " M 87.488 3.842 C 84.926 3.842 84.764 7.331 84.764 9.508 C 84.764 11.685 84.732 16.339 87.457 16.339 C 90.149 16.339 90.279 12.586 90.279 10.297 C 90.279 8.796 90.213 6.994 89.759 5.568 C 89.37 4.329 88.591 3.842 87.488 3.842 Z M 87.457 0.201 C 92.614 0.201 95.403 4.631 95.403 10.26 C 95.403 15.7 92.322 20.017 87.457 20.017 C 82.396 20.017 79.639 15.588 79.639 10.072 C 79.639 4.517 82.428 0.201 87.457 0.201 Z ",
|
|
39
|
+
fillRule: "evenodd",
|
|
40
|
+
fill: "rgb(51,62,71)"
|
|
41
|
+
}),
|
|
42
|
+
/* @__PURE__ */ e("path", {
|
|
43
|
+
d: " M 102.092 19.641 L 98.629 19.641 C 98.282 19.619 98.006 19.343 98.006 19.001 L 98 1.16 C 98.03 0.833 98.318 0.578 98.668 0.578 L 101.891 0.577 C 102.195 0.593 102.445 0.799 102.509 1.076 L 102.509 3.804 L 102.574 3.804 C 103.548 1.364 104.909 0.201 107.309 0.201 C 108.866 0.201 110.391 0.764 111.364 2.303 C 112.272 3.729 112.272 6.13 112.272 7.857 L 112.272 19.08 C 112.234 19.396 111.95 19.641 111.606 19.641 L 108.123 19.641 C 107.801 19.621 107.542 19.384 107.504 19.08 L 107.504 9.397 C 107.504 7.445 107.732 4.592 105.331 4.592 C 104.488 4.592 103.709 5.155 103.32 6.018 C 102.833 7.107 102.768 8.195 102.768 9.397 L 102.768 19 C 102.762 19.355 102.462 19.641 102.092 19.641 Z ",
|
|
44
|
+
fillRule: "evenodd",
|
|
45
|
+
fill: "rgb(51,62,71)"
|
|
46
|
+
}),
|
|
47
|
+
/* @__PURE__ */ e("path", {
|
|
48
|
+
d: " M 59.294 19.597 C 59.065 19.803 58.734 19.817 58.474 19.678 C 57.32 18.719 57.113 18.276 56.482 17.362 C 54.575 19.305 53.224 19.888 50.753 19.888 C 47.828 19.888 45.552 18.082 45.552 14.472 C 45.552 11.651 47.081 9.733 49.258 8.793 C 51.143 7.965 53.776 7.815 55.792 7.589 L 55.792 7.138 C 55.792 6.309 55.857 5.333 55.369 4.618 C 54.946 3.978 54.134 3.715 53.419 3.715 C 52.093 3.715 50.916 4.394 50.626 5.801 C 50.565 6.114 50.337 6.425 50.023 6.441 L 46.654 6.076 C 46.37 6.011 46.054 5.783 46.135 5.349 C 46.9 1.32 50.498 0.064 53.768 0.03 L 54.026 0.03 C 55.7 0.051 57.838 0.51 59.14 1.759 C 60.831 3.339 60.667 5.445 60.667 7.74 L 60.667 13.153 C 60.667 14.782 61.344 15.496 61.979 16.373 C 62.202 16.69 62.251 17.065 61.968 17.297 C 61.258 17.892 59.997 18.987 59.304 19.605 L 59.294 19.597 Z M 55.792 11.125 C 55.792 12.479 55.824 13.607 55.142 14.811 C 54.589 15.788 53.711 16.39 52.736 16.39 C 51.404 16.39 50.624 15.375 50.624 13.87 C 50.624 10.91 53.278 10.372 55.792 10.372 L 55.792 11.125 Z ",
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
fill: "rgb(51,62,71)"
|
|
51
|
+
}),
|
|
52
|
+
/* @__PURE__ */ e("path", {
|
|
53
|
+
d: " M 13.743 19.597 C 13.513 19.803 13.181 19.817 12.922 19.678 C 11.767 18.719 11.56 18.276 10.93 17.362 C 9.022 19.305 7.672 19.888 5.201 19.888 C 2.276 19.888 0 18.082 0 14.472 C 0 11.651 1.527 9.733 3.706 8.793 C 5.591 7.965 8.224 7.815 10.239 7.589 L 10.239 7.138 C 10.239 6.309 10.305 5.333 9.817 4.618 C 9.394 3.978 8.581 3.715 7.867 3.715 C 6.541 3.715 5.362 4.394 5.074 5.801 C 5.014 6.114 4.785 6.425 4.47 6.441 L 1.102 6.076 C 0.817 6.011 0.501 5.783 0.583 5.349 C 1.346 1.32 4.945 0.064 8.216 0.03 L 8.474 0.03 C 10.148 0.051 12.286 0.51 13.588 1.759 C 15.278 3.339 15.115 5.445 15.115 7.74 L 15.115 13.153 C 15.115 14.782 15.792 15.496 16.427 16.373 C 16.648 16.69 16.699 17.065 16.416 17.297 C 15.706 17.892 14.444 18.987 13.751 19.605 L 13.743 19.597 Z M 10.239 11.125 C 10.239 12.479 10.272 13.607 9.589 14.811 C 9.037 15.788 8.159 16.39 7.183 16.39 C 5.851 16.39 5.071 15.375 5.071 13.87 C 5.071 10.91 7.726 10.372 10.239 10.372 L 10.239 11.125 Z ",
|
|
54
|
+
fillRule: "evenodd",
|
|
55
|
+
fill: "rgb(51,62,71)"
|
|
56
|
+
}),
|
|
57
|
+
/* @__PURE__ */ e("path", {
|
|
58
|
+
d: " M 159.773 26.039 C 159.773 25.587 159.773 25.181 159.773 24.729 C 159.773 24.356 159.956 24.099 160.345 24.122 C 161.071 24.225 162.098 24.328 162.827 24.178 C 163.779 23.98 164.462 23.305 164.866 22.38 C 165.435 21.078 165.812 20.028 166.05 19.339 L 158.821 1.431 C 158.699 1.127 158.663 0.563 159.27 0.563 L 161.797 0.563 C 162.279 0.563 162.475 0.869 162.583 1.169 L 167.824 15.715 L 172.827 1.169 C 172.929 0.871 173.134 0.563 173.612 0.563 L 175.995 0.563 C 176.598 0.563 176.564 1.126 176.444 1.431 L 169.273 19.898 C 168.345 22.356 167.109 26.271 164.325 26.951 C 162.929 27.316 161.168 27.184 160.134 26.751 C 159.873 26.62 159.773 26.27 159.773 26.039 Z ",
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
fill: "rgb(51,62,71)"
|
|
61
|
+
}),
|
|
62
|
+
/* @__PURE__ */ e("path", {
|
|
63
|
+
d: " M 156.402 18.55 C 156.402 18.883 156.129 19.156 155.794 19.156 L 154.012 19.156 C 153.627 19.156 153.364 18.878 153.315 18.55 L 153.136 17.337 C 152.317 18.03 151.312 18.639 150.222 19.063 C 148.126 19.877 145.71 20.012 143.662 18.754 C 142.181 17.845 141.395 16.068 141.395 14.235 C 141.395 12.817 141.832 11.411 142.801 10.39 C 144.094 8.995 145.968 8.31 148.231 8.31 C 149.598 8.31 151.554 8.471 152.977 8.936 L 152.977 6.495 C 152.977 4.013 151.932 2.939 149.177 2.939 C 147.071 2.939 145.46 3.257 143.218 3.954 C 142.859 3.966 142.649 3.693 142.649 3.36 L 142.649 1.968 C 142.649 1.634 142.934 1.311 143.243 1.213 C 144.844 0.515 147.112 0.08 149.523 0 C 152.666 0 156.402 0.709 156.402 5.543 L 156.402 18.55 Z M 152.977 14.986 L 152.977 11.303 C 151.781 10.976 149.802 10.84 149.036 10.84 C 147.826 10.84 146.501 11.126 145.809 11.871 C 145.292 12.417 145.058 13.201 145.058 13.959 C 145.058 14.939 145.397 15.922 146.189 16.408 C 147.109 17.033 148.536 16.957 149.877 16.576 C 151.166 16.21 152.376 15.563 152.977 14.986 Z ",
|
|
64
|
+
fillRule: "evenodd",
|
|
65
|
+
fill: "rgb(51,62,71)"
|
|
66
|
+
}),
|
|
67
|
+
/* @__PURE__ */ e("path", {
|
|
68
|
+
d: " M 130.127 2.994 C 134.081 2.994 135.158 6.103 135.158 9.663 C 135.18 12.063 134.739 14.203 133.496 15.428 C 132.566 16.345 131.527 16.595 129.963 16.595 C 128.571 16.595 126.74 15.869 125.372 14.858 L 125.372 4.679 C 126.796 3.585 128.613 2.994 130.127 2.994 Z M 124.766 26.678 L 122.379 26.678 C 122.045 26.678 121.772 26.405 121.772 26.072 C 121.772 17.782 121.772 9.491 121.772 1.201 C 121.772 0.868 122.045 0.595 122.379 0.595 L 124.206 0.595 C 124.59 0.595 124.853 0.873 124.902 1.201 L 125.094 2.504 C 126.805 0.985 129.008 0.011 131.107 0.011 C 136.986 0.011 138.919 4.855 138.919 9.892 C 138.919 15.281 135.962 19.611 130.961 19.611 C 128.855 19.611 126.886 18.834 125.372 17.484 L 125.372 26.072 C 125.372 26.405 125.099 26.678 124.766 26.678 Z ",
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
fill: "rgb(51,62,71)"
|
|
71
|
+
})
|
|
72
|
+
]
|
|
73
|
+
})]
|
|
74
|
+
});
|
|
75
|
+
//#endregion
|
|
76
|
+
export { n as IconAmazonPay };
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconAmex.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ e("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 1000 997.51703",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: /* @__PURE__ */ t("g", {
|
|
9
|
+
transform: "translate(-55.5,-1002.3452)",
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ e("path", {
|
|
12
|
+
fill: "#016fd0",
|
|
13
|
+
d: "m 55.5,1002.3454 997.5168,0 0,538.4893 -49.3744,77.1475 49.3744,68.6613 0,313.2187 -997.5168,0 0,-507.6304 L 86.358989,1456.744 55.5,1422.7991 Z"
|
|
14
|
+
}),
|
|
15
|
+
/* @__PURE__ */ e("path", {
|
|
16
|
+
fill: "#ffffff",
|
|
17
|
+
d: "m 249.14015,1697.4441 0,-156.6094 165.82027,0 17.79072,23.1924 18.37901,-23.1924 601.88665,0 0,145.8088 c 0,0 -15.7404,10.644 -33.9449,10.8006 l -333.27706,0 -20.05834,-24.6872 0,24.6872 -65.72965,0 0,-42.1418 c 0,0 -8.97877,5.8825 -28.39026,5.8825 l -22.37277,0 0,36.2593 -99.52024,0 -17.7653,-23.6898 -18.03807,23.6898 z"
|
|
18
|
+
}),
|
|
19
|
+
/* @__PURE__ */ e("path", {
|
|
20
|
+
fill: "#ffffff",
|
|
21
|
+
d: "m 55.5,1422.7991 37.393125,-87.1766 64.667505,0 21.22103,48.8328 0,-48.8328 80.38767,0 12.63289,35.2949 12.24716,-35.2949 360.8573,0 0,17.7439 c 0,0 18.96995,-17.7439 50.14586,-17.7439 l 117.08499,0.4092 20.85469,48.1937 0,-48.6029 67.27259,0 18.5154,27.6834 0,-27.6834 67.88977,0 0,156.6093 -67.88977,0 -17.74392,-27.7731 0,27.7731 -98.83835,0 -9.93959,-24.6872 -26.57108,0 -9.77781,24.6872 -67.02872,0 c -26.82589,0 -43.97406,-17.3816 -43.97406,-17.3816 l 0,17.3816 -101.06318,0 -20.05835,-24.6872 0,24.6872 -375.80462,0 -9.93274,-24.6872 -26.48635,0 -9.86254,24.6872 -46.1989,0 z"
|
|
22
|
+
}),
|
|
23
|
+
/* @__PURE__ */ e("path", {
|
|
24
|
+
fill: "#016fd0",
|
|
25
|
+
d: "m 106.12803,1354.9291 -50.435161,117.2641 32.835892,0 9.305914,-23.4816 54.099665,0 9.2577,23.4816 33.55915,0 -50.38695,-117.2641 -38.23621,0 z m 18.66004,27.2909 16.49028,41.0329 -33.02877,0 16.53849,-41.0329 z"
|
|
26
|
+
}),
|
|
27
|
+
/* @__PURE__ */ e("path", {
|
|
28
|
+
fill: "#016fd0",
|
|
29
|
+
d: "m 198.22282,1472.1735 0,-117.2642 46.66163,0.1733 27.13999,75.6045 26.4901,-75.7778 46.28848,0 0,117.2642 -29.31604,0 0,-86.4052 -31.07562,86.4052 -25.71023,0 -31.16227,-86.4052 0,86.4052 z"
|
|
30
|
+
}),
|
|
31
|
+
/* @__PURE__ */ e("path", {
|
|
32
|
+
fill: "#016fd0",
|
|
33
|
+
d: "m 364.86136,1472.1735 0,-117.2642 95.66287,0 0,26.2302 -66.03824,0 0,20.0583 64.49529,0 0,24.6872 -64.49529,0 0,20.8298 66.03824,0 0,25.4587 z"
|
|
34
|
+
}),
|
|
35
|
+
/* @__PURE__ */ e("path", {
|
|
36
|
+
fill: "#016fd0",
|
|
37
|
+
d: "m 477.49667,1354.9291 0,117.2641 29.31604,0 0,-41.6596 12.34359,0 35.15032,41.6596 35.82536,0 -38.57374,-43.2025 c 15.8309,-1.3359 32.16085,-14.9233 32.16085,-36.0182 0,-24.6765 -19.36827,-38.0434 -40.98459,-38.0434 l -65.23783,0 z m 29.31604,26.2301 33.51093,0 c 8.03881,0 13.88655,6.2882 13.88655,12.3436 0,7.7905 -7.57673,12.3436 -13.45259,12.3436 l -33.94489,0 0,-24.6872 z"
|
|
38
|
+
}),
|
|
39
|
+
/* @__PURE__ */ e("path", {
|
|
40
|
+
fill: "#016fd0",
|
|
41
|
+
d: "m 625.61982,1472.1735 -29.93322,0 0,-117.2642 29.93322,0 z"
|
|
42
|
+
}),
|
|
43
|
+
/* @__PURE__ */ e("path", {
|
|
44
|
+
fill: "#016fd0",
|
|
45
|
+
d: "m 696.59549,1472.1735 -6.4611,0 c -31.26172,0 -50.24229,-24.6292 -50.24229,-58.1499 0,-34.3488 18.76806,-59.1143 58.24634,-59.1143 l 32.40194,0 0,27.7731 -33.58657,0 c -16.026,0 -27.35994,12.5067 -27.35994,31.6305 0,22.7096 12.95987,32.2476 31.63047,32.2476 l 7.71474,0 z"
|
|
46
|
+
}),
|
|
47
|
+
/* @__PURE__ */ e("path", {
|
|
48
|
+
fill: "#016fd0",
|
|
49
|
+
d: "m 760.3868,1354.9291 -50.43515,117.2641 32.83589,0 9.30591,-23.4816 54.09967,0 9.25769,23.4816 33.55915,0 -50.38694,-117.2641 -38.23622,0 z m 18.66005,27.2909 16.49027,41.0329 -33.02876,0 16.53849,-41.0329 z"
|
|
50
|
+
}),
|
|
51
|
+
/* @__PURE__ */ e("path", {
|
|
52
|
+
fill: "#016fd0",
|
|
53
|
+
d: "m 852.43338,1472.1735 0,-117.2642 37.27187,0 47.59035,73.6759 0,-73.6759 29.31604,0 0,117.2642 -36.06644,0 -48.79578,-75.6045 0,75.6045 z"
|
|
54
|
+
}),
|
|
55
|
+
/* @__PURE__ */ e("path", {
|
|
56
|
+
fill: "#016fd0",
|
|
57
|
+
d: "m 269.1985,1677.3858 0,-117.2642 95.66286,0 0,26.2302 -66.03823,0 0,20.0583 64.49528,0 0,24.6872 -64.49528,0 0,20.8298 66.03823,0 0,25.4587 z"
|
|
58
|
+
}),
|
|
59
|
+
/* @__PURE__ */ e("path", {
|
|
60
|
+
fill: "#016fd0",
|
|
61
|
+
d: "m 737.94653,1677.3858 0,-117.2642 95.66287,0 0,26.2302 -66.03824,0 0,20.0583 64.1867,0 0,24.6872 -64.1867,0 0,20.8298 66.03824,0 0,25.4587 z"
|
|
62
|
+
}),
|
|
63
|
+
/* @__PURE__ */ e("path", {
|
|
64
|
+
fill: "#016fd0",
|
|
65
|
+
d: "m 368.57408,1677.3858 46.57779,-57.9089 -47.68678,-59.3553 36.93435,0 28.39991,36.6932 28.49635,-36.6932 35.48784,0 -47.05996,58.6321 46.66353,58.6321 -36.92851,0 -27.57537,-36.1148 -26.90518,36.1148 z"
|
|
66
|
+
}),
|
|
67
|
+
/* @__PURE__ */ e("path", {
|
|
68
|
+
fill: "#016fd0",
|
|
69
|
+
d: "m 499.86944,1560.1414 0,117.2641 30.08751,0 0,-37.0308 30.85899,0 c 26.11107,0 45.90274,-13.8524 45.90274,-40.7917 0,-22.3164 -15.52271,-39.4416 -42.09358,-39.4416 l -64.75566,0 z m 30.08751,26.5194 32.49837,0 c 8.43546,0 14.46515,5.1701 14.46515,13.5008 0,7.8262 -5.99925,13.5008 -14.56158,13.5008 l -32.40194,0 0,-27.0016 z"
|
|
70
|
+
}),
|
|
71
|
+
/* @__PURE__ */ e("path", {
|
|
72
|
+
fill: "#016fd0",
|
|
73
|
+
d: "m 619.44802,1560.1216 0,117.2642 29.31604,0 0,-41.6597 12.34359,0 35.15032,41.6597 35.82536,0 -38.57374,-43.2026 c 15.83089,-1.3361 32.16085,-14.9233 32.16085,-36.0183 0,-24.6764 -19.36827,-38.0433 -40.98459,-38.0433 l -65.23783,0 z m 29.31604,26.2302 33.51093,0 c 8.03881,0 13.88654,6.2881 13.88654,12.3435 0,7.7906 -7.57673,12.3436 -13.45259,12.3436 l -33.94488,0 0,-24.6871 z"
|
|
74
|
+
}),
|
|
75
|
+
/* @__PURE__ */ e("path", {
|
|
76
|
+
fill: "#016fd0",
|
|
77
|
+
d: "m 847.18735,1677.3858 0,-25.4587 58.67066,0 c 8.68115,0 12.44003,-4.6912 12.44003,-9.8363 0,-4.9296 -3.74703,-9.9134 -12.44003,-9.9134 l -26.5126,0 c -23.04571,0 -35.88042,-14.0409 -35.88042,-35.1214 0,-18.8023 11.75348,-36.9344 45.99918,-36.9344 l 57.08913,0 -12.3436,26.3844 -49.37438,0 c -9.43821,0 -12.3436,4.9526 -12.3436,9.6821 0,4.8612 3.59036,10.222 10.80065,10.222 l 27.77309,0 c 25.69029,0 36.83792,14.5724 36.83792,33.6556 0,20.5163 -12.42212,37.3201 -38.23646,37.3201 z"
|
|
78
|
+
}),
|
|
79
|
+
/* @__PURE__ */ e("path", {
|
|
80
|
+
fill: "#016fd0",
|
|
81
|
+
d: "m 954.78398,1677.3858 0,-25.4587 58.67062,0 c 8.6812,0 12.4401,-4.6912 12.4401,-9.8363 0,-4.9296 -3.7471,-9.9134 -12.4401,-9.9134 l -26.51256,0 c -23.04571,0 -35.88043,-14.0409 -35.88043,-35.1214 0,-18.8023 11.75348,-36.9344 45.99918,-36.9344 l 57.08911,0 -12.3436,26.3844 -49.37436,0 c -9.4382,0 -12.34359,4.9526 -12.34359,9.6821 0,4.8612 3.59035,10.222 10.80064,10.222 l 27.77311,0 c 25.6903,0 36.8379,14.5724 36.8379,33.6556 0,20.5163 -12.4221,37.3201 -38.2365,37.3201 z"
|
|
82
|
+
})
|
|
83
|
+
]
|
|
84
|
+
})
|
|
85
|
+
});
|
|
86
|
+
//#endregion
|
|
87
|
+
export { n as IconAmex };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconApplePay.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ e("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 165.52107 105.9651",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: /* @__PURE__ */ t("g", { children: [
|
|
9
|
+
/* @__PURE__ */ e("path", {
|
|
10
|
+
id: "XMLID_4_",
|
|
11
|
+
d: "M150.69807,0H14.82318c-0.5659,0-1.1328,0-1.69769,0.0033c-0.47751,0.0034-0.95391,0.0087-1.43031,0.0217\n c-1.039,0.0281-2.0869,0.0894-3.1129,0.2738c-1.0424,0.1876-2.0124,0.4936-2.9587,0.9754\n c-0.9303,0.4731-1.782,1.0919-2.52009,1.8303c-0.73841,0.7384-1.35721,1.5887-1.83021,2.52\n c-0.4819,0.9463-0.7881,1.9166-0.9744,2.9598c-0.18539,1.0263-0.2471,2.074-0.2751,3.1119\n c-0.0128,0.4764-0.01829,0.9528-0.0214,1.4291c-0.0033,0.5661-0.0022,1.1318-0.0022,1.6989V91.142\n c0,0.5671-0.0011,1.13181,0.0022,1.69901c0.00311,0.4763,0.0086,0.9527,0.0214,1.4291\n c0.028,1.03699,0.08971,2.08469,0.2751,3.11069c0.1863,1.0436,0.4925,2.0135,0.9744,2.9599\n c0.473,0.9313,1.0918,1.7827,1.83021,2.52c0.73809,0.7396,1.58979,1.3583,2.52009,1.8302\n c0.9463,0.4831,1.9163,0.7892,2.9587,0.9767c1.026,0.1832,2.0739,0.2456,3.1129,0.2737c0.4764,0.0108,0.9528,0.0172,1.43031,0.0194\n c0.56489,0.0044,1.13179,0.0044,1.69769,0.0044h135.87489c0.5649,0,1.13181,0,1.69659-0.0044\n c0.47641-0.0022,0.95282-0.0086,1.4314-0.0194c1.0368-0.0281,2.0845-0.0905,3.11301-0.2737\n c1.041-0.1875,2.0112-0.4936,2.9576-0.9767c0.9313-0.4719,1.7805-1.0906,2.52011-1.8302c0.7372-0.7373,1.35599-1.5887,1.8302-2.52\n c0.48299-0.9464,0.78889-1.9163,0.97429-2.9599c0.1855-1.026,0.2457-2.0737,0.2738-3.11069\n c0.013-0.4764,0.01941-0.9528,0.02161-1.4291c0.00439-0.5672,0.00439-1.1319,0.00439-1.69901V14.8242\n c0-0.5671,0-1.1328-0.00439-1.6989c-0.0022-0.4763-0.00861-0.9527-0.02161-1.4291c-0.02811-1.0379-0.0883-2.0856-0.2738-3.1119\n c-0.18539-1.0432-0.4913-2.0135-0.97429-2.9598c-0.47421-0.9313-1.093-1.7816-1.8302-2.52\n c-0.73961-0.7384-1.58881-1.3572-2.52011-1.8303c-0.9464-0.4818-1.9166-0.7878-2.9576-0.9754\n c-1.0285-0.1844-2.0762-0.2457-3.11301-0.2738c-0.47858-0.013-0.95499-0.0183-1.4314-0.0217C151.82988,0,151.26297,0,150.69807,0\n L150.69807,0z"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ e("path", {
|
|
14
|
+
id: "XMLID_3_",
|
|
15
|
+
fill: "#FFFFFF",
|
|
16
|
+
d: "M150.69807,3.532l1.67149,0.0032c0.4528,0.0032,0.90561,0.0081,1.36092,0.0205\n c0.79201,0.0214,1.71849,0.0643,2.58209,0.2191c0.7507,0.1352,1.38029,0.3408,1.9845,0.6484\n c0.5965,0.3031,1.14301,0.7003,1.62019,1.1768c0.479,0.4797,0.87671,1.0271,1.18381,1.6302\n c0.30589,0.5995,0.51019,1.2261,0.64459,1.9823c0.1544,0.8542,0.1971,1.7832,0.21881,2.5801\n c0.01219,0.4498,0.01819,0.8996,0.0204,1.3601c0.00429,0.5569,0.0042,1.1135,0.0042,1.6715V91.142\n c0,0.558,0.00009,1.1136-0.0043,1.6824c-0.00211,0.4497-0.0081,0.8995-0.0204,1.3501c-0.02161,0.7957-0.0643,1.7242-0.2206,2.5885\n c-0.13251,0.7458-0.3367,1.3725-0.64429,1.975c-0.30621,0.6016-0.70331,1.1484-1.18022,1.6251\n c-0.47989,0.48-1.0246,0.876-1.62819,1.1819c-0.5997,0.3061-1.22821,0.51151-1.97151,0.6453\n c-0.88109,0.157-1.84639,0.2002-2.57339,0.2199c-0.4574,0.0103-0.9126,0.01649-1.37889,0.0187\n c-0.55571,0.0043-1.1134,0.0042-1.6692,0.0042H14.82318c-0.0074,0-0.0146,0-0.0221,0c-0.5494,0-1.0999,0-1.6593-0.0043\n c-0.4561-0.00211-0.9112-0.0082-1.3512-0.0182c-0.7436-0.0201-1.7095-0.0632-2.5834-0.2193\n c-0.74969-0.1348-1.3782-0.3402-1.9858-0.6503c-0.59789-0.3032-1.1422-0.6988-1.6223-1.1797\n c-0.4764-0.4756-0.8723-1.0207-1.1784-1.6232c-0.3064-0.6019-0.5114-1.2305-0.64619-1.9852\n c-0.15581-0.8626-0.19861-1.7874-0.22-2.5777c-0.01221-0.4525-0.01731-0.9049-0.02021-1.3547l-0.0022-1.3279l0.0001-0.3506V14.8242\n l-0.0001-0.3506l0.0021-1.3251c0.003-0.4525,0.0081-0.9049,0.02031-1.357c0.02139-0.7911,0.06419-1.7163,0.22129-2.5861\n c0.1336-0.7479,0.3385-1.3765,0.6465-1.9814c0.3037-0.5979,0.7003-1.1437,1.17921-1.6225\n c0.477-0.4772,1.02309-0.8739,1.62479-1.1799c0.6011-0.3061,1.2308-0.5116,1.9805-0.6465c0.8638-0.1552,1.7909-0.198,2.5849-0.2195\n c0.4526-0.0123,0.9052-0.0172,1.3544-0.0203l1.6771-0.0033H150.69807"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ t("g", { children: [/* @__PURE__ */ t("g", { children: [/* @__PURE__ */ e("path", { d: "M45.1862,35.64053c1.41724-1.77266,2.37897-4.15282,2.12532-6.58506c-2.07464,0.10316-4.60634,1.36871-6.07207,3.14276\n c-1.31607,1.5192-2.4809,3.99902-2.17723,6.3293C41.39111,38.72954,43.71785,37.36345,45.1862,35.64053" }), /* @__PURE__ */ e("path", { d: "M47.28506,38.98252c-3.38211-0.20146-6.25773,1.91951-7.87286,1.91951c-1.61602,0-4.08931-1.81799-6.76438-1.76899\n c-3.48177,0.05114-6.71245,2.01976-8.4793,5.15079c-3.63411,6.2636-0.95904,15.55471,2.57494,20.65606\n c1.71618,2.5238,3.78447,5.30269,6.50976,5.20287c2.57494-0.10104,3.58421-1.66732,6.71416-1.66732\n c3.12765,0,4.03679,1.66732,6.76252,1.61681c2.82665-0.05054,4.59381-2.52506,6.30997-5.05132\n c1.96878-2.877,2.77473-5.65498,2.82542-5.80748c-0.0507-0.05051-5.45058-2.12204-5.50065-8.33358\n c-0.05098-5.20101,4.23951-7.6749,4.44144-7.82832C52.3832,39.4881,48.5975,39.08404,47.28506,38.98252" })] }), /* @__PURE__ */ t("g", { children: [
|
|
19
|
+
/* @__PURE__ */ e("path", { d: "M76.73385,31.94381c7.35096,0,12.4697,5.06708,12.4697,12.44437c0,7.40363-5.22407,12.49704-12.65403,12.49704h-8.13892\n v12.94318h-5.88037v-37.8846H76.73385z M68.41059,51.9493h6.74732c5.11975,0,8.0336-2.75636,8.0336-7.53479\n c0-4.77792-2.91385-7.50845-8.00727-7.50845h-6.77365V51.9493z" }),
|
|
20
|
+
/* @__PURE__ */ e("path", { d: "M90.73997,61.97864c0-4.8311,3.70182-7.79761,10.26583-8.16526l7.56061-0.44614v-2.12639\n c0-3.07185-2.07423-4.90959-5.53905-4.90959c-3.28251,0-5.33041,1.57492-5.82871,4.04313h-5.35574\n c0.31499-4.98859,4.56777-8.66407,11.3941-8.66407c6.69466,0,10.97377,3.54432,10.97377,9.08388v19.03421h-5.43472v-4.54194\n h-0.13065c-1.60125,3.07185-5.09341,5.01441-8.71623,5.01441C94.52078,70.30088,90.73997,66.94038,90.73997,61.97864z\n M108.56641,59.4846v-2.17905l-6.8,0.41981c-3.38683,0.23649-5.30306,1.73291-5.30306,4.09579\n c0,2.41504,1.99523,3.99046,5.04075,3.99046C105.46823,65.81161,108.56641,63.08108,108.56641,59.4846z" }),
|
|
21
|
+
/* @__PURE__ */ e("path", { d: "M119.34167,79.9889v-4.5946c0.4193,0.10483,1.36425,0.10483,1.83723,0.10483c2.6252,0,4.04313-1.10245,4.90908-3.9378\n c0-0.05267,0.49931-1.68025,0.49931-1.70658l-9.97616-27.64562h6.14268l6.98432,22.47371h0.10432l6.98433-22.47371h5.9857\n l-10.34483,29.06304c-2.36186,6.69517-5.0924,8.84789-10.81577,8.84789C121.17891,80.12006,119.76098,80.06739,119.34167,79.9889\n z" })
|
|
22
|
+
] })] })
|
|
23
|
+
] })
|
|
24
|
+
});
|
|
25
|
+
//#endregion
|
|
26
|
+
export { n as IconApplePay };
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconDiscover.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
viewBox: "0 0 64 40",
|
|
5
|
+
fill: "none",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: n,
|
|
8
|
+
...r,
|
|
9
|
+
children: [
|
|
10
|
+
/* @__PURE__ */ e("path", {
|
|
11
|
+
d: "M22.7098 20.1024C22.7098 22.3132 24.4462 24.0271 26.6795 24.0271C27.3113 24.0271 27.8514 23.9026 28.5185 23.5891V21.8624C27.9322 22.4487 27.4128 22.6857 26.7475 22.6857C25.27 22.6857 24.2214 21.6146 24.2214 20.0915C24.2214 18.6479 25.304 17.5088 26.6795 17.5088C27.3794 17.5088 27.9091 17.7579 28.5185 18.3545V16.6285C27.8751 16.3022 27.3454 16.1667 26.7141 16.1667C24.4917 16.1667 22.7098 17.9159 22.7098 20.1024Z",
|
|
12
|
+
fill: "#251F1F"
|
|
13
|
+
}),
|
|
14
|
+
/* @__PURE__ */ e("path", {
|
|
15
|
+
d: "M18.9449 18.2761C18.9449 18.682 19.2037 18.897 20.084 19.2227C21.7529 19.8333 22.2475 20.374 22.2475 21.569C22.2475 23.0247 21.1776 24.038 19.6533 24.038C18.5372 24.038 17.7255 23.5988 17.0493 22.6067L17.9971 21.6941C18.3349 22.3473 18.8987 22.6972 19.598 22.6972C20.2529 22.6972 20.7371 22.2458 20.7371 21.6364C20.7371 21.3205 20.5901 21.0489 20.2972 20.8582C20.1496 20.7676 19.8574 20.6322 19.2833 20.4299C17.9054 19.9341 17.4327 19.4037 17.4327 18.3673C17.4327 17.1364 18.4479 16.2123 19.7784 16.2123C20.6028 16.2123 21.3574 16.4942 21.9886 17.0465L21.2207 18.0513C20.8386 17.623 20.4777 17.442 20.0378 17.442C19.4054 17.442 18.9449 17.8022 18.9449 18.2761Z",
|
|
16
|
+
fill: "#251F1F"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ e("path", {
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M10.3178 16.3369H8.16406V23.8576H10.3063C11.4448 23.8576 12.268 23.5891 12.9898 22.9894C13.8476 22.2792 14.3549 21.2087 14.3549 20.1024C14.3549 17.8831 12.6963 16.3369 10.3178 16.3369ZM12.0311 21.987C11.5699 22.4026 10.9715 22.5842 10.0237 22.5842H9.63006V17.6115H10.0237C10.9715 17.6115 11.5462 17.7804 12.0311 18.2196C12.539 18.671 12.8433 19.3709 12.8433 20.0915C12.8433 20.8132 12.539 21.5356 12.0311 21.987Z",
|
|
22
|
+
fill: "#251F1F"
|
|
23
|
+
}),
|
|
24
|
+
/* @__PURE__ */ e("path", {
|
|
25
|
+
d: "M16.4971 16.3369H15.0299V23.8576H16.4971V16.3369Z",
|
|
26
|
+
fill: "#251F1F"
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ e("path", {
|
|
29
|
+
d: "M38.1444 16.3369L40.1505 21.388L42.1821 16.3369H43.772L40.5229 24.0508H39.7337L36.5423 16.3369H38.1444Z",
|
|
30
|
+
fill: "#251F1F"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ e("path", {
|
|
33
|
+
d: "M44.4354 23.8576H48.5959V22.5842H45.9014V20.5544H48.4962V19.2804H45.9014V17.6115H48.5959V16.3369H44.4354V23.8576Z",
|
|
34
|
+
fill: "#251F1F"
|
|
35
|
+
}),
|
|
36
|
+
/* @__PURE__ */ e("path", {
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
clipRule: "evenodd",
|
|
39
|
+
d: "M51.7423 16.3369C53.4343 16.3369 54.4052 17.1492 54.4052 18.5568C54.4052 19.7087 53.7958 20.4645 52.6907 20.6893L55.0583 23.8576H53.2545L51.2241 20.8363H51.0321V23.8576H49.5673V16.3369H51.7423ZM51.0321 19.7992H51.4616C52.3985 19.7992 52.8948 19.3922 52.8948 18.6364C52.8948 17.9043 52.3985 17.521 51.4841 17.521H51.0321V19.7992Z",
|
|
40
|
+
fill: "#251F1F"
|
|
41
|
+
}),
|
|
42
|
+
/* @__PURE__ */ e("path", {
|
|
43
|
+
fillRule: "evenodd",
|
|
44
|
+
clipRule: "evenodd",
|
|
45
|
+
d: "M55.5741 16.7312C55.5741 16.5987 55.4824 16.5264 55.3226 16.5264H55.11V17.1899H55.2679V16.9329L55.4532 17.1899H55.647L55.4289 16.9165C55.5219 16.891 55.5741 16.8229 55.5741 16.7312ZM55.2946 16.8217H55.2679V16.6479H55.2965C55.3748 16.6479 55.4155 16.6765 55.4155 16.7336C55.4155 16.7919 55.3742 16.8217 55.2946 16.8217Z",
|
|
46
|
+
fill: "#251F1F"
|
|
47
|
+
}),
|
|
48
|
+
/* @__PURE__ */ e("path", {
|
|
49
|
+
fillRule: "evenodd",
|
|
50
|
+
clipRule: "evenodd",
|
|
51
|
+
d: "M54.7764 16.8569C54.7764 16.5355 55.0328 16.2785 55.3542 16.2785C55.6677 16.2785 55.9253 16.5404 55.9253 16.8569C55.9253 17.1753 55.6677 17.4353 55.3542 17.4353C55.0352 17.4353 54.7764 17.1777 54.7764 16.8569ZM54.8912 16.8575C54.8912 17.1212 55.0984 17.332 55.3517 17.332C55.6045 17.332 55.8098 17.1188 55.8098 16.8575C55.8098 16.5987 55.6045 16.3824 55.3517 16.3824C55.0966 16.3824 54.8912 16.5938 54.8912 16.8575Z",
|
|
52
|
+
fill: "#251F1F"
|
|
53
|
+
}),
|
|
54
|
+
/* @__PURE__ */ e("g", {
|
|
55
|
+
filter: "url(#filter0_i_166_8037)",
|
|
56
|
+
children: /* @__PURE__ */ e("path", {
|
|
57
|
+
d: "M32.965 24.0859C30.7669 24.0859 28.9844 22.3034 28.9844 20.1054V20.1C28.9844 19.0063 29.4272 18.0112 30.1435 17.295C30.1435 17.2894 30.149 17.2894 30.149 17.284C30.1544 17.284 30.1544 17.2785 30.16 17.2785C30.8762 16.5622 31.8715 16.1194 32.965 16.1194H32.9705C35.1686 16.1194 36.9511 17.9019 36.9511 20.1V20.1054C36.9511 21.199 36.5081 22.1887 35.7918 22.9105C35.7918 22.9159 35.7864 22.9159 35.7864 22.9214C35.7809 22.9214 35.7809 22.9268 35.7755 22.9268C35.0537 23.6431 34.064 24.0859 32.9705 24.0859H32.965Z",
|
|
58
|
+
fill: "url(#paint0_linear_166_8037)"
|
|
59
|
+
})
|
|
60
|
+
}),
|
|
61
|
+
/* @__PURE__ */ t("defs", { children: [/* @__PURE__ */ t("filter", {
|
|
62
|
+
id: "filter0_i_166_8037",
|
|
63
|
+
x: "28.9844",
|
|
64
|
+
y: "16.1194",
|
|
65
|
+
width: "8.25842",
|
|
66
|
+
height: "8.40398",
|
|
67
|
+
filterUnits: "userSpaceOnUse",
|
|
68
|
+
"color-interpolation-filters": "sRGB",
|
|
69
|
+
children: [
|
|
70
|
+
/* @__PURE__ */ e("feFlood", {
|
|
71
|
+
"flood-opacity": "0",
|
|
72
|
+
result: "BackgroundImageFix"
|
|
73
|
+
}),
|
|
74
|
+
/* @__PURE__ */ e("feBlend", {
|
|
75
|
+
mode: "normal",
|
|
76
|
+
in: "SourceGraphic",
|
|
77
|
+
in2: "BackgroundImageFix",
|
|
78
|
+
result: "shape"
|
|
79
|
+
}),
|
|
80
|
+
/* @__PURE__ */ e("feColorMatrix", {
|
|
81
|
+
in: "SourceAlpha",
|
|
82
|
+
type: "matrix",
|
|
83
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
84
|
+
result: "hardAlpha"
|
|
85
|
+
}),
|
|
86
|
+
/* @__PURE__ */ e("feOffset", {
|
|
87
|
+
dx: "0.291619",
|
|
88
|
+
dy: "0.437429"
|
|
89
|
+
}),
|
|
90
|
+
/* @__PURE__ */ e("feGaussianBlur", { stdDeviation: "0.291619" }),
|
|
91
|
+
/* @__PURE__ */ e("feComposite", {
|
|
92
|
+
in2: "hardAlpha",
|
|
93
|
+
operator: "arithmetic",
|
|
94
|
+
k2: "-1",
|
|
95
|
+
k3: "1"
|
|
96
|
+
}),
|
|
97
|
+
/* @__PURE__ */ e("feColorMatrix", {
|
|
98
|
+
type: "matrix",
|
|
99
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"
|
|
100
|
+
}),
|
|
101
|
+
/* @__PURE__ */ e("feBlend", {
|
|
102
|
+
mode: "normal",
|
|
103
|
+
in2: "shape",
|
|
104
|
+
result: "effect1_innerShadow_166_8037"
|
|
105
|
+
})
|
|
106
|
+
]
|
|
107
|
+
}), /* @__PURE__ */ t("linearGradient", {
|
|
108
|
+
id: "paint0_linear_166_8037",
|
|
109
|
+
x1: "30.8799",
|
|
110
|
+
y1: "16.1194",
|
|
111
|
+
x2: "37.4259",
|
|
112
|
+
y2: "21.6585",
|
|
113
|
+
gradientUnits: "userSpaceOnUse",
|
|
114
|
+
children: [
|
|
115
|
+
/* @__PURE__ */ e("stop", { "stop-color": "#EF3823" }),
|
|
116
|
+
/* @__PURE__ */ e("stop", {
|
|
117
|
+
offset: "0.489583",
|
|
118
|
+
"stop-color": "#F04D22"
|
|
119
|
+
}),
|
|
120
|
+
/* @__PURE__ */ e("stop", {
|
|
121
|
+
offset: "1",
|
|
122
|
+
"stop-color": "#F7911D"
|
|
123
|
+
})
|
|
124
|
+
]
|
|
125
|
+
})] })
|
|
126
|
+
]
|
|
127
|
+
});
|
|
128
|
+
//#endregion
|
|
129
|
+
export { n as IconDiscover };
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconGooglePay.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 64 23.999998",
|
|
6
|
+
fill: "none",
|
|
7
|
+
width: n,
|
|
8
|
+
...r,
|
|
9
|
+
children: [
|
|
10
|
+
/* @__PURE__ */ e("mask", {
|
|
11
|
+
id: "mask0_7332_2569",
|
|
12
|
+
maskUnits: "userSpaceOnUse",
|
|
13
|
+
x: "2",
|
|
14
|
+
y: "2",
|
|
15
|
+
width: "20",
|
|
16
|
+
height: "20",
|
|
17
|
+
children: /* @__PURE__ */ e("path", {
|
|
18
|
+
d: "m 21.2993,10.1765 h -9.3605 v 3.638 h 5.385 c -0.1717,1.3369 -0.9758,2.5375 -2.0329,3.2469 -0.8855,0.6003 -2.0149,0.9641 -3.3521,0.9641 -2.58411,0 -4.77967,-1.7554 -5.56574,-4.1201 -0.19877,-0.6002 -0.31623,-1.2369 -0.31623,-1.9008 0,-0.664 0.11746,-1.3006 0.31623,-1.9009 0.78607,-2.36471 2.98163,-4.12005 5.56574,-4.12005 1.4637,0 2.7648,0.50932 3.8038,1.49159 L 18.5887,4.6103 C 16.863,2.99139 14.6222,2.00003 11.9388,2.00003 8.05362,1.99093 4.70154,4.23741 3.06616,7.51162 2.38852,8.85768 2,10.3766 2,11.9955 2,13.6144 2.38852,15.1333 3.06616,16.4793 4.70154,19.7535 8.05362,22 11.9388,22 c 2.6834,0 4.9332,-0.8913 6.5776,-2.4193 1.8794,-1.7462 2.9636,-4.311 2.9636,-7.3579 0,-0.7094 -0.0632,-1.3915 -0.1807,-2.0463 z",
|
|
19
|
+
fill: "#ffffff"
|
|
20
|
+
})
|
|
21
|
+
}),
|
|
22
|
+
/* @__PURE__ */ e("g", {
|
|
23
|
+
mask: "url(#mask0_7332_2569)",
|
|
24
|
+
transform: "translate(-2,-2.0000025)",
|
|
25
|
+
children: /* @__PURE__ */ e("rect", {
|
|
26
|
+
x: "1.09668",
|
|
27
|
+
y: "1.08154",
|
|
28
|
+
width: "21.684601",
|
|
29
|
+
height: "21.8281",
|
|
30
|
+
fill: "url(#pattern0_7332_2569)"
|
|
31
|
+
})
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ e("path", {
|
|
34
|
+
fill: "#202124",
|
|
35
|
+
d: "M 26,18.669498 V 0.99999755 h 5.998 c 1.0566,0 2.0156,0.23032995 2.8771,0.69098995 0.8615,0.4442 1.5442,1.07761 2.0481,1.90021 0.5202,0.80615 0.7802,1.74392 0.7802,2.81331 0,1.05293 -0.26,1.99069 -0.7802,2.81329 -0.5039,0.8226005 -1.1866,1.4642005 -2.0481,1.9249005 -0.8615,0.4442 -1.8205,0.6663 -2.8771,0.6663 h -3.316 v 6.8605 z m 2.682,-9.4270005 h 3.3892 c 0.6339,0 1.1703,-0.1316 1.6092,-0.3949 0.4389,-0.2796 0.7721,-0.6334 0.9997,-1.06112 0.2438,-0.44421 0.3657,-0.90486 0.3657,-1.38197 0,-0.47711 -0.1219,-0.92955 -0.3657,-1.3573 -0.2276,-0.42775 -0.5608,-0.78147 -0.9997,-1.06116 -0.4389,-0.27968 -0.9753,-0.41953 -1.6092,-0.41953 H 28.682 Z"
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ e("path", {
|
|
38
|
+
fill: "#202124",
|
|
39
|
+
d: "m 43.4403,19.064398 c -0.9103,0 -1.7067,-0.181 -2.3895,-0.5429 -0.6827,-0.362 -1.2272,-0.8556 -1.6336,-1.4807 -0.3901,-0.6417 -0.5851,-1.3738 -0.5851,-2.1964 0,-0.9048 0.2275,-1.6699 0.6827,-2.295 0.4714,-0.6252 1.089,-1.1023 1.853,-1.4314 0.7802,-0.329 1.6418,-0.4935 2.5845,-0.4935 0.5364,0 1.0241,0.0411 1.463,0.1234 0.4388,0.0658 0.829,0.148 1.1703,0.2467 0.3414,0.0987 0.6096,0.2057 0.8046,0.3209 v -0.6664 c 0,-0.8226005 -0.2926,-1.4806005 -0.8777,-1.9742005 -0.5852,-0.4936 -1.3411,-0.74035 -2.2676,-0.74035 -0.6339,0 -1.2353,0.14805 -1.8043,0.44425 -0.5689,0.2796 -1.0321,0.6663 -1.3898,1.1598 l -1.7798,-1.4066 c 0.3576,-0.51004 0.7883,-0.94602 1.2922,-1.30797 0.5202,-0.36194 1.0972,-0.64163 1.7311,-0.83905 0.634,-0.19743 1.3086,-0.29614 2.0238,-0.29614 1.788,0 3.1696,0.45243 4.1449,1.3573 0.9753,0.88841 1.463,2.13876 1.463,3.7510605 v 7.8723 h -2.5358 v -1.5547 h -0.1463 c -0.2275,0.329 -0.5283,0.6416 -0.9021,0.9378 -0.3576,0.2961 -0.7802,0.5347 -1.2679,0.7156 -0.4876,0.1975 -1.0322,0.2962 -1.6336,0.2962 z m 0.4633,-2.1717 c 0.6827,0 1.2841,-0.1645 1.8042,-0.4936 0.5202,-0.329 0.9266,-0.7568 1.2192,-1.2832 0.3088,-0.5429 0.4632,-1.127 0.4632,-1.7522 -0.3738,-0.2138 -0.8127,-0.3866 -1.3166,-0.5182 -0.5039,-0.1481 -1.0485,-0.2221 -1.6336,-0.2221 -1.0566,0 -1.8124,0.2139 -2.2676,0.6416 -0.4551,0.4278 -0.6827,0.9625 -0.6827,1.6041 0,0.5923 0.2113,1.0776 0.634,1.456 0.4388,0.3784 1.0321,0.5676 1.7799,0.5676 z"
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ e("path", {
|
|
42
|
+
fill: "#202124",
|
|
43
|
+
d: "m 56.5878,23.382998 c -0.0487,0.1152 -0.1056,0.2304 -0.1707,0.3455 -0.0487,0.1317 -0.0812,0.2221 -0.0975,0.2715 h -2.8039 c 0.0812,-0.181 0.195,-0.436 0.3413,-0.765 0.1626,-0.3291 0.317,-0.6581 0.4633,-0.9871 0.0975,-0.2139 0.195,-0.4443 0.2926,-0.691 0.1137,-0.2468 0.2275,-0.5018 0.3413,-0.7651 0.1301,-0.2632 0.252,-0.5182 0.3657,-0.765 l 0.9266,-2.0483 -5.1934,-11.8948105 h 2.9258 l 3.5598,8.5880105 h 0.1219 L 61.0985,6.0836875 H 64 L 57.5631,21.087998 c -0.1138,0.2797 -0.2438,0.5758 -0.3901,0.8884 -0.13,0.3126 -0.252,0.5923 -0.3657,0.839 -0.0976,0.2633 -0.1707,0.4525 -0.2195,0.5676 z"
|
|
44
|
+
}),
|
|
45
|
+
/* @__PURE__ */ t("defs", { children: [/* @__PURE__ */ e("pattern", {
|
|
46
|
+
id: "pattern0_7332_2569",
|
|
47
|
+
patternContentUnits: "objectBoundingBox",
|
|
48
|
+
width: "1",
|
|
49
|
+
height: "1",
|
|
50
|
+
children: /* @__PURE__ */ e("use", {
|
|
51
|
+
xlinkHref: "#image0_7332_2569",
|
|
52
|
+
transform: "scale(0.0416667)"
|
|
53
|
+
})
|
|
54
|
+
}), /* @__PURE__ */ e("image", {
|
|
55
|
+
id: "image0_7332_2569",
|
|
56
|
+
width: "24",
|
|
57
|
+
height: "24",
|
|
58
|
+
preserveAspectRatio: "none",
|
|
59
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAD/klEQVRIiYWVT28cRRDFf9XdszuzXsd2HMlOiCUQAiFuHLjnykfig/EJOCEu/BESQkAgCthx/N+7O7sz0/U4zHp3HcmhpNbUzPS8qnr1qsf09cfiuoQmQja4qaALvd8kEIDB3UUAATAUBkBGGFiAWGHKyBKWGwQk9uf9x3WCeYKy6YHbCNlBBm5LcOujWAQiRsBjiSz0AQBZxDCUKoSR2JuDA+0W7C2DXQUovAfOoc94Bb7M1iJYgpD6b0LBnQkQhrkTVuVvL1YbqNq1f/f+fbbM/l1TSCSezCC1PT11hOgwG8DMl31Qv9q44h7rC9IKeJ2EVveGLBB43MLBHJLD0xoOakiCJ3N41EAUVLl/tmRJK1ix0fnVc4BsARFY17a/QdFdLwDKbu0H3WdM78Let2xGYhQhASNBmyHVMGugriG2+MkT3qZDTqpnXGoXp1eQLPJR/WaloJfV0UZVAAFZIJESBIcOGAG5gyJDU8CjBW3nvFw855vBV/wWPqFhsOK4z38pYYwgEXBMIilz0FySVvWMgAaoBFGozsxvh3TbNdfDxOtwyF92RGPDBykxCaNfyTOvyqckebPUM1hp4KAhXEwe80f5Od8tXnASP+SMPTrig+B33dCyuhwCBn0AC6kv2QIKgiyuy11+Lr7gx/Alpzznkv0l/+8xe2dmpA2KNsyTYaOW43TE23TIaX5G6w9T82BFZiQBpg4RcDkNQgqcy6h2f2IvBurZp1zffkbbPEYqlnQ4mxNh9/S79pMAl+OImcSNYCaYFceMdr7lg+3vmV++YN5WtO0OqNgAF/93lCSATk63IT2Aebhhu5yy7yXH1VNimGHowbG6H2p9lyZuTCVqxFxwIiMT+MWHXGjIhVecquRm/DsTG+Bekn0ASlgeYV5gKujMKXLFIA8BEdS3N506XEiUBn87TAVXGHNl/vWSS9/iZDDhYvcHbnd/JWtAbg6g28YWh1g3JnZjYt4i+IStxS6YGLZbBIW1is58eVXgUpErCs685EolF7GhHr2i06hf0aG7hcEtVh8R24bYZar5Pk2qGeSyb7UC6aWLM8FExhTjlVdcMeRaJSd6xNTHZCVayr5lKghpipQgzsGH5LDA44IiD4k40zjHzamaMelPwZmMIcZrDflHY0TgjXa58h1EpGGMNEREUmjJbuSwIJjj6QbaHRhcUqtAYY/OAjk4QbY+ri+0ntKJ1kPVbPhhQ0MhbBzpxdV6f5qvdtXFhHTsxjkDpiqYqeBMY6YaLdcWLSWdBkvVByQw67AgkKOwANuCOEOxRkq4TehyQcBJ5yTONUQErhhzo21aFdR6xEIVIi3PoP7PZSZMwkkEy5AmuCJSQdYAzGmVyBjejvkPWPkXjnWLlXgAAAAASUVORK5CYII="
|
|
60
|
+
})] })
|
|
61
|
+
]
|
|
62
|
+
});
|
|
63
|
+
//#endregion
|
|
64
|
+
export { n as IconGooglePay };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconMaestro.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 146.776 120.641",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ e("path", {
|
|
10
|
+
d: "M372.97079,350.9185v-5.9914a3.55354,3.55354,0,0,0-3.7545-3.7945,3.69772,3.69772,0,0,0-3.3551,1.6976,3.50632,3.50632,0,0,0-3.1555-1.6976,3.15709,3.15709,0,0,0-2.7959,1.418v-1.1783h-2.0771v9.5462h2.097v-5.2923a2.23259,2.23259,0,0,1,2.3366-2.5362c1.378,0,2.0771.8986,2.0771,2.5162v5.3123h2.097v-5.2923A2.25125,2.25125,0,0,1,368.777,343.09c1.41779,0,2.09689.8986,2.09689,2.5162v5.3123Zm11.70321-4.7732v-4.773h-2.07711v1.1583a3.62159,3.62159,0,0,0-3.0157-1.398,5.01888,5.01888,0,0,0,0,10.0257,3.62139,3.62139,0,0,0,3.0157-1.3981v1.1583H384.674Zm-7.72881,0a2.89047,2.89047,0,1,1,2.8957,3.0556A2.86354,2.86354,0,0,1,376.94519,346.1453Zm52.1715-5.0239a5.3805,5.3805,0,0,1,2.0486.3839,4.99816,4.99816,0,0,1,1.6296,1.0566,4.83745,4.83745,0,0,1,1.0766,1.5899,5.30278,5.30278,0,0,1,0,3.9871,4.83354,4.83354,0,0,1-1.0766,1.5902,4.99443,4.99443,0,0,1-1.6296,1.0564,5.65627,5.65627,0,0,1-4.0971,0,4.94,4.94,0,0,1-1.6249-1.0564,4.87929,4.87929,0,0,1-1.0716-1.5902,5.30784,5.30784,0,0,1,0-3.9871,4.88328,4.88328,0,0,1,1.0716-1.5899,4.9437,4.9437,0,0,1,1.6249-1.0566A5.38,5.38,0,0,1,429.11669,341.1214Zm0,1.9639a3.09937,3.09937,0,0,0-1.186.2243,2.80562,2.80562,0,0,0-.947.6278,2.927,2.927,0,0,0-.6281.9671,3.47314,3.47314,0,0,0,0,2.4821,2.924,2.924,0,0,0,.6281.9669,2.80464,2.80464,0,0,0,.947.628,3.24794,3.24794,0,0,0,2.3721,0,2.86167,2.86167,0,0,0,.952-.628,2.89613,2.89613,0,0,0,.63321-.9669,3.47328,3.47328,0,0,0,0-2.4821,2.899,2.899,0,0,0-.63321-.9671,2.86269,2.86269,0,0,0-.952-.6278A3.09988,3.09988,0,0,0,429.11669,343.0853Zm-33.1409,3.06c-.0199-2.9756-1.8573-5.0127-4.5334-5.0127a5.017,5.017,0,0,0,.1398,10.0256,5.8025,5.8025,0,0,0,3.9143-1.3381l-1.01849-1.5378a4.54855,4.54855,0,0,1-2.776.9985,2.65136,2.65136,0,0,1-2.856-2.3366h7.08989C395.95589,346.6846,395.97579,346.4251,395.97579,346.1453Zm-7.1097-.8387a2.45767,2.45767,0,0,1,2.5363-2.3166,2.37115,2.37115,0,0,1,2.41661,2.3166Zm15.8566-1.4977a6.15314,6.15314,0,0,0-2.9756-.8189c-1.1385,0-1.8174.4194-1.8174,1.1185,0,.6391.7189.8186,1.6177.9384l.9785.1398c2.07711.2996,3.33511,1.1783,3.33511,2.8559,0,1.8174-1.59761,3.1157-4.35361,3.1157a6.887,6.887,0,0,1-4.134-1.2385l.9785-1.6175a5.08619,5.08619,0,0,0,3.1755.9986c1.4178,0,2.1768-.4193,2.1768-1.1584,0-.5392-.5393-.8388-1.6775-.9985l-.97869-.1397c-2.13681-.2997-3.29511-1.2583-3.29511-2.8161,0-1.8973,1.5576-3.0556,3.9742-3.0556a7.138,7.138,0,0,1,3.8944.9987Zm9.9801-.5393h-3.395v4.3139c0,.9584.3395,1.5976,1.378,1.5976a3.83592,3.83592,0,0,0,1.8374-.5392l.599,1.7775a4.87991,4.87991,0,0,1-2.59619.7389c-2.45641,0-3.31511-1.3181-3.31511-3.5351v-4.3536h-1.9373v-1.8973h1.9373l-.0006-2.8957h2.0969l.0006,2.8957h3.395Zm7.188-2.137a4.43589,4.43589,0,0,1,1.478.2598l-.6391,1.9571a3.38388,3.38388,0,0,0-1.2981-.2397c-1.3581,0-2.0372.8788-2.0372,2.4564v5.3523h-2.0769v-9.5462h2.0571v1.1583a2.81526,2.81526,0,0,1,2.5162-1.398ZM436.27,349.5289a.9539.9539,0,0,1,.37619.0746.97775.97775,0,0,1,.3074.2037.95657.95657,0,0,1,.2071.3028.93363.93363,0,0,1,0,.737.96452.96452,0,0,1-.2071.3015.9964.9964,0,0,1-.3074.2048.93912.93912,0,0,1-.37619.0758.96809.96809,0,0,1-.89761-.5821.9359.9359,0,0,1,0-.737.96233.96233,0,0,1,.2062-.3028.95074.95074,0,0,1,.3085-.2037A.98158.98158,0,0,1,436.27,349.5289Zm0,1.6906a.70737.70737,0,0,0,.28659-.0582.75391.75391,0,0,0,.2327-.1583.74009.74009,0,0,0-.2327-1.205.7152.7152,0,0,0-.28659-.0572.74573.74573,0,0,0-.29221.0572.7297.7297,0,0,0-.2363.1569.74456.74456,0,0,0,0,1.0481.74452.74452,0,0,0,.52851.2165Zm.05589-1.1854a.40124.40124,0,0,1,.26211.0759.25268.25268,0,0,1,.09189.206.23989.23989,0,0,1-.0733.1803.349.349,0,0,1-.2085.0874l.2888.333h-.2258l-.2678-.3307h-.0862v.3307h-.1886v-.8826Zm-.2188.1655v.2352h.2166a.21318.21318,0,0,0,.1188-.0293.09949.09949,0,0,0,.0441-.0895.09807.09807,0,0,0-.0441-.0875.21492.21492,0,0,0-.1188-.0289Z",
|
|
11
|
+
transform: "translate(-322.61159 -245.6795)"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ e("rect", {
|
|
14
|
+
fill: "#7375cf",
|
|
15
|
+
x: "57.6379",
|
|
16
|
+
y: "22.8343",
|
|
17
|
+
width: "31.5",
|
|
18
|
+
height: "56.6064"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ e("path", {
|
|
21
|
+
fill: "#eb001b",
|
|
22
|
+
d: "M382.24969,296.817a35.93765,35.93765,0,0,1,13.7499-28.3032,36,36,0,1,0,0,56.6064A35.9378,35.9378,0,0,1,382.24969,296.817Z",
|
|
23
|
+
transform: "translate(-322.61159 -245.6795)"
|
|
24
|
+
}),
|
|
25
|
+
/* @__PURE__ */ e("path", {
|
|
26
|
+
fill: "#00a2e5",
|
|
27
|
+
d: "M450.81019,319.1248v-1.1589h.4673v-.2361h-1.1901v.2361h.4675v1.1589Zm2.3105,0v-1.3973h-.3648l-.4196.9611-.4197-.9611h-.365v1.3973h.2576v-1.054l.3935.9087h.2671l.3935-.911v1.0563Z",
|
|
28
|
+
transform: "translate(-322.61159 -245.6795)"
|
|
29
|
+
}),
|
|
30
|
+
/* @__PURE__ */ e("path", {
|
|
31
|
+
fill: "#00a2e5",
|
|
32
|
+
d: "M454.24479,296.817a35.99867,35.99867,0,0,1-58.2452,28.3032,36.00518,36.00518,0,0,0,0-56.6064,35.99867,35.99867,0,0,1,58.2452,28.3032Z",
|
|
33
|
+
transform: "translate(-322.61159 -245.6795)"
|
|
34
|
+
})
|
|
35
|
+
]
|
|
36
|
+
});
|
|
37
|
+
//#endregion
|
|
38
|
+
export { n as IconMaestro };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconMastercard.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 152.4 108",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ e("rect", {
|
|
10
|
+
x: "60.4",
|
|
11
|
+
y: "25.7",
|
|
12
|
+
fill: "#FF5F00",
|
|
13
|
+
width: "31.5",
|
|
14
|
+
height: "56.6"
|
|
15
|
+
}),
|
|
16
|
+
/* @__PURE__ */ e("path", {
|
|
17
|
+
fill: "#EB001B",
|
|
18
|
+
d: "M62.4,54c0-11,5.1-21.5,13.7-28.3c-15.6-12.3-38.3-9.6-50.6,6.1C13.3,47.4,16,70,31.7,82.3\n c13.1,10.3,31.4,10.3,44.5,0C67.5,75.5,62.4,65,62.4,54z"
|
|
19
|
+
}),
|
|
20
|
+
/* @__PURE__ */ e("path", {
|
|
21
|
+
fill: "#F79E1B",
|
|
22
|
+
d: "M134.4,54c0,19.9-16.1,36-36,36c-8.1,0-15.9-2.7-22.2-7.7c15.6-12.3,18.3-34.9,6-50.6c-1.8-2.2-3.8-4.3-6-6\n c15.6-12.3,38.3-9.6,50.5,6.1C131.7,38.1,134.4,45.9,134.4,54z"
|
|
23
|
+
})
|
|
24
|
+
]
|
|
25
|
+
});
|
|
26
|
+
//#endregion
|
|
27
|
+
export { n as IconMastercard };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
//#region src/components/Icons/IconPayPal.tsx
|
|
3
|
+
var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 124 33",
|
|
6
|
+
width: n,
|
|
7
|
+
...r,
|
|
8
|
+
children: [
|
|
9
|
+
/* @__PURE__ */ e("path", {
|
|
10
|
+
fill: "#253B80",
|
|
11
|
+
d: "M46.211,6.749h-6.839c-0.468,0-0.866,0.34-0.939,0.802l-2.766,17.537c-0.055,0.346,0.213,0.658,0.564,0.658\n h3.265c0.468,0,0.866-0.34,0.939-0.803l0.746-4.73c0.072-0.463,0.471-0.803,0.938-0.803h2.165c4.505,0,7.105-2.18,7.784-6.5\n c0.306-1.89,0.013-3.375-0.872-4.415C50.224,7.353,48.5,6.749,46.211,6.749z M47,13.154c-0.374,2.454-2.249,2.454-4.062,2.454\n h-1.032l0.724-4.583c0.043-0.277,0.283-0.481,0.563-0.481h0.473c1.235,0,2.4,0,3.002,0.704C47.027,11.668,47.137,12.292,47,13.154z"
|
|
12
|
+
}),
|
|
13
|
+
/* @__PURE__ */ e("path", {
|
|
14
|
+
fill: "#253B80",
|
|
15
|
+
d: "M66.654,13.075h-3.275c-0.279,0-0.52,0.204-0.563,0.481l-0.145,0.916l-0.229-0.332\n c-0.709-1.029-2.29-1.373-3.868-1.373c-3.619,0-6.71,2.741-7.312,6.586c-0.313,1.918,0.132,3.752,1.22,5.031\n c0.998,1.176,2.426,1.666,4.125,1.666c2.916,0,4.533-1.875,4.533-1.875l-0.146,0.91c-0.055,0.348,0.213,0.66,0.562,0.66h2.95\n c0.469,0,0.865-0.34,0.939-0.803l1.77-11.209C67.271,13.388,67.004,13.075,66.654,13.075z M62.089,19.449\n c-0.316,1.871-1.801,3.127-3.695,3.127c-0.951,0-1.711-0.305-2.199-0.883c-0.484-0.574-0.668-1.391-0.514-2.301\n c0.295-1.855,1.805-3.152,3.67-3.152c0.93,0,1.686,0.309,2.184,0.892C62.034,17.721,62.232,18.543,62.089,19.449z"
|
|
16
|
+
}),
|
|
17
|
+
/* @__PURE__ */ e("path", {
|
|
18
|
+
fill: "#253B80",
|
|
19
|
+
d: "M84.096,13.075h-3.291c-0.314,0-0.609,0.156-0.787,0.417l-4.539,6.686l-1.924-6.425\n c-0.121-0.402-0.492-0.678-0.912-0.678h-3.234c-0.393,0-0.666,0.384-0.541,0.754l3.625,10.638l-3.408,4.811\n c-0.268,0.379,0.002,0.9,0.465,0.9h3.287c0.312,0,0.604-0.152,0.781-0.408L84.564,13.97C84.826,13.592,84.557,13.075,84.096,13.075z"
|
|
20
|
+
}),
|
|
21
|
+
/* @__PURE__ */ e("path", {
|
|
22
|
+
fill: "#179BD7",
|
|
23
|
+
d: "M94.992,6.749h-6.84c-0.467,0-0.865,0.34-0.938,0.802l-2.766,17.537c-0.055,0.346,0.213,0.658,0.562,0.658\n h3.51c0.326,0,0.605-0.238,0.656-0.562l0.785-4.971c0.072-0.463,0.471-0.803,0.938-0.803h2.164c4.506,0,7.105-2.18,7.785-6.5\n c0.307-1.89,0.012-3.375-0.873-4.415C99.004,7.353,97.281,6.749,94.992,6.749z M95.781,13.154c-0.373,2.454-2.248,2.454-4.062,2.454\n h-1.031l0.725-4.583c0.043-0.277,0.281-0.481,0.562-0.481h0.473c1.234,0,2.4,0,3.002,0.704\n C95.809,11.668,95.918,12.292,95.781,13.154z"
|
|
24
|
+
}),
|
|
25
|
+
/* @__PURE__ */ e("path", {
|
|
26
|
+
fill: "#179BD7",
|
|
27
|
+
d: "M115.434,13.075h-3.273c-0.281,0-0.52,0.204-0.562,0.481l-0.145,0.916l-0.23-0.332\n c-0.709-1.029-2.289-1.373-3.867-1.373c-3.619,0-6.709,2.741-7.311,6.586c-0.312,1.918,0.131,3.752,1.219,5.031\n c1,1.176,2.426,1.666,4.125,1.666c2.916,0,4.533-1.875,4.533-1.875l-0.146,0.91c-0.055,0.348,0.213,0.66,0.564,0.66h2.949\n c0.467,0,0.865-0.34,0.938-0.803l1.771-11.209C116.053,13.388,115.785,13.075,115.434,13.075z M110.869,19.449\n c-0.314,1.871-1.801,3.127-3.695,3.127c-0.949,0-1.711-0.305-2.199-0.883c-0.484-0.574-0.666-1.391-0.514-2.301\n c0.297-1.855,1.805-3.152,3.67-3.152c0.93,0,1.686,0.309,2.184,0.892C110.816,17.721,111.014,18.543,110.869,19.449z"
|
|
28
|
+
}),
|
|
29
|
+
/* @__PURE__ */ e("path", {
|
|
30
|
+
fill: "#179BD7",
|
|
31
|
+
d: "M119.295,7.23l-2.807,17.858c-0.055,0.346,0.213,0.658,0.562,0.658h2.822c0.469,0,0.867-0.34,0.939-0.803\n l2.768-17.536c0.055-0.346-0.213-0.659-0.562-0.659h-3.16C119.578,6.749,119.338,6.953,119.295,7.23z"
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ e("path", {
|
|
34
|
+
fill: "#253B80",
|
|
35
|
+
d: "M7.266,29.154l0.523-3.322l-1.165-0.027H1.061L4.927,1.292C4.939,1.218,4.978,1.149,5.035,1.1\n c0.057-0.049,0.13-0.076,0.206-0.076h9.38c3.114,0,5.263,0.648,6.385,1.927c0.526,0.6,0.861,1.227,1.023,1.917\n c0.17,0.724,0.173,1.589,0.007,2.644l-0.012,0.077v0.676l0.526,0.298c0.443,0.235,0.795,0.504,1.065,0.812\n c0.45,0.513,0.741,1.165,0.864,1.938c0.127,0.795,0.085,1.741-0.123,2.812c-0.24,1.232-0.628,2.305-1.152,3.183\n c-0.482,0.809-1.096,1.48-1.825,2c-0.696,0.494-1.523,0.869-2.458,1.109c-0.906,0.236-1.939,0.355-3.072,0.355h-0.73\n c-0.522,0-1.029,0.188-1.427,0.525c-0.399,0.344-0.663,0.814-0.744,1.328l-0.055,0.299l-0.924,5.855l-0.042,0.215\n c-0.011,0.068-0.03,0.102-0.058,0.125c-0.025,0.021-0.061,0.035-0.096,0.035H7.266z"
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ e("path", {
|
|
38
|
+
fill: "#179BD7",
|
|
39
|
+
d: "M23.048,7.667L23.048,7.667L23.048,7.667c-0.028,0.179-0.06,0.362-0.096,0.55\n c-1.237,6.351-5.469,8.545-10.874,8.545H9.326c-0.661,0-1.218,0.48-1.321,1.132l0,0l0,0L6.596,26.83l-0.399,2.533\n c-0.067,0.428,0.263,0.814,0.695,0.814h4.881c0.578,0,1.069-0.42,1.16-0.99l0.048-0.248l0.919-5.832l0.059-0.32\n c0.09-0.572,0.582-0.992,1.16-0.992h0.73c4.729,0,8.431-1.92,9.513-7.476c0.452-2.321,0.218-4.259-0.978-5.622\n C24.022,8.286,23.573,7.945,23.048,7.667z"
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ e("path", {
|
|
42
|
+
fill: "#222D65",
|
|
43
|
+
d: "M21.754,7.151c-0.189-0.055-0.384-0.105-0.584-0.15c-0.201-0.044-0.407-0.083-0.619-0.117\n c-0.742-0.12-1.555-0.177-2.426-0.177h-7.352c-0.181,0-0.353,0.041-0.507,0.115C9.927,6.985,9.675,7.306,9.614,7.699L8.05,17.605\n l-0.045,0.289c0.103-0.652,0.66-1.132,1.321-1.132h2.752c5.405,0,9.637-2.195,10.874-8.545c0.037-0.188,0.068-0.371,0.096-0.55\n c-0.313-0.166-0.652-0.308-1.017-0.429C21.941,7.208,21.848,7.179,21.754,7.151z"
|
|
44
|
+
}),
|
|
45
|
+
/* @__PURE__ */ e("path", {
|
|
46
|
+
fill: "#253B80",
|
|
47
|
+
d: "M9.614,7.699c0.061-0.393,0.313-0.714,0.652-0.876c0.155-0.074,0.326-0.115,0.507-0.115h7.352\n c0.871,0,1.684,0.057,2.426,0.177c0.212,0.034,0.418,0.073,0.619,0.117c0.2,0.045,0.395,0.095,0.584,0.15\n c0.094,0.028,0.187,0.057,0.278,0.086c0.365,0.121,0.704,0.264,1.017,0.429c0.368-2.347-0.003-3.945-1.272-5.392\n C20.378,0.682,17.853,0,14.622,0h-9.38c-0.66,0-1.223,0.48-1.325,1.133L0.01,25.898c-0.077,0.49,0.301,0.932,0.795,0.932h5.791\n l1.454-9.225L9.614,7.699z"
|
|
48
|
+
})
|
|
49
|
+
]
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { n as IconPayPal };
|