@thecb/components 7.7.5-beta.1 → 7.7.5-beta.2
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/dist/index.cjs.js +700 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +686 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/ArrowDownCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconMedium.js +47 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/ArrowRightCircleIconSmall.js +40 -0
- package/src/components/atoms/icons/ArrowUpCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/ChargebackIconMedium.js +34 -0
- package/src/components/atoms/icons/ChargebackIconSmall.js +34 -0
- package/src/components/atoms/icons/ChargebackReversalIconMedium.js +34 -0
- package/src/components/atoms/icons/ChargebackReversalIconSmall.js +34 -0
- package/src/components/atoms/icons/RefundIconMedium.js +40 -0
- package/src/components/atoms/icons/RefundIconSmall.js +40 -0
- package/src/components/atoms/icons/SuccessfulIconMedium.js +53 -0
- package/src/components/atoms/icons/SuccessfulIconSmall.js +59 -0
- package/src/components/atoms/icons/XCircleIconMedium.js +40 -0
- package/src/components/atoms/icons/XCircleIconSmall.js +40 -0
- package/src/components/atoms/icons/index.js +31 -1
package/dist/index.cjs.js
CHANGED
|
@@ -16525,6 +16525,691 @@ var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
|
16525
16525
|
|
|
16526
16526
|
var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$2, "primary");
|
|
16527
16527
|
|
|
16528
|
+
var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
|
|
16529
|
+
var _ref$color = _ref.color,
|
|
16530
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16531
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16532
|
+
width: "20",
|
|
16533
|
+
height: "20",
|
|
16534
|
+
viewBox: "0 0 20 20",
|
|
16535
|
+
fill: "none",
|
|
16536
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16537
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16538
|
+
cx: "10",
|
|
16539
|
+
cy: "10",
|
|
16540
|
+
r: "10",
|
|
16541
|
+
fill: color
|
|
16542
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16543
|
+
id: "mask0_1409_668",
|
|
16544
|
+
style: {
|
|
16545
|
+
maskType: "luminance"
|
|
16546
|
+
},
|
|
16547
|
+
maskUnits: "userSpaceOnUse",
|
|
16548
|
+
x: "2",
|
|
16549
|
+
y: "5",
|
|
16550
|
+
width: "15",
|
|
16551
|
+
height: "10"
|
|
16552
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16553
|
+
fillRule: "evenodd",
|
|
16554
|
+
clipRule: "evenodd",
|
|
16555
|
+
d: "M6.6667 6.83325C6.6667 6.28097 7.11441 5.83325 7.6667 5.83325H15.6667C16.219 5.83325 16.6667 6.28097 16.6667 6.83325V8.33325V9.99992V13.1666C16.6667 13.7189 16.219 14.1666 15.6667 14.1666H7.6667C7.11441 14.1666 6.6667 13.7189 6.6667 13.1666V9.99992V8.33325V6.83325ZM16.0417 6.5277V8.33325H7.2917V8.26381V6.5277H16.0417ZM7.2917 13.4721V9.99992H16.0417V13.4721H7.2917ZM4.8275 8.70703C4.8275 8.26157 4.28893 8.03849 3.97395 8.35347L2.68105 9.64636C2.48579 9.84163 2.48579 10.1582 2.68105 10.3535L3.97395 11.6464C4.28893 11.9613 4.8275 11.7383 4.8275 11.2928V8.70703ZM13.4896 11.6666C13.2595 11.6666 13.0729 11.8531 13.0729 12.0833C13.0729 12.3134 13.2595 12.4999 13.4896 12.4999H14.5313C14.7614 12.4999 14.9479 12.3134 14.9479 12.0833C14.9479 11.8531 14.7614 11.6666 14.5313 11.6666H13.4896Z",
|
|
16556
|
+
fill: "white"
|
|
16557
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16558
|
+
mask: "url(#mask0_1409_668)"
|
|
16559
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16560
|
+
x: "2.5",
|
|
16561
|
+
y: "2.5",
|
|
16562
|
+
width: "15",
|
|
16563
|
+
height: "15",
|
|
16564
|
+
fill: "white"
|
|
16565
|
+
})));
|
|
16566
|
+
};
|
|
16567
|
+
|
|
16568
|
+
var ChargebackReversalIconSmall = function ChargebackReversalIconSmall(_ref) {
|
|
16569
|
+
var _ref$color = _ref.color,
|
|
16570
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16571
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16572
|
+
width: "20",
|
|
16573
|
+
height: "20",
|
|
16574
|
+
viewBox: "0 0 20 20",
|
|
16575
|
+
fill: "none",
|
|
16576
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16577
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16578
|
+
cx: "10",
|
|
16579
|
+
cy: "10",
|
|
16580
|
+
r: "10",
|
|
16581
|
+
fill: color
|
|
16582
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16583
|
+
id: "mask0_1409_674",
|
|
16584
|
+
style: {
|
|
16585
|
+
maskType: "luminance"
|
|
16586
|
+
},
|
|
16587
|
+
maskUnits: "userSpaceOnUse",
|
|
16588
|
+
x: "4",
|
|
16589
|
+
y: "5",
|
|
16590
|
+
width: "14",
|
|
16591
|
+
height: "10"
|
|
16592
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16593
|
+
fillRule: "evenodd",
|
|
16594
|
+
clipRule: "evenodd",
|
|
16595
|
+
d: "M4.16669 6.83325C4.16669 6.28097 4.6144 5.83325 5.16669 5.83325H13.1667C13.719 5.83325 14.1667 6.28097 14.1667 6.83325V8.33325V9.99992V13.1666C14.1667 13.7189 13.719 14.1666 13.1667 14.1666H5.16669C4.6144 14.1666 4.16669 13.7189 4.16669 13.1666V9.99992V8.33325V6.83325ZM13.5417 6.5277V8.33325H4.79169V8.26381V6.5277H13.5417ZM4.79169 13.4721V9.99992H13.5417V13.4721H4.79169ZM15 11.2928C15 11.7383 15.5386 11.9613 15.8536 11.6464L17.1465 10.3535C17.3417 10.1582 17.3417 9.84163 17.1465 9.64636L15.8536 8.35347C15.5386 8.03849 15 8.26157 15 8.70703V11.2928ZM10.9896 11.6666C10.7595 11.6666 10.5729 11.8531 10.5729 12.0833C10.5729 12.3134 10.7595 12.4999 10.9896 12.4999H12.0313C12.2614 12.4999 12.4479 12.3134 12.4479 12.0833C12.4479 11.8531 12.2614 11.6666 12.0313 11.6666H10.9896Z",
|
|
16596
|
+
fill: "white"
|
|
16597
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16598
|
+
mask: "url(#mask0_1409_674)"
|
|
16599
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16600
|
+
x: "2.5",
|
|
16601
|
+
y: "2.5",
|
|
16602
|
+
width: "15",
|
|
16603
|
+
height: "15",
|
|
16604
|
+
fill: "white"
|
|
16605
|
+
})));
|
|
16606
|
+
};
|
|
16607
|
+
|
|
16608
|
+
var RefundIconSmall = function RefundIconSmall(_ref) {
|
|
16609
|
+
var _ref$color = _ref.color,
|
|
16610
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16611
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16612
|
+
width: "20",
|
|
16613
|
+
height: "20",
|
|
16614
|
+
viewBox: "0 0 20 20",
|
|
16615
|
+
fill: "none",
|
|
16616
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16617
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16618
|
+
cx: "10",
|
|
16619
|
+
cy: "10",
|
|
16620
|
+
r: "10",
|
|
16621
|
+
fill: color
|
|
16622
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16623
|
+
fillRule: "evenodd",
|
|
16624
|
+
clipRule: "evenodd",
|
|
16625
|
+
d: "M12.5812 14.0293V15H11.1768V14.0347C9.64976 13.8666 8.66331 13.1291 8.51283 11.757L10.2071 11.7245C10.3798 12.4403 11.004 12.82 11.8957 12.82C12.6983 12.82 13.2723 12.4024 13.2723 11.8438C13.2723 11.2636 12.8989 11.0249 12.1131 10.8514L10.7923 10.5748C9.56059 10.3308 8.7692 9.63124 8.75248 8.42733C8.74133 7.14751 9.76679 6.28525 11.2047 6.07375V5H12.6147V6.07918C14.0191 6.31779 14.8718 7.25054 14.8551 8.3731L13.211 8.40022C13.1107 7.70607 12.7875 7.28308 11.9292 7.28308C11.043 7.28308 10.4969 7.67354 10.4969 8.24295C10.4969 8.69848 10.7532 8.92625 11.6282 9.14859L12.9268 9.4577C14.3925 9.79935 15 10.6562 15 11.833C15 13.0152 14.0693 13.8395 12.5812 14.0293ZM7.5 11.3438C7.5 11.7558 7.02962 11.991 6.7 11.7438L4.7 10.2438C4.43333 10.0438 4.43333 9.64375 4.7 9.44375L6.7 7.94375C7.02962 7.69654 7.5 7.93173 7.5 8.34375V11.3438Z",
|
|
16626
|
+
fill: "white"
|
|
16627
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16628
|
+
id: "mask0_1409_673",
|
|
16629
|
+
style: {
|
|
16630
|
+
maskType: "luminance"
|
|
16631
|
+
},
|
|
16632
|
+
maskUnits: "userSpaceOnUse",
|
|
16633
|
+
x: "4",
|
|
16634
|
+
y: "5",
|
|
16635
|
+
width: "11",
|
|
16636
|
+
height: "10"
|
|
16637
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16638
|
+
fillRule: "evenodd",
|
|
16639
|
+
clipRule: "evenodd",
|
|
16640
|
+
d: "M12.5812 14.0293V15H11.1768V14.0347C9.64976 13.8666 8.66331 13.1291 8.51283 11.757L10.2071 11.7245C10.3798 12.4403 11.004 12.82 11.8957 12.82C12.6983 12.82 13.2723 12.4024 13.2723 11.8438C13.2723 11.2636 12.8989 11.0249 12.1131 10.8514L10.7923 10.5748C9.56059 10.3308 8.7692 9.63124 8.75248 8.42733C8.74133 7.14751 9.76679 6.28525 11.2047 6.07375V5H12.6147V6.07918C14.0191 6.31779 14.8718 7.25054 14.8551 8.3731L13.211 8.40022C13.1107 7.70607 12.7875 7.28308 11.9292 7.28308C11.043 7.28308 10.4969 7.67354 10.4969 8.24295C10.4969 8.69848 10.7532 8.92625 11.6282 9.14859L12.9268 9.4577C14.3925 9.79935 15 10.6562 15 11.833C15 13.0152 14.0693 13.8395 12.5812 14.0293ZM7.5 11.3438C7.5 11.7558 7.02962 11.991 6.7 11.7438L4.7 10.2438C4.43333 10.0438 4.43333 9.64375 4.7 9.44375L6.7 7.94375C7.02962 7.69654 7.5 7.93173 7.5 8.34375V11.3438Z",
|
|
16641
|
+
fill: "white"
|
|
16642
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16643
|
+
mask: "url(#mask0_1409_673)"
|
|
16644
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16645
|
+
x: "2.5",
|
|
16646
|
+
y: "2.5",
|
|
16647
|
+
width: "15",
|
|
16648
|
+
height: "15",
|
|
16649
|
+
fill: "white"
|
|
16650
|
+
})));
|
|
16651
|
+
};
|
|
16652
|
+
|
|
16653
|
+
var XCircleIconSmall = function XCircleIconSmall(_ref) {
|
|
16654
|
+
var _ref$color = _ref.color,
|
|
16655
|
+
color = _ref$color === void 0 ? "#D11053" : _ref$color;
|
|
16656
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16657
|
+
width: "21",
|
|
16658
|
+
height: "20",
|
|
16659
|
+
viewBox: "0 0 21 20",
|
|
16660
|
+
fill: "none",
|
|
16661
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16662
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16663
|
+
cx: "10.5",
|
|
16664
|
+
cy: "10",
|
|
16665
|
+
r: "10",
|
|
16666
|
+
fill: color
|
|
16667
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16668
|
+
fillRule: "evenodd",
|
|
16669
|
+
clipRule: "evenodd",
|
|
16670
|
+
d: "M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z",
|
|
16671
|
+
fill: "white"
|
|
16672
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16673
|
+
id: "mask0_1409_671",
|
|
16674
|
+
style: {
|
|
16675
|
+
maskType: "luminance"
|
|
16676
|
+
},
|
|
16677
|
+
maskUnits: "userSpaceOnUse",
|
|
16678
|
+
x: "6",
|
|
16679
|
+
y: "6",
|
|
16680
|
+
width: "9",
|
|
16681
|
+
height: "8"
|
|
16682
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16683
|
+
fillRule: "evenodd",
|
|
16684
|
+
clipRule: "evenodd",
|
|
16685
|
+
d: "M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z",
|
|
16686
|
+
fill: "white"
|
|
16687
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16688
|
+
mask: "url(#mask0_1409_671)"
|
|
16689
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16690
|
+
d: "M0.5 0H20.5V20H0.5V0Z",
|
|
16691
|
+
fill: "white"
|
|
16692
|
+
})));
|
|
16693
|
+
};
|
|
16694
|
+
|
|
16695
|
+
var SuccessfulIconSmall = function SuccessfulIconSmall() {
|
|
16696
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16697
|
+
width: "20",
|
|
16698
|
+
height: "20",
|
|
16699
|
+
viewBox: "0 0 20 20",
|
|
16700
|
+
fill: "none",
|
|
16701
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16702
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16703
|
+
cx: "10",
|
|
16704
|
+
cy: "10",
|
|
16705
|
+
r: "10",
|
|
16706
|
+
fill: "#317D4F"
|
|
16707
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16708
|
+
id: "mask0_1409_494",
|
|
16709
|
+
style: {
|
|
16710
|
+
maskType: "luminance"
|
|
16711
|
+
},
|
|
16712
|
+
maskUnits: "userSpaceOnUse",
|
|
16713
|
+
x: "0",
|
|
16714
|
+
y: "0",
|
|
16715
|
+
width: "20",
|
|
16716
|
+
height: "20"
|
|
16717
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16718
|
+
cx: "10",
|
|
16719
|
+
cy: "10",
|
|
16720
|
+
r: "10",
|
|
16721
|
+
fill: "white"
|
|
16722
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16723
|
+
mask: "url(#mask0_1409_494)"
|
|
16724
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16725
|
+
fillRule: "evenodd",
|
|
16726
|
+
clipRule: "evenodd",
|
|
16727
|
+
d: "M14.7817 6.18688C14.5864 5.99162 14.2698 5.99162 14.0746 6.18688L8.53558 11.7259L6.53211 9.72242C6.33685 9.52715 6.02027 9.52715 5.825 9.72242L5.3536 10.1938C5.15834 10.3891 5.15834 10.7057 5.3536 10.9009L7.71062 13.2579L8.18203 13.7294C8.37729 13.9246 8.69387 13.9246 8.88913 13.7294L9.36054 13.258C9.36068 13.2578 9.36082 13.2577 9.36096 13.2575L15.2531 7.36539C15.4484 7.17013 15.4484 6.85355 15.2531 6.65829L14.7817 6.18688Z",
|
|
16728
|
+
fill: "white"
|
|
16729
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16730
|
+
id: "mask1_1409_494",
|
|
16731
|
+
style: {
|
|
16732
|
+
maskType: "luminance"
|
|
16733
|
+
},
|
|
16734
|
+
maskUnits: "userSpaceOnUse",
|
|
16735
|
+
x: "5",
|
|
16736
|
+
y: "6",
|
|
16737
|
+
width: "11",
|
|
16738
|
+
height: "8"
|
|
16739
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16740
|
+
fillRule: "evenodd",
|
|
16741
|
+
clipRule: "evenodd",
|
|
16742
|
+
d: "M14.7817 6.18688C14.5864 5.99162 14.2698 5.99162 14.0746 6.18688L8.53558 11.7259L6.53211 9.72242C6.33685 9.52715 6.02027 9.52715 5.825 9.72242L5.3536 10.1938C5.15834 10.3891 5.15834 10.7057 5.3536 10.9009L7.71062 13.2579L8.18203 13.7294C8.37729 13.9246 8.69387 13.9246 8.88913 13.7294L9.36054 13.258C9.36068 13.2578 9.36082 13.2577 9.36096 13.2575L15.2531 7.36539C15.4484 7.17013 15.4484 6.85355 15.2531 6.65829L14.7817 6.18688Z",
|
|
16743
|
+
fill: "white"
|
|
16744
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16745
|
+
mask: "url(#mask1_1409_494)"
|
|
16746
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16747
|
+
x: "1.66669",
|
|
16748
|
+
y: "1.66666",
|
|
16749
|
+
width: "16.6667",
|
|
16750
|
+
height: "16.6667",
|
|
16751
|
+
fill: "white"
|
|
16752
|
+
}))));
|
|
16753
|
+
};
|
|
16754
|
+
|
|
16755
|
+
var ArrowLeftCircleIconSmall = function ArrowLeftCircleIconSmall(_ref) {
|
|
16756
|
+
var _ref$color = _ref.color,
|
|
16757
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16758
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16759
|
+
width: "20",
|
|
16760
|
+
height: "20",
|
|
16761
|
+
viewBox: "0 0 20 20",
|
|
16762
|
+
fill: "none",
|
|
16763
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16764
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16765
|
+
cx: "10",
|
|
16766
|
+
cy: "10",
|
|
16767
|
+
r: "10",
|
|
16768
|
+
fill: color
|
|
16769
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16770
|
+
fillRule: "evenodd",
|
|
16771
|
+
clipRule: "evenodd",
|
|
16772
|
+
d: "M10.528 14.472C10.7232 14.2768 10.7233 13.9605 10.5283 13.7652L7.39375 10.625H14.5C14.7761 10.625 15 10.4011 15 10.125V9.875C15 9.59886 14.7761 9.375 14.5 9.375H7.39375L10.5283 6.2348C10.7233 6.03949 10.7232 5.72315 10.528 5.52801L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L10.528 14.472Z",
|
|
16773
|
+
fill: "white"
|
|
16774
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16775
|
+
id: "mask0_1409_676",
|
|
16776
|
+
style: {
|
|
16777
|
+
maskType: "luminance"
|
|
16778
|
+
},
|
|
16779
|
+
maskUnits: "userSpaceOnUse",
|
|
16780
|
+
x: "5",
|
|
16781
|
+
y: "5",
|
|
16782
|
+
width: "10",
|
|
16783
|
+
height: "10"
|
|
16784
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16785
|
+
fillRule: "evenodd",
|
|
16786
|
+
clipRule: "evenodd",
|
|
16787
|
+
d: "M10.528 14.472C10.7232 14.2768 10.7233 13.9605 10.5283 13.7652L7.39375 10.625H14.5C14.7761 10.625 15 10.4011 15 10.125V9.875C15 9.59886 14.7761 9.375 14.5 9.375H7.39375L10.5283 6.2348C10.7233 6.03949 10.7232 5.72315 10.528 5.52801L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L10.528 14.472Z",
|
|
16788
|
+
fill: "white"
|
|
16789
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16790
|
+
mask: "url(#mask0_1409_676)"
|
|
16791
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16792
|
+
x: "17.5",
|
|
16793
|
+
y: "17.5",
|
|
16794
|
+
width: "15",
|
|
16795
|
+
height: "15",
|
|
16796
|
+
transform: "rotate(180 17.5 17.5)",
|
|
16797
|
+
fill: "white"
|
|
16798
|
+
})));
|
|
16799
|
+
};
|
|
16800
|
+
|
|
16801
|
+
var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
|
|
16802
|
+
var _ref$color = _ref.color,
|
|
16803
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16804
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16805
|
+
width: "20",
|
|
16806
|
+
height: "20",
|
|
16807
|
+
viewBox: "0 0 20 20",
|
|
16808
|
+
fill: "none",
|
|
16809
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16810
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16811
|
+
cx: "10",
|
|
16812
|
+
cy: "10",
|
|
16813
|
+
r: "10",
|
|
16814
|
+
fill: color
|
|
16815
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16816
|
+
fillRule: "evenodd",
|
|
16817
|
+
clipRule: "evenodd",
|
|
16818
|
+
d: "M9.47199 5.52801C9.27685 5.72315 9.27671 6.03949 9.47167 6.2348L12.6062 9.375H5.5C5.22386 9.375 5 9.59886 5 9.875V10.125C5 10.4011 5.22386 10.625 5.5 10.625H12.6062L9.47167 13.7652C9.27671 13.9605 9.27685 14.2768 9.47199 14.472L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L9.47199 5.52801Z",
|
|
16819
|
+
fill: "white"
|
|
16820
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16821
|
+
id: "mask0_1409_677",
|
|
16822
|
+
style: {
|
|
16823
|
+
maskType: "luminance"
|
|
16824
|
+
},
|
|
16825
|
+
maskUnits: "userSpaceOnUse",
|
|
16826
|
+
x: "5",
|
|
16827
|
+
y: "5",
|
|
16828
|
+
width: "10",
|
|
16829
|
+
height: "10"
|
|
16830
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16831
|
+
fillRule: "evenodd",
|
|
16832
|
+
clipRule: "evenodd",
|
|
16833
|
+
d: "M9.47199 5.52801C9.27685 5.72315 9.27671 6.03949 9.47167 6.2348L12.6062 9.375H5.5C5.22386 9.375 5 9.59886 5 9.875V10.125C5 10.4011 5.22386 10.625 5.5 10.625H12.6062L9.47167 13.7652C9.27671 13.9605 9.27685 14.2768 9.47199 14.472L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L9.47199 5.52801Z",
|
|
16834
|
+
fill: "white"
|
|
16835
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16836
|
+
mask: "url(#mask0_1409_677)"
|
|
16837
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16838
|
+
x: "2.5",
|
|
16839
|
+
y: "2.5",
|
|
16840
|
+
width: "15",
|
|
16841
|
+
height: "15",
|
|
16842
|
+
fill: "white"
|
|
16843
|
+
})));
|
|
16844
|
+
};
|
|
16845
|
+
|
|
16846
|
+
var ArrowUpCircleIconSmall = function ArrowUpCircleIconSmall(_ref) {
|
|
16847
|
+
var _ref$color = _ref.color,
|
|
16848
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16849
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16850
|
+
width: "20",
|
|
16851
|
+
height: "20",
|
|
16852
|
+
viewBox: "0 0 20 20",
|
|
16853
|
+
fill: "none",
|
|
16854
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16855
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16856
|
+
cx: "10",
|
|
16857
|
+
cy: "10",
|
|
16858
|
+
r: "10",
|
|
16859
|
+
fill: color
|
|
16860
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16861
|
+
fillRule: "evenodd",
|
|
16862
|
+
clipRule: "evenodd",
|
|
16863
|
+
d: "M5.52801 10.528C5.72315 10.7232 6.03949 10.7233 6.2348 10.5283L9.375 7.39375L9.375 14.5C9.375 14.7761 9.59886 15 9.875 15H10.125C10.4011 15 10.625 14.7761 10.625 14.5L10.625 7.39375L13.7652 10.5283C13.9605 10.7233 14.2768 10.7232 14.472 10.528L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L5.52801 10.528Z",
|
|
16864
|
+
fill: "white"
|
|
16865
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16866
|
+
id: "mask0_1409_675",
|
|
16867
|
+
style: {
|
|
16868
|
+
maskType: "luminance"
|
|
16869
|
+
},
|
|
16870
|
+
maskUnits: "userSpaceOnUse",
|
|
16871
|
+
x: "5",
|
|
16872
|
+
y: "5",
|
|
16873
|
+
width: "10",
|
|
16874
|
+
height: "10"
|
|
16875
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16876
|
+
fillRule: "evenodd",
|
|
16877
|
+
clipRule: "evenodd",
|
|
16878
|
+
d: "M5.52801 10.528C5.72315 10.7232 6.03949 10.7233 6.2348 10.5283L9.375 7.39375L9.375 14.5C9.375 14.7761 9.59886 15 9.875 15H10.125C10.4011 15 10.625 14.7761 10.625 14.5L10.625 7.39375L13.7652 10.5283C13.9605 10.7233 14.2768 10.7232 14.472 10.528L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L5.52801 10.528Z",
|
|
16879
|
+
fill: "white"
|
|
16880
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16881
|
+
mask: "url(#mask0_1409_675)"
|
|
16882
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16883
|
+
x: "2.5",
|
|
16884
|
+
y: "17.5",
|
|
16885
|
+
width: "15",
|
|
16886
|
+
height: "15",
|
|
16887
|
+
transform: "rotate(-90 2.5 17.5)",
|
|
16888
|
+
fill: "white"
|
|
16889
|
+
})));
|
|
16890
|
+
};
|
|
16891
|
+
|
|
16892
|
+
var ArrowDownCircleIconSmall = function ArrowDownCircleIconSmall(_ref) {
|
|
16893
|
+
var _ref$color = _ref.color,
|
|
16894
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
16895
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16896
|
+
width: "20",
|
|
16897
|
+
height: "20",
|
|
16898
|
+
viewBox: "0 0 20 20",
|
|
16899
|
+
fill: "none",
|
|
16900
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16901
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16902
|
+
cx: "10",
|
|
16903
|
+
cy: "10",
|
|
16904
|
+
r: "10",
|
|
16905
|
+
fill: color
|
|
16906
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16907
|
+
fillRule: "evenodd",
|
|
16908
|
+
clipRule: "evenodd",
|
|
16909
|
+
d: "M14.6696 9.47199C14.4745 9.27685 14.1581 9.27671 13.9628 9.47167L10.8226 12.6062V5.5C10.8226 5.22386 10.5988 5 10.3226 5H10.0726C9.79649 5 9.57263 5.22386 9.57263 5.5V12.6062L6.43244 9.47167C6.23712 9.27671 5.92078 9.27685 5.72564 9.47199L5.55119 9.64645C5.35592 9.84171 5.35592 10.1583 5.55119 10.3536L9.84408 14.6464C10.0393 14.8417 10.3559 14.8417 10.5512 14.6464L14.8441 10.3536C15.0393 10.1583 15.0393 9.84171 14.8441 9.64645L14.6696 9.47199Z",
|
|
16910
|
+
fill: "white"
|
|
16911
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16912
|
+
id: "mask0_1409_672",
|
|
16913
|
+
style: {
|
|
16914
|
+
maskType: "luminance"
|
|
16915
|
+
},
|
|
16916
|
+
maskUnits: "userSpaceOnUse",
|
|
16917
|
+
x: "5",
|
|
16918
|
+
y: "5",
|
|
16919
|
+
width: "10",
|
|
16920
|
+
height: "10"
|
|
16921
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16922
|
+
fillRule: "evenodd",
|
|
16923
|
+
clipRule: "evenodd",
|
|
16924
|
+
d: "M14.6696 9.47199C14.4745 9.27685 14.1581 9.27671 13.9628 9.47167L10.8226 12.6062V5.5C10.8226 5.22386 10.5988 5 10.3226 5H10.0726C9.79649 5 9.57263 5.22386 9.57263 5.5V12.6062L6.43244 9.47167C6.23712 9.27671 5.92078 9.27685 5.72564 9.47199L5.55119 9.64645C5.35592 9.84171 5.35592 10.1583 5.55119 10.3536L9.84408 14.6464C10.0393 14.8417 10.3559 14.8417 10.5512 14.6464L14.8441 10.3536C15.0393 10.1583 15.0393 9.84171 14.8441 9.64645L14.6696 9.47199Z",
|
|
16925
|
+
fill: "white"
|
|
16926
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16927
|
+
mask: "url(#mask0_1409_672)"
|
|
16928
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16929
|
+
x: "17.6976",
|
|
16930
|
+
y: "2.5",
|
|
16931
|
+
width: "15",
|
|
16932
|
+
height: "15",
|
|
16933
|
+
transform: "rotate(90 17.6976 2.5)",
|
|
16934
|
+
fill: "white"
|
|
16935
|
+
})));
|
|
16936
|
+
};
|
|
16937
|
+
|
|
16938
|
+
var SuccessfulIconMedium = function SuccessfulIconMedium(_ref) {
|
|
16939
|
+
var _ref$color = _ref.color,
|
|
16940
|
+
color = _ref$color === void 0 ? "#317D4F" : _ref$color;
|
|
16941
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16942
|
+
width: "24",
|
|
16943
|
+
height: "24",
|
|
16944
|
+
viewBox: "0 0 24 24",
|
|
16945
|
+
fill: "none",
|
|
16946
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16947
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16948
|
+
cx: "12",
|
|
16949
|
+
cy: "12",
|
|
16950
|
+
r: "12",
|
|
16951
|
+
fill: color
|
|
16952
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16953
|
+
id: "mask0_0_680",
|
|
16954
|
+
style: {
|
|
16955
|
+
maskType: "luminance"
|
|
16956
|
+
},
|
|
16957
|
+
maskUnits: "userSpaceOnUse",
|
|
16958
|
+
x: "0",
|
|
16959
|
+
y: "0",
|
|
16960
|
+
width: "24",
|
|
16961
|
+
height: "24"
|
|
16962
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16963
|
+
cx: "12",
|
|
16964
|
+
cy: "12",
|
|
16965
|
+
r: "12",
|
|
16966
|
+
fill: "white"
|
|
16967
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16968
|
+
mask: "url(#mask0_0_680)"
|
|
16969
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16970
|
+
fillRule: "evenodd",
|
|
16971
|
+
clipRule: "evenodd",
|
|
16972
|
+
d: "M17.6672 7.35354C17.472 7.15828 17.1554 7.15828 16.9601 7.35354L10.2426 14.0711L7.76775 11.5962C7.57249 11.4009 7.25591 11.4009 7.06065 11.5962L6.35354 12.3033C6.15828 12.4985 6.15828 12.8151 6.35354 13.0104L9.18167 15.8385C9.18177 15.8386 9.18187 15.8387 9.18197 15.8388L9.88907 16.5459C10.0843 16.7412 10.4009 16.7412 10.5962 16.5459L11.3033 15.8388C11.3034 15.8387 11.3036 15.8386 11.3037 15.8384L18.3744 8.76775C18.5696 8.57249 18.5696 8.25591 18.3744 8.06065L17.6672 7.35354Z",
|
|
16973
|
+
fill: "white"
|
|
16974
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16975
|
+
id: "mask1_0_680",
|
|
16976
|
+
style: {
|
|
16977
|
+
maskType: "luminance"
|
|
16978
|
+
},
|
|
16979
|
+
maskUnits: "userSpaceOnUse",
|
|
16980
|
+
x: "6",
|
|
16981
|
+
y: "7",
|
|
16982
|
+
width: "13",
|
|
16983
|
+
height: "10"
|
|
16984
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16985
|
+
fillRule: "evenodd",
|
|
16986
|
+
clipRule: "evenodd",
|
|
16987
|
+
d: "M17.6672 7.35354C17.472 7.15828 17.1554 7.15828 16.9601 7.35354L10.2426 14.0711L7.76775 11.5962C7.57249 11.4009 7.25591 11.4009 7.06065 11.5962L6.35354 12.3033C6.15828 12.4985 6.15828 12.8151 6.35354 13.0104L9.18167 15.8385C9.18177 15.8386 9.18187 15.8387 9.18197 15.8388L9.88907 16.5459C10.0843 16.7412 10.4009 16.7412 10.5962 16.5459L11.3033 15.8388C11.3034 15.8387 11.3036 15.8386 11.3037 15.8384L18.3744 8.76775C18.5696 8.57249 18.5696 8.25591 18.3744 8.06065L17.6672 7.35354Z",
|
|
16988
|
+
fill: "white"
|
|
16989
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16990
|
+
mask: "url(#mask1_0_680)"
|
|
16991
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16992
|
+
x: "2",
|
|
16993
|
+
y: "2",
|
|
16994
|
+
width: "20",
|
|
16995
|
+
height: "20",
|
|
16996
|
+
fill: "white"
|
|
16997
|
+
}))));
|
|
16998
|
+
};
|
|
16999
|
+
|
|
17000
|
+
var XCircleIconMedium = function XCircleIconMedium(_ref) {
|
|
17001
|
+
var _ref$color = _ref.color,
|
|
17002
|
+
color = _ref$color === void 0 ? "#D11053" : _ref$color;
|
|
17003
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17004
|
+
width: "24",
|
|
17005
|
+
height: "24",
|
|
17006
|
+
viewBox: "0 0 24 24",
|
|
17007
|
+
fill: "none",
|
|
17008
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17009
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17010
|
+
cx: "12",
|
|
17011
|
+
cy: "12",
|
|
17012
|
+
r: "12",
|
|
17013
|
+
fill: color
|
|
17014
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17015
|
+
fillRule: "evenodd",
|
|
17016
|
+
clipRule: "evenodd",
|
|
17017
|
+
d: "M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z",
|
|
17018
|
+
fill: "white"
|
|
17019
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17020
|
+
id: "mask0_0_637",
|
|
17021
|
+
style: {
|
|
17022
|
+
maskType: "luminance"
|
|
17023
|
+
},
|
|
17024
|
+
maskUnits: "userSpaceOnUse",
|
|
17025
|
+
x: "7",
|
|
17026
|
+
y: "7",
|
|
17027
|
+
width: "10",
|
|
17028
|
+
height: "10"
|
|
17029
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17030
|
+
fillRule: "evenodd",
|
|
17031
|
+
clipRule: "evenodd",
|
|
17032
|
+
d: "M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z",
|
|
17033
|
+
fill: "white"
|
|
17034
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17035
|
+
mask: "url(#mask0_0_637)"
|
|
17036
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17037
|
+
d: "M0 0H24V24H0V0Z",
|
|
17038
|
+
fill: "white"
|
|
17039
|
+
})));
|
|
17040
|
+
};
|
|
17041
|
+
|
|
17042
|
+
var RefundIconMedium = function RefundIconMedium(_ref) {
|
|
17043
|
+
var _ref$color = _ref.color,
|
|
17044
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
17045
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17046
|
+
width: "24",
|
|
17047
|
+
height: "24",
|
|
17048
|
+
viewBox: "0 0 24 24",
|
|
17049
|
+
fill: "none",
|
|
17050
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17051
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17052
|
+
cx: "12",
|
|
17053
|
+
cy: "12",
|
|
17054
|
+
r: "12",
|
|
17055
|
+
fill: color
|
|
17056
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17057
|
+
fillRule: "evenodd",
|
|
17058
|
+
clipRule: "evenodd",
|
|
17059
|
+
d: "M15.0975 16.8351V18H13.4122V16.8416C11.5797 16.6399 10.396 15.7549 10.2154 14.1085L12.2485 14.0694C12.4558 14.9284 13.2049 15.3839 14.2749 15.3839C15.2379 15.3839 15.9268 14.8829 15.9268 14.2126C15.9268 13.5163 15.4787 13.2299 14.5357 13.0217L12.9507 12.6898C11.4727 12.397 10.523 11.5575 10.503 10.1128C10.4896 8.57701 11.7202 7.5423 13.4456 7.2885V6H15.1376V7.29501C16.823 7.58134 17.8462 8.70065 17.8261 10.0477L15.8532 10.0803C15.7328 9.24729 15.345 8.7397 14.315 8.7397C13.2517 8.7397 12.5963 9.20824 12.5963 9.89154C12.5963 10.4382 12.9039 10.7115 13.9539 10.9783L15.5121 11.3492C17.271 11.7592 18 12.7874 18 14.1996C18 15.6182 16.8831 16.6074 15.0975 16.8351ZM9.00001 13.8125C9.00001 14.2245 8.52963 14.4597 8.20001 14.2125L5.53334 12.2125C5.26668 12.0125 5.26668 11.6125 5.53334 11.4125L8.20001 9.4125C8.52963 9.16529 9.00001 9.40048 9.00001 9.8125V13.8125Z",
|
|
17060
|
+
fill: "white"
|
|
17061
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17062
|
+
id: "mask0_0_2179",
|
|
17063
|
+
style: {
|
|
17064
|
+
maskType: "luminance"
|
|
17065
|
+
},
|
|
17066
|
+
maskUnits: "userSpaceOnUse",
|
|
17067
|
+
x: "5",
|
|
17068
|
+
y: "6",
|
|
17069
|
+
width: "13",
|
|
17070
|
+
height: "12"
|
|
17071
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17072
|
+
fillRule: "evenodd",
|
|
17073
|
+
clipRule: "evenodd",
|
|
17074
|
+
d: "M15.0975 16.8351V18H13.4122V16.8416C11.5797 16.6399 10.396 15.7549 10.2154 14.1085L12.2485 14.0694C12.4558 14.9284 13.2049 15.3839 14.2749 15.3839C15.2379 15.3839 15.9268 14.8829 15.9268 14.2126C15.9268 13.5163 15.4787 13.2299 14.5357 13.0217L12.9507 12.6898C11.4727 12.397 10.523 11.5575 10.503 10.1128C10.4896 8.57701 11.7202 7.5423 13.4456 7.2885V6H15.1376V7.29501C16.823 7.58134 17.8462 8.70065 17.8261 10.0477L15.8532 10.0803C15.7328 9.24729 15.345 8.7397 14.315 8.7397C13.2517 8.7397 12.5963 9.20824 12.5963 9.89154C12.5963 10.4382 12.9039 10.7115 13.9539 10.9783L15.5121 11.3492C17.271 11.7592 18 12.7874 18 14.1996C18 15.6182 16.8831 16.6074 15.0975 16.8351ZM9.00001 13.8125C9.00001 14.2245 8.52963 14.4597 8.20001 14.2125L5.53334 12.2125C5.26668 12.0125 5.26668 11.6125 5.53334 11.4125L8.20001 9.4125C8.52963 9.16529 9.00001 9.40048 9.00001 9.8125V13.8125Z",
|
|
17075
|
+
fill: "white"
|
|
17076
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17077
|
+
mask: "url(#mask0_0_2179)"
|
|
17078
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17079
|
+
x: "3",
|
|
17080
|
+
y: "3",
|
|
17081
|
+
width: "18",
|
|
17082
|
+
height: "18",
|
|
17083
|
+
fill: "white"
|
|
17084
|
+
})));
|
|
17085
|
+
};
|
|
17086
|
+
|
|
17087
|
+
var ArrowLeftCircleIconMedium = function ArrowLeftCircleIconMedium(_ref) {
|
|
17088
|
+
var _ref$color = _ref.color,
|
|
17089
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
17090
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17091
|
+
width: "24",
|
|
17092
|
+
height: "24",
|
|
17093
|
+
viewBox: "0 0 24 24",
|
|
17094
|
+
fill: "none",
|
|
17095
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17096
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17097
|
+
cx: "12",
|
|
17098
|
+
cy: "12",
|
|
17099
|
+
r: "12",
|
|
17100
|
+
fill: color
|
|
17101
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17102
|
+
fillRule: "evenodd",
|
|
17103
|
+
clipRule: "evenodd",
|
|
17104
|
+
d: "M12.7043 17.2957C12.8994 17.1006 12.8995 16.7843 12.7046 16.5889L8.8725 12.75H17.5C17.7761 12.75 18 12.5261 18 12.25V11.75C18 11.4739 17.7761 11.25 17.5 11.25H8.8725L12.7046 7.41105C12.8995 7.21574 12.8994 6.8994 12.7043 6.70426L12.3536 6.35355C12.1583 6.15829 11.8417 6.15829 11.6464 6.35355L6.35355 11.6464C6.15829 11.8417 6.15829 12.1583 6.35355 12.3536L11.6464 17.6464C11.8417 17.8417 12.1583 17.8417 12.3536 17.6464L12.7043 17.2957Z",
|
|
17105
|
+
fill: "white"
|
|
17106
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17107
|
+
id: "mask0_0_143",
|
|
17108
|
+
style: {
|
|
17109
|
+
maskType: "luminance"
|
|
17110
|
+
},
|
|
17111
|
+
maskUnits: "userSpaceOnUse",
|
|
17112
|
+
x: "6",
|
|
17113
|
+
y: "6",
|
|
17114
|
+
width: "12",
|
|
17115
|
+
height: "12"
|
|
17116
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17117
|
+
fillRule: "evenodd",
|
|
17118
|
+
clipRule: "evenodd",
|
|
17119
|
+
d: "M12.7043 17.2957C12.8994 17.1006 12.8995 16.7843 12.7046 16.5889L8.8725 12.75H17.5C17.7761 12.75 18 12.5261 18 12.25V11.75C18 11.4739 17.7761 11.25 17.5 11.25H8.8725L12.7046 7.41105C12.8995 7.21574 12.8994 6.8994 12.7043 6.70426L12.3536 6.35355C12.1583 6.15829 11.8417 6.15829 11.6464 6.35355L6.35355 11.6464C6.15829 11.8417 6.15829 12.1583 6.35355 12.3536L11.6464 17.6464C11.8417 17.8417 12.1583 17.8417 12.3536 17.6464L12.7043 17.2957Z",
|
|
17120
|
+
fill: "white"
|
|
17121
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17122
|
+
mask: "url(#mask0_0_143)"
|
|
17123
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17124
|
+
x: "21",
|
|
17125
|
+
y: "21",
|
|
17126
|
+
width: "18",
|
|
17127
|
+
height: "18",
|
|
17128
|
+
transform: "rotate(180 21 21)",
|
|
17129
|
+
fill: "white"
|
|
17130
|
+
})));
|
|
17131
|
+
};
|
|
17132
|
+
|
|
17133
|
+
var ChargebackIconMedium = function ChargebackIconMedium(_ref) {
|
|
17134
|
+
var _ref$color = _ref.color,
|
|
17135
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
17136
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17137
|
+
width: "24",
|
|
17138
|
+
height: "24",
|
|
17139
|
+
viewBox: "0 0 24 24",
|
|
17140
|
+
fill: "none",
|
|
17141
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17142
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17143
|
+
cx: "12",
|
|
17144
|
+
cy: "12",
|
|
17145
|
+
r: "12",
|
|
17146
|
+
fill: color
|
|
17147
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17148
|
+
id: "mask0_0_1844",
|
|
17149
|
+
style: {
|
|
17150
|
+
maskType: "luminance"
|
|
17151
|
+
},
|
|
17152
|
+
maskUnits: "userSpaceOnUse",
|
|
17153
|
+
x: "3",
|
|
17154
|
+
y: "7",
|
|
17155
|
+
width: "17",
|
|
17156
|
+
height: "10"
|
|
17157
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17158
|
+
fillRule: "evenodd",
|
|
17159
|
+
clipRule: "evenodd",
|
|
17160
|
+
d: "M7.99999 8C7.99999 7.44772 8.4477 7 8.99999 7H19C19.5523 7 20 7.44772 20 8V10V12V16C20 16.5523 19.5523 17 19 17H8.99999C8.4477 17 7.99999 16.5523 7.99999 16V12V10V8ZM19.25 7.83333V10H8.74999V9.91667V7.83333H19.25ZM8.74999 16.1667V12H19.25V16.1667H8.74999ZM5.79295 10.2071C5.79295 9.76165 5.25438 9.53857 4.9394 9.85355L3.14651 11.6464C2.95125 11.8417 2.95125 12.1583 3.14651 12.3536L4.9394 14.1464C5.25438 14.4614 5.79295 14.2383 5.79295 13.7929V10.2071ZM16.1875 14C15.9113 14 15.6875 14.2239 15.6875 14.5C15.6875 14.7761 15.9113 15 16.1875 15H17.4375C17.7136 15 17.9375 14.7761 17.9375 14.5C17.9375 14.2239 17.7136 14 17.4375 14H16.1875Z",
|
|
17161
|
+
fill: "white"
|
|
17162
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17163
|
+
mask: "url(#mask0_0_1844)"
|
|
17164
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17165
|
+
x: "3",
|
|
17166
|
+
y: "3",
|
|
17167
|
+
width: "18",
|
|
17168
|
+
height: "18",
|
|
17169
|
+
fill: "white"
|
|
17170
|
+
})));
|
|
17171
|
+
};
|
|
17172
|
+
|
|
17173
|
+
var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
|
|
17174
|
+
var _ref$color = _ref.color,
|
|
17175
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color;
|
|
17176
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17177
|
+
width: "24",
|
|
17178
|
+
height: "24",
|
|
17179
|
+
viewBox: "0 0 24 24",
|
|
17180
|
+
fill: "none",
|
|
17181
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17182
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17183
|
+
cx: "12",
|
|
17184
|
+
cy: "12",
|
|
17185
|
+
r: "12",
|
|
17186
|
+
fill: color
|
|
17187
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17188
|
+
id: "mask0_0_1926",
|
|
17189
|
+
style: {
|
|
17190
|
+
maskType: "luminance"
|
|
17191
|
+
},
|
|
17192
|
+
maskUnits: "userSpaceOnUse",
|
|
17193
|
+
x: "5",
|
|
17194
|
+
y: "7",
|
|
17195
|
+
width: "16",
|
|
17196
|
+
height: "10"
|
|
17197
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17198
|
+
fillRule: "evenodd",
|
|
17199
|
+
clipRule: "evenodd",
|
|
17200
|
+
d: "M5 8C5 7.44772 5.44772 7 6 7H16C16.5523 7 17 7.44772 17 8V10V12V16C17 16.5523 16.5523 17 16 17H6C5.44772 17 5 16.5523 5 16V12V10V8ZM16.25 7.83333V10H5.75V9.91667V7.83333H16.25ZM5.75 16.1667V12H16.25V16.1667H5.75ZM18 13.7929C18 14.2383 18.5386 14.4614 18.8536 14.1464L20.6464 12.3536C20.8417 12.1583 20.8417 11.8417 20.6464 11.6464L18.8536 9.85355C18.5386 9.53857 18 9.76165 18 10.2071V13.7929ZM13.1875 14C12.9114 14 12.6875 14.2239 12.6875 14.5C12.6875 14.7761 12.9114 15 13.1875 15H14.4375C14.7136 15 14.9375 14.7761 14.9375 14.5C14.9375 14.2239 14.7136 14 14.4375 14H13.1875Z",
|
|
17201
|
+
fill: "white"
|
|
17202
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17203
|
+
mask: "url(#mask0_0_1926)"
|
|
17204
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17205
|
+
x: "3",
|
|
17206
|
+
y: "3",
|
|
17207
|
+
width: "18",
|
|
17208
|
+
height: "18",
|
|
17209
|
+
fill: "white"
|
|
17210
|
+
})));
|
|
17211
|
+
};
|
|
17212
|
+
|
|
16528
17213
|
var color$2 = "#15749D";
|
|
16529
17214
|
var hoverColor$1 = "#116285";
|
|
16530
17215
|
var activeColor$1 = "#0E506D";
|
|
@@ -48078,6 +48763,11 @@ exports.AddressForm = AddressForm;
|
|
|
48078
48763
|
exports.Alert = Alert$1;
|
|
48079
48764
|
exports.AllocatedIcon = AllocatedIcon;
|
|
48080
48765
|
exports.AmountCallout = AmountCallout$1;
|
|
48766
|
+
exports.ArrowDownCircleIconSmall = ArrowDownCircleIconSmall;
|
|
48767
|
+
exports.ArrowLeftCircleIconMedium = ArrowLeftCircleIconMedium;
|
|
48768
|
+
exports.ArrowLeftCircleIconSmall = ArrowLeftCircleIconSmall;
|
|
48769
|
+
exports.ArrowRightCircleIconSmall = ArrowRightCircleIconSmall;
|
|
48770
|
+
exports.ArrowUpCircleIconSmall = ArrowUpCircleIconSmall;
|
|
48081
48771
|
exports.AutopayOnIcon = AutopayOnIcon;
|
|
48082
48772
|
exports.BankIcon = BankIcon;
|
|
48083
48773
|
exports.BankIconLarge = BankIconLarge;
|
|
@@ -48096,7 +48786,11 @@ exports.CenterSingle = CenterSingle$1;
|
|
|
48096
48786
|
exports.CenterStack = CenterStack$1;
|
|
48097
48787
|
exports.ChangePasswordForm = ChangePasswordForm;
|
|
48098
48788
|
exports.ChargebackIcon = ChargebackIcon;
|
|
48789
|
+
exports.ChargebackIconMedium = ChargebackIconMedium;
|
|
48790
|
+
exports.ChargebackIconSmall = ChargebackIconSmall;
|
|
48099
48791
|
exports.ChargebackReversalIcon = ChargebackReversalIcon;
|
|
48792
|
+
exports.ChargebackReversalIconMedium = ChargebackReversalIconMedium;
|
|
48793
|
+
exports.ChargebackReversalIconSmall = ChargebackReversalIconSmall;
|
|
48100
48794
|
exports.CheckIcon = CheckIcon;
|
|
48101
48795
|
exports.Checkbox = Checkbox$1;
|
|
48102
48796
|
exports.CheckboxList = CheckboxList$1;
|
|
@@ -48199,6 +48893,8 @@ exports.RadioGroup = RadioGroup;
|
|
|
48199
48893
|
exports.RadioSection = RadioSection$1;
|
|
48200
48894
|
exports.Reel = Reel;
|
|
48201
48895
|
exports.RefundIcon = RefundIcon;
|
|
48896
|
+
exports.RefundIconMedium = RefundIconMedium;
|
|
48897
|
+
exports.RefundIconSmall = RefundIconSmall;
|
|
48202
48898
|
exports.RegistrationForm = RegistrationForm;
|
|
48203
48899
|
exports.RejectedIcon = RejectedIcon;
|
|
48204
48900
|
exports.RejectedVelocityIcon = RejectedVelocityIcon;
|
|
@@ -48222,6 +48918,8 @@ exports.StandardCheckoutImage = StandardCheckoutImage;
|
|
|
48222
48918
|
exports.StateProvinceDropdown = FormStateDropdown;
|
|
48223
48919
|
exports.StatusUnknownIcon = StatusUnknownIcon;
|
|
48224
48920
|
exports.SuccessfulIcon = SuccessfulIcon;
|
|
48921
|
+
exports.SuccessfulIconMedium = SuccessfulIconMedium;
|
|
48922
|
+
exports.SuccessfulIconSmall = SuccessfulIconSmall;
|
|
48225
48923
|
exports.Switcher = Switcher;
|
|
48226
48924
|
exports.TabSidebar = TabSidebar$1;
|
|
48227
48925
|
exports.Table = Table_styled;
|
|
@@ -48249,6 +48947,8 @@ exports.WalletIconSmall = WalletIconSmall$1;
|
|
|
48249
48947
|
exports.WarningIconXS = WarningIconXS;
|
|
48250
48948
|
exports.WelcomeModule = WelcomeModule$1;
|
|
48251
48949
|
exports.WorkflowTile = WorkflowTile;
|
|
48950
|
+
exports.XCircleIconMedium = XCircleIconMedium;
|
|
48951
|
+
exports.XCircleIconSmall = XCircleIconSmall;
|
|
48252
48952
|
exports.cardRegistry = cardRegistry;
|
|
48253
48953
|
exports.constants = index$5;
|
|
48254
48954
|
exports.createPartialAmountFormState = createPartialAmountFormState;
|