@stamcat/craftsman 0.0.27-alpha.17 → 0.0.27-alpha.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/AGENTS.md +1 -0
  2. package/Components.esm.js +33 -2
  3. package/Utilities.esm.js +2 -2
  4. package/package.json +2 -1
  5. package/src/components/Button/AGENTS.md +64 -0
  6. package/src/components/Carousel/AGENTS.md +41 -0
  7. package/src/components/Checkbox/AGENTS.md +32 -0
  8. package/src/components/DatePicker/AGENTS.md +36 -0
  9. package/src/components/DateTimePicker/AGENTS.md +41 -0
  10. package/src/components/DateTimePicker/DateTimePicker2.esm.js +52 -48
  11. package/src/components/Icons/IconAmazonPay.d.ts +2 -0
  12. package/src/components/Icons/IconAmazonPay.esm.js +76 -0
  13. package/src/components/Icons/IconAmex.d.ts +2 -0
  14. package/src/components/Icons/IconAmex.esm.js +87 -0
  15. package/src/components/Icons/IconApplePay.d.ts +2 -0
  16. package/src/components/Icons/IconApplePay.esm.js +26 -0
  17. package/src/components/Icons/IconDiscover.d.ts +2 -0
  18. package/src/components/Icons/IconDiscover.esm.js +129 -0
  19. package/src/components/Icons/IconGooglePay.d.ts +2 -0
  20. package/src/components/Icons/IconGooglePay.esm.js +64 -0
  21. package/src/components/Icons/IconMaestro.d.ts +2 -0
  22. package/src/components/Icons/IconMaestro.esm.js +38 -0
  23. package/src/components/Icons/IconMastercard.d.ts +2 -0
  24. package/src/components/Icons/IconMastercard.esm.js +27 -0
  25. package/src/components/Icons/IconPayPal.d.ts +2 -0
  26. package/src/components/Icons/IconPayPal.esm.js +52 -0
  27. package/src/components/Icons/IconSepa.d.ts +2 -0
  28. package/src/components/Icons/IconSepa.esm.js +272 -0
  29. package/src/components/Icons/IconShopPay.d.ts +2 -0
  30. package/src/components/Icons/IconShopPay.esm.js +35 -0
  31. package/src/components/Icons/IconSquare.d.ts +2 -0
  32. package/src/components/Icons/IconSquare.esm.js +11 -0
  33. package/src/components/Icons/IconStripe.d.ts +2 -0
  34. package/src/components/Icons/IconStripe.esm.js +57 -0
  35. package/src/components/Icons/IconUnionPay.d.ts +2 -0
  36. package/src/components/Icons/IconUnionPay.esm.js +28 -0
  37. package/src/components/Icons/IconVenmo.d.ts +2 -0
  38. package/src/components/Icons/IconVenmo.esm.js +21 -0
  39. package/src/components/Icons/IconVisa.d.ts +2 -0
  40. package/src/components/Icons/IconVisa.esm.js +14 -0
  41. package/src/components/Icons/index.d.ts +15 -0
  42. package/src/components/Icons/index.esm.js +16 -0
  43. package/src/components/Icons/types.d.ts +4 -0
  44. package/src/components/Input/AGENTS.md +29 -0
  45. package/src/components/InputPassword/AGENTS.md +29 -0
  46. package/src/components/InputPhone/AGENTS.md +35 -0
  47. package/src/components/Loader/AGENTS.md +31 -0
  48. package/src/components/Modal/AGENTS.md +47 -0
  49. package/src/components/Pagination/AGENTS.md +38 -0
  50. package/src/components/RadioButton/AGENTS.md +42 -0
  51. package/src/components/Select/AGENTS.md +36 -0
  52. package/src/components/Text/AGENTS.md +32 -0
  53. package/src/components/Textarea/AGENTS.md +32 -0
  54. package/src/components/TimePicker/AGENTS.md +41 -0
  55. package/src/components/TimePicker/TimePicker2.esm.js +3 -0
  56. package/src/components/Tooltip/AGENTS.md +41 -0
  57. package/src/components/index.d.ts +1 -0
  58. package/src/stories/documentation/AboutUs.mdx +21 -0
  59. package/src/stories/documentation/GettingStarted.mdx +117 -0
  60. package/src/stories/documentation/Introduction.mdx +29 -0
  61. package/src/stories/documentation/Themes.mdx +264 -0
  62. package/src/stories/documentation/ToDo.mdx +13 -0
  63. package/src/stories/utilities/DeviceDetection.mdx +59 -0
  64. package/src/utilities/validations.d.ts +0 -1
  65. package/src/utilities/validations.esm.js +5 -8
package/AGENTS.md CHANGED
@@ -6,6 +6,7 @@ Full guidance has been split out for progressive loading:
6
6
 
7
7
  - **Global guidelines** (exports, hard rules, code block rendering, style utilities, theme authoring, `isEmpty`, code gen patterns, fallback strategy): see the [craftsman-component-usage skill](.github/skills/craftsman-component-usage/SKILL.md).
8
8
  - **Component-specific guidelines** (props, behavior notes, examples): each component has its own `AGENTS.md` co-located with its source, for example [src/components/Button/AGENTS.md](src/components/Button/AGENTS.md).
9
+ - **Device/browser detection** (prefer `react-device-detect` over custom user-agent/viewport checks): see the [craftsman-device-detection skill](.github/skills/craftsman-device-detection/SKILL.md).
9
10
 
10
11
  ## Quick Reference
11
12
 
package/Components.esm.js CHANGED
@@ -16,13 +16,44 @@ import { Carousel as m } from "./src/components/Carousel/Carousel2.esm.js";
16
16
  import { TimePicker as h } from "./src/components/TimePicker/TimePicker2.esm.js";
17
17
  import { DateTimePicker as g } from "./src/components/DateTimePicker/DateTimePicker2.esm.js";
18
18
  import { Tooltip as _ } from "./src/components/Tooltip/Tooltip2.esm.js";
19
+ import { IconAmazonPay as v } from "./src/components/Icons/IconAmazonPay.esm.js";
20
+ import { IconAmex as y } from "./src/components/Icons/IconAmex.esm.js";
21
+ import { IconApplePay as b } from "./src/components/Icons/IconApplePay.esm.js";
22
+ import { IconDiscover as x } from "./src/components/Icons/IconDiscover.esm.js";
23
+ import { IconGooglePay as S } from "./src/components/Icons/IconGooglePay.esm.js";
24
+ import { IconMaestro as C } from "./src/components/Icons/IconMaestro.esm.js";
25
+ import { IconMastercard as w } from "./src/components/Icons/IconMastercard.esm.js";
26
+ import { IconPayPal as T } from "./src/components/Icons/IconPayPal.esm.js";
27
+ import { IconSepa as E } from "./src/components/Icons/IconSepa.esm.js";
28
+ import { IconShopPay as D } from "./src/components/Icons/IconShopPay.esm.js";
29
+ import { IconSquare as O } from "./src/components/Icons/IconSquare.esm.js";
30
+ import { IconStripe as k } from "./src/components/Icons/IconStripe.esm.js";
31
+ import { IconUnionPay as A } from "./src/components/Icons/IconUnionPay.esm.js";
32
+ import { IconVenmo as j } from "./src/components/Icons/IconVenmo.esm.js";
33
+ import { IconVisa as M } from "./src/components/Icons/IconVisa.esm.js";
34
+ import "./src/components/Icons/index.esm.js";
19
35
  //#region src/components/index.ts
20
- var v = /* @__PURE__ */ e({
36
+ var N = /* @__PURE__ */ e({
21
37
  Button: () => t,
22
38
  Carousel: () => m,
23
39
  Checkbox: () => o,
24
40
  DatePicker: () => d,
25
41
  DateTimePicker: () => g,
42
+ IconAmazonPay: () => v,
43
+ IconAmex: () => y,
44
+ IconApplePay: () => b,
45
+ IconDiscover: () => x,
46
+ IconGooglePay: () => S,
47
+ IconMaestro: () => C,
48
+ IconMastercard: () => w,
49
+ IconPayPal: () => T,
50
+ IconSepa: () => E,
51
+ IconShopPay: () => D,
52
+ IconSquare: () => O,
53
+ IconStripe: () => k,
54
+ IconUnionPay: () => A,
55
+ IconVenmo: () => j,
56
+ IconVisa: () => M,
26
57
  Input: () => n,
27
58
  InputPassword: () => r,
28
59
  InputPhone: () => f,
@@ -37,4 +68,4 @@ var v = /* @__PURE__ */ e({
37
68
  Tooltip: () => _
38
69
  });
39
70
  //#endregion
40
- export { t as Button, m as Carousel, o as Checkbox, d as DatePicker, g as DateTimePicker, n as Input, r as InputPassword, f as InputPhone, i as Loader, l as Modal, p as Pagination, a as RadioButton, u as Select, c as Text, s as Textarea, h as TimePicker, _ as Tooltip, v as components_exports };
71
+ export { t as Button, m as Carousel, o as Checkbox, d as DatePicker, g as DateTimePicker, v as IconAmazonPay, y as IconAmex, b as IconApplePay, x as IconDiscover, S as IconGooglePay, C as IconMaestro, w as IconMastercard, T as IconPayPal, E as IconSepa, D as IconShopPay, O as IconSquare, k as IconStripe, A as IconUnionPay, j as IconVenmo, M as IconVisa, n as Input, r as InputPassword, f as InputPhone, i as Loader, l as Modal, p as Pagination, a as RadioButton, u as Select, c as Text, s as Textarea, h as TimePicker, _ as Tooltip, N as components_exports };
package/Utilities.esm.js CHANGED
@@ -1,2 +1,2 @@
1
- import { formatTime as e, getAmPmLabels as t, getUnitLabel as n, is24HourFormat as r, isEmpty as i, isTouchDevice as a, validateEmail as o } from "./src/utilities/validations.esm.js";
2
- export { e as formatTime, t as getAmPmLabels, n as getUnitLabel, r as is24HourFormat, i as isEmpty, a as isTouchDevice, o as validateEmail };
1
+ import { formatTime as e, getAmPmLabels as t, getUnitLabel as n, is24HourFormat as r, isEmpty as i, validateEmail as a } from "./src/utilities/validations.esm.js";
2
+ export { e as formatTime, t as getAmPmLabels, n as getUnitLabel, r as is24HourFormat, i as isEmpty, a as validateEmail };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamcat/craftsman",
3
- "version": "0.0.27-alpha.17",
3
+ "version": "0.0.27-alpha.18",
4
4
  "type": "module",
5
5
  "description": "A powerful, lightweight framework for design systems",
6
6
  "repository": {
@@ -25,6 +25,7 @@
25
25
  "dependencies": {
26
26
  "@floating-ui/react-dom": "2.1.9",
27
27
  "clsx": "2.1.1",
28
+ "country-flag-icons": "1.6.20",
28
29
  "dompurify": "3.4.13",
29
30
  "embla-carousel-react": "8.6.0",
30
31
  "pure-react-carousel": "1.35.0",
@@ -0,0 +1,64 @@
1
+ # Button — Agent Usage Notes
2
+
3
+ Import:
4
+
5
+ ```tsx
6
+ import { Button } from "@stamcat/craftsman/Button";
7
+ ```
8
+
9
+ Props:
10
+
11
+ - Inherits all native `<button>` props.
12
+ - `variant?: "primary" | "default" | "text"` (default: `"default"`)
13
+ - `size?: number` (default visual scale is `1`)
14
+ - `styles?: React.CSSProperties` (inline style override)
15
+
16
+ Behavior notes:
17
+
18
+ - `type` defaults to `"button"`.
19
+ - For `variant !== "default"`, variant is appended to `className` (for example `"primary"`).
20
+ - `className` is preserved and merged after component classes.
21
+ - Theme component overrides are selector-based CSS emitted by `ThemeProvider`; `theme.components.*` accepts JS style objects or raw CSS/Sass strings for the target selector.
22
+ - If `children` is empty (per `isEmpty`), the component renders nothing.
23
+ - `size` is clamped to `[0.1, 10]` before styling is applied.
24
+ - When `size` is provided, Button scales:
25
+ - `border-radius: calc(var(--btn-border-radius) * size)`
26
+ - `padding: calc(var(--btn-pad-y) * size) calc(var(--btn-pad-x) * size)`
27
+ - `font-size: max(10px, calc(var(--w-text) * size))`
28
+ - There is no dedicated icon/loading prop. Icons, loaders, and mixed content are passed as `children`.
29
+ - Supports both real disable (`disabled={true}`) and style-only disable (`className="disabled"`).
30
+ - Native button modes are supported (`type="button" | "submit" | "reset"`).
31
+ - Accessibility props such as `aria-label` pass through unchanged.
32
+
33
+ Example:
34
+
35
+ ```tsx
36
+ <Button variant="primary" onClick={onSave}>Save</Button>
37
+ ```
38
+
39
+ Story-aligned usage examples:
40
+
41
+ ```tsx
42
+ // Scaled compact button (size is clamped to [0.1, 10])
43
+ <Button variant="primary" size={0.5}>Mini Action</Button>
44
+
45
+ // Icon content
46
+ <Button variant="primary">
47
+ <TruckIcon size={20} /> <span>Ship</span>
48
+ </Button>
49
+
50
+ // Loading content
51
+ <Button aria-label="Saving">
52
+ <Loader type="boxy" width={32} color="#de13ca" />
53
+ </Button>
54
+
55
+ // Style-only disabled appearance while still allowing click handlers
56
+ <Button className="disabled" onClick={onClick}>Disabled Look</Button>
57
+
58
+ // Native submit behavior
59
+ <Button type="submit" aria-label="Save form">Save</Button>
60
+ ```
61
+
62
+ Implementation caution:
63
+
64
+ - Size scaling depends on CSS variables provided by the package global styles (`--btn-border-radius`, `--btn-pad-y`, `--btn-pad-x`, `--w-text`).
@@ -0,0 +1,41 @@
1
+ # Carousel — Agent Usage Notes
2
+
3
+ Import:
4
+
5
+ ```tsx
6
+ import { Carousel } from "@stamcat/craftsman/Carousel";
7
+ ```
8
+
9
+ Props:
10
+
11
+ - Extends `EmblaOptionsType` from `embla-carousel`, except `slides`.
12
+ - `slides?: React.ReactNode[]`
13
+ - `className?: string`
14
+ - `style?: React.CSSProperties`
15
+ - `buttons?: boolean` (default: `true`)
16
+ - `pagination?: "dots" | "numbers"` (default: `"dots"`)
17
+
18
+ Behavior notes:
19
+
20
+ - `slides` is an array prop; do not pass slide content as `children`.
21
+ - Built on `embla-carousel-react`, so standard Embla options such as `loop`, `align`, `dragFree`, and `slidesToScroll` pass through.
22
+ - Previous/next controls are built in and can be hidden with `buttons={false}`.
23
+ - Pagination can render dots or the shared `Pagination` component in number mode.
24
+ - Number pagination uses zero-based indexes internally, consistent with `Pagination`.
25
+ - The component manages its own selected index from the Embla instance; there is no separate controlled index prop.
26
+
27
+ Example:
28
+
29
+ ```tsx
30
+ const slides = [
31
+ <figure key="one"><img src="/slide-1.jpg" alt="First slide" /></figure>,
32
+ <figure key="two"><img src="/slide-2.jpg" alt="Second slide" /></figure>,
33
+ ];
34
+
35
+ <Carousel
36
+ slides={slides}
37
+ loop={false}
38
+ pagination="dots"
39
+ align="center"
40
+ />
41
+ ```
@@ -0,0 +1,32 @@
1
+ # Checkbox — Agent Usage Notes
2
+
3
+ Import:
4
+
5
+ ```tsx
6
+ import { Checkbox } from "@stamcat/craftsman/Checkbox";
7
+ ```
8
+
9
+ Props:
10
+
11
+ - Extends `Input` props.
12
+ - `type?: "checkbox"` (default: `"checkbox"`)
13
+ - `labelPosition?: "left" | "right" | "top" | "bottom"` (default: `"right"`)
14
+
15
+ Behavior notes:
16
+
17
+ - `Checkbox` is a thin wrapper around `Input` with checkbox-specific guardrails.
18
+ - The wrapper enforces checkbox type by default and narrows label position options to common checkbox layouts.
19
+ - Controlled and uncontrolled patterns are both supported (`checked` + `onChange`, or `defaultChecked`).
20
+
21
+ Example:
22
+
23
+ ```tsx
24
+ <Checkbox
25
+ id="accept-terms"
26
+ name="terms"
27
+ value="accepted"
28
+ label="Accept terms"
29
+ checked={accepted}
30
+ onChange={(event) => setAccepted(event.currentTarget.checked)}
31
+ />
32
+ ```
@@ -0,0 +1,36 @@
1
+ # DatePicker — Agent Usage Notes
2
+
3
+ Import:
4
+
5
+ ```tsx
6
+ import { DatePicker } from "@stamcat/craftsman/DatePicker";
7
+ ```
8
+
9
+ Props:
10
+
11
+ - Extends `DatePickerProps` from `react-date-picker`.
12
+ - `label?: string | ReactNode`
13
+ - `labelPosition?: "top" | "left" | "bottom" | "right" | "inside" | "hidden"` (default: `"top"`)
14
+ - `error?: string | boolean | ReactNode`
15
+ - `required?: boolean`
16
+ - `value?: Date | null`
17
+ - `onChange?: (value: DatePickerProps["value"]) => void`
18
+
19
+ Behavior notes:
20
+
21
+ - Controlled component — parent owns `value` and `onChange`.
22
+ - Calendar flyout renders below the input; ensure the container has at least 400px of vertical space.
23
+ - Use `useState` to manage the selected date value.
24
+
25
+ Example:
26
+
27
+ ```tsx
28
+ const [date, setDate] = useState<Date | null>(null);
29
+
30
+ <DatePicker
31
+ label="Appointment Date"
32
+ value={date}
33
+ onChange={setDate}
34
+ required
35
+ />
36
+ ```
@@ -0,0 +1,41 @@
1
+ # DateTimePicker — Agent Usage Notes
2
+
3
+ > Not yet part of the documented public export surface (see `craftsman-component-usage` skill's Known Limitations). Source path only — do not assume `@stamcat/craftsman/DateTimePicker` is published until confirmed in `exports.ts`.
4
+
5
+ Import (source-relative, once exported):
6
+
7
+ ```tsx
8
+ import { DateTimePicker } from "@stamcat/craftsman/DateTimePicker";
9
+ ```
10
+
11
+ Props:
12
+
13
+ - Extends `react-datetime-picker`'s `DateTimePickerProps` plus `LabeledInput` (`label`, `labelPosition`, `error`, `required`).
14
+ - `id?: string`
15
+ - `style?: React.CSSProperties`
16
+ - `format?: 24 | 12` — hour format used by the custom time wheel display.
17
+ - `labels?: { hour?: string; minute?: string }` — labels passed through to the time wheel.
18
+ - `value` / `onChange` — standard `Date` value and change callback.
19
+
20
+ Behavior notes:
21
+
22
+ - Directly wraps `react-datetime-picker`, but replaces its native clock UI with the custom `TimePickerDisplay` wheel (shared with `TimePicker`); `isClockOpen` is always forced `false` on the underlying component.
23
+ - Clicking/focusing a time sub-field opens the custom wheel only if `value` is already a valid `Date`. If no date is selected yet, focus is redirected to the date field so the calendar opens instead of the time wheel.
24
+ - Clicking outside the wrapper (`pointerdown`) closes the time wheel.
25
+ - Opening the calendar (`onCalendarOpen`) closes the time wheel so both widgets are never open simultaneously.
26
+ - `onChangeTime` builds the resulting `Date` from the existing `value` if present, otherwise from `new Date()` (today), then sets hours/minutes on it before calling `onChange`.
27
+
28
+ Example:
29
+
30
+ ```tsx
31
+ <DateTimePicker
32
+ label="Appointment"
33
+ value={value}
34
+ onChange={setValue}
35
+ format={12}
36
+ />
37
+ ```
38
+
39
+ Implementation caution:
40
+
41
+ - Relies on `react-datetime-picker`'s rendered sub-input `name` attributes (`day`/`month`/`year` vs `hour12`/`hour24`/`minute`/`second`/`amPm`) to distinguish date vs. time fields for the focus-redirect behavior. Upgrading `react-datetime-picker` may require re-verifying these names.
@@ -4,75 +4,79 @@ import { InputWrapper as t } from "../Input/InputWrapper.esm.js";
4
4
  import './DateTimePicker.css';import '../DatePicker/ReactCalendar.css';/* empty css */
5
5
  import { resolveLocale as n } from "../TimePicker/utilities.esm.js";
6
6
  import { TimePickerDisplay as r } from "../TimePicker/TimePickerDisplay.esm.js";
7
+ import { require_lib as i } from "../../../node_modules/react-device-detect/dist/lib.esm.js";
7
8
  /* empty css */
8
- import i from "clsx";
9
- import { jsx as a, jsxs as o } from "react/jsx-runtime";
10
- import { useEffect as s, useId as c, useRef as l, useState as u } from "react";
11
- import { FaRegCalendar as d, FaX as f } from "react-icons/fa6";
12
- import { DateTimePicker as p } from "react-datetime-picker";
9
+ import a from "clsx";
10
+ import { jsx as o, jsxs as s } from "react/jsx-runtime";
11
+ import { useEffect as c, useId as l, useRef as u, useState as d } from "react";
12
+ import { FaRegCalendar as f, FaX as p } from "react-icons/fa6";
13
+ import { DateTimePicker as m } from "react-datetime-picker";
13
14
  //#region src/components/DateTimePicker/DateTimePicker.tsx
14
- var m = ({ label: m, id: h, labelPosition: g = "top", required: _ = !1, error: v, style: y, className: b, locale: x, labels: S, format: C, value: w, onChange: T, ...E }) => {
15
- let D = c(), O = h || D, k = l(null), [A, j] = u(!1), M = n(x);
16
- s(() => {
17
- if (!A) return;
15
+ var h = i(), g = ({ label: i, id: g, labelPosition: _ = "top", required: v = !1, error: y, style: b, className: x, locale: S, labels: C, format: w, value: T, onChange: E, ...D }) => {
16
+ let O = l(), k = g || O, A = u(null), [j, M] = d(!1), N = n(S);
17
+ c(() => {
18
+ if (!j) return;
18
19
  let e = (e) => {
19
20
  let t = e.target;
20
- k.current?.contains(t) || j(!1);
21
+ A.current?.contains(t) || M(!1);
21
22
  };
22
23
  return document.addEventListener("pointerdown", e, !0), () => {
23
24
  document.removeEventListener("pointerdown", e, !0);
24
25
  };
25
- }, [A]);
26
- let N = () => {
27
- if (w instanceof Date) {
28
- j(!0);
26
+ }, [j]);
27
+ let P = () => {
28
+ if (!h.isMobile && T instanceof Date) {
29
+ M(!0);
29
30
  return;
30
31
  }
31
- (k.current?.querySelector("input[name=\"day\"]"))?.focus();
32
- }, P = (e) => {
33
- e.target instanceof HTMLInputElement && N();
32
+ (A.current?.querySelector("input[name=\"day\"]"))?.focus();
34
33
  }, F = (e) => {
34
+ e.target instanceof HTMLInputElement && P();
35
+ }, I = (e) => {
36
+ h.isMobile && e.key === "Enter" && M(!1);
37
+ }, L = (e) => {
35
38
  let [t, n] = e.split(":"), r = Number(t), i = Number(n);
36
39
  if (Number.isNaN(r) || Number.isNaN(i)) return;
37
- let a = w instanceof Date ? new Date(w) : /* @__PURE__ */ new Date();
38
- a.setHours(r, i, 0, 0), T?.(a);
40
+ let a = T instanceof Date ? new Date(T) : /* @__PURE__ */ new Date();
41
+ a.setHours(r, i, 0, 0), E?.(a);
39
42
  };
40
- return /* @__PURE__ */ a("div", {
41
- ref: k,
43
+ return /* @__PURE__ */ o("div", {
44
+ ref: A,
42
45
  className: "dateTimePicker__wrapper",
43
- children: /* @__PURE__ */ o(t, {
44
- id: O,
45
- onFocus: P,
46
- className: i(b, "dateTimePicker"),
47
- label: m,
48
- labelPosition: g,
49
- error: v,
50
- required: _,
51
- style: y,
52
- value: w instanceof Date ? w.toISOString() : void 0,
53
- children: [/* @__PURE__ */ a(p, {
46
+ onKeyDown: I,
47
+ children: /* @__PURE__ */ s(t, {
48
+ id: k,
49
+ onFocus: F,
50
+ className: a(x, "dateTimePicker"),
51
+ label: i,
52
+ labelPosition: _,
53
+ error: y,
54
+ required: v,
55
+ style: b,
56
+ value: T instanceof Date ? T.toISOString() : void 0,
57
+ children: [/* @__PURE__ */ o(m, {
54
58
  isClockOpen: !1,
55
- onClockOpen: N,
59
+ onClockOpen: P,
56
60
  onClockClose: () => {},
57
- onCalendarOpen: () => j(!1),
58
- calendarIcon: /* @__PURE__ */ a(d, { size: 16 }),
59
- clearIcon: /* @__PURE__ */ a(f, { size: 14 }),
60
- value: w,
61
- onChange: T,
62
- ...E
63
- }), A && /* @__PURE__ */ a("div", {
61
+ onCalendarOpen: () => M(!1),
62
+ calendarIcon: /* @__PURE__ */ o(f, { size: 16 }),
63
+ clearIcon: /* @__PURE__ */ o(p, { size: 14 }),
64
+ value: T,
65
+ onChange: E,
66
+ ...D
67
+ }), j && /* @__PURE__ */ o("div", {
64
68
  className: "dateTimePicker__time-display",
65
- children: /* @__PURE__ */ a(r, {
66
- value: e(w, x),
67
- onChange: F,
68
- locale: M,
69
- labels: S,
70
- format: C,
71
- visible: A
69
+ children: /* @__PURE__ */ o(r, {
70
+ value: e(T, S),
71
+ onChange: L,
72
+ locale: N,
73
+ labels: C,
74
+ format: w,
75
+ visible: j
72
76
  })
73
77
  })]
74
78
  })
75
79
  });
76
80
  };
77
81
  //#endregion
78
- export { m as DateTimePicker };
82
+ export { g as DateTimePicker };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconAmazonPay: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -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,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconAmex: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -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,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconApplePay: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;