@stamcat/craftsman 0.0.27-alpha.2 → 0.0.27-alpha.21
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 +19 -344
- package/Components.esm.js +72 -11
- package/README.md +5 -0
- package/Styles.esm.js +7 -7
- package/Utilities.esm.js +2 -2
- package/_virtual/_rolldown/runtime.esm.js +18 -6
- package/package.json +75 -6
- package/src/components/Button/AGENTS.md +65 -0
- package/src/components/{Button.d.ts → Button/Button.d.ts} +1 -1
- package/src/components/Button/Button.esm.js +20 -0
- 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 -0
- package/src/components/Input/Input.d.ts +6 -0
- package/src/components/Input/Input.scss +176 -0
- package/src/components/Input/Input2.esm.js +42 -0
- package/src/components/Input/InputWrapper.d.ts +11 -0
- package/src/components/Input/InputWrapper.esm.js +22 -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/{InputPassword.d.ts → InputPassword/InputPassword.d.ts} +2 -2
- 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/InputPhone/InputPhone.d.ts +7 -0
- package/src/components/InputPhone/InputPhone.scss +266 -0
- package/src/components/InputPhone/InputPhone2.esm.js +27 -0
- package/src/components/Loader/AGENTS.md +31 -0
- package/src/components/{Loader.d.ts → Loader/Loader.d.ts} +1 -2
- package/src/components/Loader/Loader.esm.js +19 -0
- package/src/components/Loader/loaders.module.css +1 -0
- package/src/components/Loader/loaders.module.esm.js +21 -0
- package/src/{styles/global/components → components/Loader}/loaders.module.scss +2 -1
- package/src/components/Modal/AGENTS.md +47 -0
- package/src/components/Modal/Modal.css +1 -0
- package/src/components/{Modal.d.ts → Modal/Modal.d.ts} +0 -1
- 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/Select/Select.d.ts +14 -0
- package/src/components/Select/Select.esm.js +26 -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 -0
- package/src/components/Text/Text.d.ts +10 -0
- package/src/components/Text/Text.scss +80 -0
- package/src/components/Text/Text2.esm.js +23 -0
- package/src/components/Textarea/AGENTS.md +32 -0
- package/src/components/Textarea/Textarea.d.ts +3 -0
- 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 +23 -7
- package/src/stories/assets/Stam.jpg +0 -0
- package/src/stories/assets/kaluah.jpg +0 -0
- package/src/stories/assets/stam2.jpg +0 -0
- package/src/stories/assets/tito.jpg +0 -0
- package/src/stories/documentation/AboutUs.mdx +21 -0
- package/src/stories/documentation/GettingStarted.mdx +117 -0
- package/src/stories/documentation/Introduction.mdx +29 -0
- package/src/stories/documentation/Themes.mdx +264 -0
- package/src/stories/documentation/ToDo.mdx +15 -0
- package/src/stories/molecules/Carousel.scss +21 -0
- package/src/stories/utilities/DeviceDetection.mdx +59 -0
- package/src/styles/_config.scss +30 -0
- package/src/styles/components/ThemeProvider.esm.js +1 -1
- package/src/styles/global/components/_button.scss +56 -52
- package/src/styles/global/components/_checkbox.scss +64 -59
- package/src/styles/global/components/_code.scss +19 -15
- package/src/styles/global/components/_input.scss +29 -37
- package/src/styles/global/components/_radioButton.scss +30 -26
- package/src/styles/global/components/_select.scss +56 -0
- package/src/styles/global/components/_typography.scss +97 -6
- package/src/styles/global/globalStyles.module.scss +1 -129
- package/src/styles/global/globalStyles.scss +87 -1
- package/src/styles/index.d.ts +1 -1
- package/src/styles/theme/components.esm.js +11 -7
- package/src/styles/theme/theme.esm.js +31 -41
- package/src/styles/theme/types.d.ts +4 -1
- package/src/styles/utilities/_functions.scss +117 -0
- package/src/styles/utilities/_mixins.scss +0 -0
- package/src/styles/utilities/_placeholders.scss +6 -0
- package/src/styles/utilities/color.d.ts +1 -1
- package/src/styles/utilities/constants.d.ts +1 -1
- package/src/styles/utilities/layout.d.ts +1 -1
- package/src/styles/utilities/layout.esm.js +3 -3
- package/src/{styles/utilities → utilities}/types.d.ts +61 -3
- package/src/utilities/types.esm.js +85 -0
- package/src/utilities/validations.d.ts +5 -0
- package/src/utilities/validations.esm.js +19 -1
- package/src/components/Button.esm.js +0 -28
- package/src/components/Button.module.css +0 -1
- package/src/components/Button.module.esm.js +0 -9
- package/src/components/Button.module.scss +0 -5
- package/src/components/Checkbox.d.ts +0 -7
- package/src/components/Checkbox.esm.js +0 -11
- package/src/components/Input.d.ts +0 -11
- package/src/components/Input.esm.js +0 -41
- package/src/components/Input.module.css +0 -1
- package/src/components/Input.module.esm.js +0 -11
- package/src/components/Input.module.scss +0 -141
- package/src/components/InputPassword.esm.js +0 -33
- package/src/components/Loader.esm.js +0 -21
- package/src/components/Modal.esm.js +0 -62
- package/src/components/Modal.module.css +0 -1
- package/src/components/Modal.module.esm.js +0 -13
- package/src/components/Modal.module.scss +0 -133
- package/src/components/RadioButton.d.ts +0 -7
- package/src/components/RadioButton.esm.js +0 -11
- package/src/styles/global/components/_mixins.scss +0 -2
- package/src/styles/global/components/button.d.ts +0 -7
- package/src/styles/global/components/loaders.module.css +0 -1
- package/src/styles/global/components/loaders.module.esm.js +0 -21
- package/src/styles/utilities/types.esm.js +0 -54
- package/src/{styles/global/components/loaders.d.ts → components/Loader/types.d.ts} +1 -1
- /package/src/{styles/global/components/loaders.esm.js → components/Loader/types.esm.js} +0 -0
- /package/src/components/{Progress.d.ts → Progress/Progress.d.ts} +0 -0
|
@@ -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 };
|