@thecb/components 7.8.0-beta.0 → 7.8.0
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 +805 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +140 -1
- package/dist/index.esm.js +790 -10
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/button-with-action/ButtonWithAction.js +4 -3
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +14 -0
- package/src/components/atoms/icons/ArrowDownCircleIconSmall.d.ts +12 -0
- package/src/components/atoms/icons/ArrowDownCircleIconSmall.js +50 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconMedium.d.ts +12 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconMedium.js +50 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconSmall.d.ts +12 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconSmall.js +49 -0
- package/src/components/atoms/icons/ArrowRightCircleIconSmall.d.ts +12 -0
- package/src/components/atoms/icons/ArrowRightCircleIconSmall.js +42 -0
- package/src/components/atoms/icons/ArrowUpCircleIconSmall.d.ts +12 -0
- package/src/components/atoms/icons/ArrowUpCircleIconSmall.js +50 -0
- package/src/components/atoms/icons/BankIconLarge.d.ts +9 -0
- package/src/components/atoms/icons/BankIconLarge.js +34 -0
- package/src/components/atoms/icons/ChargebackIconMedium.d.ts +10 -0
- package/src/components/atoms/icons/ChargebackIconMedium.js +37 -0
- package/src/components/atoms/icons/ChargebackIconSmall.d.ts +10 -0
- package/src/components/atoms/icons/ChargebackIconSmall.js +37 -0
- package/src/components/atoms/icons/ChargebackReversalIconMedium.d.ts +12 -0
- package/src/components/atoms/icons/ChargebackReversalIconMedium.js +37 -0
- package/src/components/atoms/icons/ChargebackReversalIconSmall.d.ts +12 -0
- package/src/components/atoms/icons/ChargebackReversalIconSmall.js +37 -0
- package/src/components/atoms/icons/RefundIconMedium.d.ts +10 -0
- package/src/components/atoms/icons/RefundIconMedium.js +43 -0
- package/src/components/atoms/icons/RefundIconSmall.d.ts +10 -0
- package/src/components/atoms/icons/RefundIconSmall.js +43 -0
- package/src/components/atoms/icons/SuccessfulIconMedium.d.ts +9 -0
- package/src/components/atoms/icons/SuccessfulIconMedium.js +56 -0
- package/src/components/atoms/icons/SuccessfulIconSmall.d.ts +9 -0
- package/src/components/atoms/icons/SuccessfulIconSmall.js +64 -0
- package/src/components/atoms/icons/XCircleIconMedium.d.ts +10 -0
- package/src/components/atoms/icons/XCircleIconMedium.js +43 -0
- package/src/components/atoms/icons/XCircleIconSmall.d.ts +10 -0
- package/src/components/atoms/icons/XCircleIconSmall.js +43 -0
- package/src/components/atoms/icons/index.d.ts +16 -0
- package/src/components/atoms/icons/index.js +33 -1
- package/src/components/atoms/searchable-select/SearchableSelect.js +30 -32
package/dist/index.cjs.js
CHANGED
|
@@ -12557,6 +12557,7 @@ var padding = {
|
|
|
12557
12557
|
tertiary: "0.75rem 1.5rem",
|
|
12558
12558
|
ghost: "0.65rem 0",
|
|
12559
12559
|
danger: "0.75rem 1.5rem",
|
|
12560
|
+
dangerSecondary: "0.75rem 1.5rem",
|
|
12560
12561
|
whiteSecondary: "0.75rem 2rem",
|
|
12561
12562
|
whitePrimary: "1.125rem 0.75rem"
|
|
12562
12563
|
};
|
|
@@ -12570,6 +12571,7 @@ var color$1 = {
|
|
|
12570
12571
|
ghost: "#15749D",
|
|
12571
12572
|
tertiary: "#15749D",
|
|
12572
12573
|
danger: "#FFFFFF",
|
|
12574
|
+
dangerSecondary: "#D11053",
|
|
12573
12575
|
whiteSecondary: "#FFFFFF",
|
|
12574
12576
|
whitePrimary: "#FFFFFF"
|
|
12575
12577
|
};
|
|
@@ -12583,6 +12585,7 @@ var fontSizeVariant = {
|
|
|
12583
12585
|
ghost: "pL",
|
|
12584
12586
|
tertiary: "pS",
|
|
12585
12587
|
danger: "pS",
|
|
12588
|
+
dangerSecondary: "pS",
|
|
12586
12589
|
whiteSecondary: "pS",
|
|
12587
12590
|
whitePrimary: "pS"
|
|
12588
12591
|
};
|
|
@@ -12596,6 +12599,7 @@ var fontWeight = {
|
|
|
12596
12599
|
ghost: "600",
|
|
12597
12600
|
tertiary: "600",
|
|
12598
12601
|
danger: "600",
|
|
12602
|
+
dangerSecondary: "600",
|
|
12599
12603
|
whiteSecondary: "600",
|
|
12600
12604
|
whitePrimary: "600"
|
|
12601
12605
|
};
|
|
@@ -12609,6 +12613,7 @@ var height = {
|
|
|
12609
12613
|
ghost: "3rem",
|
|
12610
12614
|
tertiary: "3rem",
|
|
12611
12615
|
danger: "3rem",
|
|
12616
|
+
dangerSecondary: "3rem",
|
|
12612
12617
|
whiteSecondary: "3rem",
|
|
12613
12618
|
whitePrimary: "auto"
|
|
12614
12619
|
};
|
|
@@ -12622,6 +12627,7 @@ var minWidth = {
|
|
|
12622
12627
|
ghost: "130px",
|
|
12623
12628
|
tertiary: "130px",
|
|
12624
12629
|
danger: "130px",
|
|
12630
|
+
dangerSecondary: "157px",
|
|
12625
12631
|
whiteSecondary: "160px",
|
|
12626
12632
|
whitePrimary: "130px"
|
|
12627
12633
|
};
|
|
@@ -12635,6 +12641,7 @@ var backgroundColor = {
|
|
|
12635
12641
|
ghost: "transparent",
|
|
12636
12642
|
tertiary: "transparent",
|
|
12637
12643
|
danger: "#ED125F",
|
|
12644
|
+
dangerSecondary: "transparent",
|
|
12638
12645
|
whiteSecondary: "transparent",
|
|
12639
12646
|
whitePrimary: "transparent"
|
|
12640
12647
|
};
|
|
@@ -12648,6 +12655,7 @@ var border = {
|
|
|
12648
12655
|
ghost: "none",
|
|
12649
12656
|
tertiary: "none",
|
|
12650
12657
|
danger: "2px solid #ED125F",
|
|
12658
|
+
dangerSecondary: "2px solid #D11053",
|
|
12651
12659
|
whiteSecondary: "2px solid white",
|
|
12652
12660
|
whitePrimary: "2px solid transparent"
|
|
12653
12661
|
};
|
|
@@ -12661,6 +12669,7 @@ var hoverBackgroundColor = {
|
|
|
12661
12669
|
ghost: "transparent",
|
|
12662
12670
|
tertiary: "transparent",
|
|
12663
12671
|
danger: "#BA002C",
|
|
12672
|
+
dangerSecondary: "transparent",
|
|
12664
12673
|
whiteSecondary: "transparent",
|
|
12665
12674
|
whitePrimary: "transparent"
|
|
12666
12675
|
};
|
|
@@ -12674,6 +12683,7 @@ var hoverBorderColor = {
|
|
|
12674
12683
|
ghost: "transparent",
|
|
12675
12684
|
tertiary: "transparent",
|
|
12676
12685
|
danger: "#BA002C",
|
|
12686
|
+
dangerSecondary: "#B10541",
|
|
12677
12687
|
whiteSecondary: "2px solid transparent",
|
|
12678
12688
|
whitePrimary: "2px solid transparent"
|
|
12679
12689
|
};
|
|
@@ -12687,6 +12697,7 @@ var hoverColor = {
|
|
|
12687
12697
|
ghost: "#116285",
|
|
12688
12698
|
tertiary: "#116285",
|
|
12689
12699
|
danger: "#FFFFFF",
|
|
12700
|
+
dangerSecondary: "#B10541",
|
|
12690
12701
|
whiteSecondary: "#FFFFFF",
|
|
12691
12702
|
whitePrimary: "#FFFFFF"
|
|
12692
12703
|
};
|
|
@@ -12700,6 +12711,7 @@ var activeBackgroundColor = {
|
|
|
12700
12711
|
ghost: "transparent",
|
|
12701
12712
|
tertiary: "transparent",
|
|
12702
12713
|
danger: "#870000",
|
|
12714
|
+
dangerSecondary: "transparent",
|
|
12703
12715
|
whiteSecondary: "transparent",
|
|
12704
12716
|
whitePrimary: "transparent"
|
|
12705
12717
|
};
|
|
@@ -12713,6 +12725,7 @@ var activeBorderColor = {
|
|
|
12713
12725
|
ghost: "transparent",
|
|
12714
12726
|
tertiary: "transparent",
|
|
12715
12727
|
danger: "#870000",
|
|
12728
|
+
dangerSecondary: "#910029",
|
|
12716
12729
|
whiteSecondary: "2px solid transparent",
|
|
12717
12730
|
whitePrimary: "2px solid transparent"
|
|
12718
12731
|
};
|
|
@@ -12726,6 +12739,7 @@ var activeColor = {
|
|
|
12726
12739
|
ghost: "#0E506D",
|
|
12727
12740
|
tertiary: "#0E506D",
|
|
12728
12741
|
danger: "#FFFFFF",
|
|
12742
|
+
dangerSecondary: "#910029",
|
|
12729
12743
|
whiteSecondary: "#FFFFFF",
|
|
12730
12744
|
whitePrimary: "#FFFFFF"
|
|
12731
12745
|
};
|
|
@@ -12811,7 +12825,7 @@ var SpinnerIcon = function SpinnerIcon(_ref3) {
|
|
|
12811
12825
|
}))))));
|
|
12812
12826
|
};
|
|
12813
12827
|
|
|
12814
|
-
var _excluded$h = ["action", "variant", "text", "textWrap", "isLoading", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children", "extraDisabledStyles"];
|
|
12828
|
+
var _excluded$h = ["action", "variant", "text", "textWrap", "isLoading", "loadingColor", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children", "extraDisabledStyles"];
|
|
12815
12829
|
var rotate$1 = posed.div({
|
|
12816
12830
|
fixed: {
|
|
12817
12831
|
rotate: "0deg"
|
|
@@ -12837,11 +12851,13 @@ var SpinnerIconWrapper$1 = styled__default(rotate$1).withConfig({
|
|
|
12837
12851
|
})([""]);
|
|
12838
12852
|
|
|
12839
12853
|
var Spinner = function Spinner(_ref) {
|
|
12840
|
-
var
|
|
12854
|
+
var color = _ref.color,
|
|
12855
|
+
isMobile = _ref.isMobile;
|
|
12841
12856
|
return /*#__PURE__*/React__default.createElement(SpinnerContainer$1, null, /*#__PURE__*/React__default.createElement(SpinnerIconWrapper$1, {
|
|
12842
12857
|
initialPose: "fixed",
|
|
12843
12858
|
pose: "rotate"
|
|
12844
12859
|
}, /*#__PURE__*/React__default.createElement(SpinnerIcon, {
|
|
12860
|
+
color: color,
|
|
12845
12861
|
isMobile: isMobile
|
|
12846
12862
|
})));
|
|
12847
12863
|
};
|
|
@@ -12872,6 +12888,8 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12872
12888
|
textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
|
|
12873
12889
|
_ref2$isLoading = _ref2.isLoading,
|
|
12874
12890
|
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
12891
|
+
_ref2$loadingColor = _ref2.loadingColor,
|
|
12892
|
+
loadingColor = _ref2$loadingColor === void 0 ? "white" : _ref2$loadingColor,
|
|
12875
12893
|
_ref2$dataQa = _ref2.dataQa,
|
|
12876
12894
|
dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
|
|
12877
12895
|
textExtraStyles = _ref2.textExtraStyles,
|
|
@@ -12910,6 +12928,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12910
12928
|
}, rest), contentOverride ? children : /*#__PURE__*/React__default.createElement(Center, {
|
|
12911
12929
|
intrinsic: true
|
|
12912
12930
|
}, isLoading ? /*#__PURE__*/React__default.createElement(Spinner, {
|
|
12931
|
+
color: loadingColor,
|
|
12913
12932
|
isMobile: isMobile
|
|
12914
12933
|
}) : /*#__PURE__*/React__default.createElement(Text$1, {
|
|
12915
12934
|
weight: themeValues.fontWeight,
|
|
@@ -13807,6 +13826,35 @@ var BankIcon = function BankIcon() {
|
|
|
13807
13826
|
}));
|
|
13808
13827
|
};
|
|
13809
13828
|
|
|
13829
|
+
var BankIconLarge = function BankIconLarge(_ref) {
|
|
13830
|
+
var _ref$iconIndex = _ref.iconIndex,
|
|
13831
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
13832
|
+
var id = "BankIconLarge-".concat(iconIndex);
|
|
13833
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
13834
|
+
width: "36",
|
|
13835
|
+
height: "24",
|
|
13836
|
+
viewBox: "0 0 36 24",
|
|
13837
|
+
fill: "none",
|
|
13838
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13839
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
13840
|
+
clipPath: "url(#".concat(id, ")")
|
|
13841
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
13842
|
+
d: "M0 3C0 1.34315 1.34315 0 3 0H33C34.6569 0 36 1.34315 36 3V21C36 22.6569 34.6569 24 33 24H3C1.34315 24 0 22.6569 0 21V3Z",
|
|
13843
|
+
fill: "#E4F4FD"
|
|
13844
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
13845
|
+
fillRule: "evenodd",
|
|
13846
|
+
clipRule: "evenodd",
|
|
13847
|
+
d: "M33 1.5H3C2.17157 1.5 1.5 2.17157 1.5 3V21C1.5 21.8284 2.17157 22.5 3 22.5H33C33.8284 22.5 34.5 21.8284 34.5 21V3C34.5 2.17157 33.8284 1.5 33 1.5ZM3 0C1.34315 0 0 1.34315 0 3V21C0 22.6569 1.34315 24 3 24H33C34.6569 24 36 22.6569 36 21V3C36 1.34315 34.6569 0 33 0H3ZM23.7544 14.8335C23.6706 14.9563 23.6209 15.1293 23.6209 15.3332C23.6209 15.5465 23.5436 15.7411 23.4165 15.8885C23.349 15.9671 23.2696 16.0296 23.1834 16.0752C23.0922 16.1237 22.9909 16.1546 22.8836 16.1637C22.6961 16.1799 22.5022 16.1282 22.3391 16.0029C21.4102 15.2896 20.6945 14.8834 20.1572 14.6767C19.6165 14.4687 19.3143 14.4844 19.17 14.5249C18.988 14.576 18.7994 14.7857 18.7994 15.3332C18.7994 15.7935 18.4397 16.1665 17.9959 16.1665C17.5521 16.1665 17.1923 15.7935 17.1923 15.3332C17.1923 14.5422 17.4859 13.2709 18.7503 12.9161C19.3292 12.7536 19.9913 12.8352 20.7162 13.1141C21.2068 13.3028 21.7532 13.592 22.3632 13.9954C22.3882 13.9532 22.4147 13.9115 22.4428 13.8703C22.7715 13.3891 23.2775 13.0439 23.9432 12.9038C25.2058 12.6381 27.0336 13.1058 29.636 14.6047C30.024 14.8281 30.1638 15.3354 29.9483 15.7378C29.7329 16.1401 29.2437 16.2852 28.8557 16.0617C26.3153 14.5986 24.9289 14.397 24.2629 14.5371C23.9643 14.5999 23.8275 14.7265 23.7544 14.8335ZM26.8351 8.66659C26.8351 9.12683 26.4754 9.49992 26.0316 9.49992H17.996C17.5522 9.49992 17.1924 9.12683 17.1924 8.66659C17.1924 8.20636 17.5522 7.83327 17.996 7.83327H26.0316C26.4754 7.83327 26.8351 8.20636 26.8351 8.66659ZM8.81666 5.33333H10.8382C10.9311 5.33333 11.0201 5.37159 11.0858 5.43968C11.1514 5.50777 11.1883 5.60012 11.1883 5.69642V6.76975C11.9563 6.96326 12.6887 7.3019 13.3469 7.77398C13.4195 7.83002 13.4679 7.91348 13.4816 8.00627C13.4953 8.09906 13.4731 8.1937 13.42 8.26967L12.4001 9.76307C12.3498 9.84051 12.2725 9.89466 12.1844 9.9141C12.0964 9.93354 12.0045 9.91674 11.9282 9.86726C11.166 9.34181 10.2765 9.04965 9.36164 9.02426C8.67662 9.02426 8.34171 9.31157 8.34171 9.70308V9.73465C8.34171 10.2177 8.69184 10.4293 10.1167 10.7608C12.4427 11.288 13.898 12.071 13.898 14.0475V14.0759C13.898 15.789 12.8604 16.9502 11.1944 17.3552V18.3508C11.1944 18.3931 11.1862 18.4349 11.1704 18.4739C11.1545 18.5128 11.1312 18.548 11.102 18.5775C11.0728 18.6069 11.0381 18.63 11.0001 18.6453C10.9621 18.6606 10.9215 18.6678 10.8808 18.6665H8.77705C8.6963 18.6665 8.61885 18.6333 8.56175 18.5741C8.50466 18.5148 8.4726 18.4345 8.4726 18.3508V17.4163C7.31992 17.2199 6.22353 16.7352 5.28198 15.9955C5.24358 15.966 5.21155 15.9285 5.18791 15.8854C5.16427 15.8423 5.14954 15.7946 5.14467 15.7453C5.1398 15.696 5.1449 15.6462 5.15963 15.599C5.17436 15.5519 5.1984 15.5084 5.23023 15.4714L6.36278 14.0728C6.41845 14.0015 6.49805 13.9548 6.58558 13.9419C6.67311 13.929 6.76211 13.9509 6.83469 14.0033C7.71463 14.685 8.78089 15.0588 9.87921 15.0704C10.6495 15.0704 11.0544 14.7989 11.0544 14.3474V14.3159C11.0544 13.8644 10.7225 13.637 9.32511 13.2929C7.16045 12.7783 5.489 12.1468 5.489 9.99039V9.95881C5.489 8.27314 6.59751 6.98782 8.46654 6.66335V5.69642C8.46654 5.60012 8.50342 5.50777 8.56908 5.43968C8.63474 5.37159 8.7238 5.33333 8.81666 5.33333Z",
|
|
13848
|
+
fill: "#15749D"
|
|
13849
|
+
})), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
|
|
13850
|
+
id: id
|
|
13851
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
13852
|
+
width: "36",
|
|
13853
|
+
height: "24",
|
|
13854
|
+
fill: "white"
|
|
13855
|
+
}))));
|
|
13856
|
+
};
|
|
13857
|
+
|
|
13810
13858
|
var GenericCard = function GenericCard() {
|
|
13811
13859
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
13812
13860
|
width: "28",
|
|
@@ -16499,6 +16547,736 @@ var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
|
16499
16547
|
|
|
16500
16548
|
var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$2, "primary");
|
|
16501
16549
|
|
|
16550
|
+
var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
|
|
16551
|
+
var _ref$color = _ref.color,
|
|
16552
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16553
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16554
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16555
|
+
var id = "ChargebackIconSmall-".concat(iconIndex);
|
|
16556
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16557
|
+
width: "20",
|
|
16558
|
+
height: "20",
|
|
16559
|
+
viewBox: "0 0 20 20",
|
|
16560
|
+
fill: "none",
|
|
16561
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16562
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16563
|
+
cx: "10",
|
|
16564
|
+
cy: "10",
|
|
16565
|
+
r: "10",
|
|
16566
|
+
fill: color
|
|
16567
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16568
|
+
id: id,
|
|
16569
|
+
style: {
|
|
16570
|
+
maskType: "luminance"
|
|
16571
|
+
},
|
|
16572
|
+
maskUnits: "userSpaceOnUse",
|
|
16573
|
+
x: "2",
|
|
16574
|
+
y: "5",
|
|
16575
|
+
width: "15",
|
|
16576
|
+
height: "10"
|
|
16577
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16578
|
+
fillRule: "evenodd",
|
|
16579
|
+
clipRule: "evenodd",
|
|
16580
|
+
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",
|
|
16581
|
+
fill: "white"
|
|
16582
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16583
|
+
mask: "url(#".concat(id, ")")
|
|
16584
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16585
|
+
x: "2.5",
|
|
16586
|
+
y: "2.5",
|
|
16587
|
+
width: "15",
|
|
16588
|
+
height: "15",
|
|
16589
|
+
fill: "white"
|
|
16590
|
+
})));
|
|
16591
|
+
};
|
|
16592
|
+
|
|
16593
|
+
var ChargebackReversalIconSmall = function ChargebackReversalIconSmall(_ref) {
|
|
16594
|
+
var _ref$color = _ref.color,
|
|
16595
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16596
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16597
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16598
|
+
var id = "ChargebackReversalIconSmall-".concat(iconIndex);
|
|
16599
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16600
|
+
width: "20",
|
|
16601
|
+
height: "20",
|
|
16602
|
+
viewBox: "0 0 20 20",
|
|
16603
|
+
fill: "none",
|
|
16604
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16605
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16606
|
+
cx: "10",
|
|
16607
|
+
cy: "10",
|
|
16608
|
+
r: "10",
|
|
16609
|
+
fill: color
|
|
16610
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16611
|
+
id: id,
|
|
16612
|
+
style: {
|
|
16613
|
+
maskType: "luminance"
|
|
16614
|
+
},
|
|
16615
|
+
maskUnits: "userSpaceOnUse",
|
|
16616
|
+
x: "4",
|
|
16617
|
+
y: "5",
|
|
16618
|
+
width: "14",
|
|
16619
|
+
height: "10"
|
|
16620
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16621
|
+
fillRule: "evenodd",
|
|
16622
|
+
clipRule: "evenodd",
|
|
16623
|
+
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",
|
|
16624
|
+
fill: "white"
|
|
16625
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16626
|
+
mask: "url(#".concat(id, ")")
|
|
16627
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16628
|
+
x: "2.5",
|
|
16629
|
+
y: "2.5",
|
|
16630
|
+
width: "15",
|
|
16631
|
+
height: "15",
|
|
16632
|
+
fill: "white"
|
|
16633
|
+
})));
|
|
16634
|
+
};
|
|
16635
|
+
|
|
16636
|
+
var RefundIconSmall = function RefundIconSmall(_ref) {
|
|
16637
|
+
var _ref$color = _ref.color,
|
|
16638
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16639
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16640
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16641
|
+
var id = "RefundIconSmall-".concat(iconIndex);
|
|
16642
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16643
|
+
width: "20",
|
|
16644
|
+
height: "20",
|
|
16645
|
+
viewBox: "0 0 20 20",
|
|
16646
|
+
fill: "none",
|
|
16647
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16648
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16649
|
+
cx: "10",
|
|
16650
|
+
cy: "10",
|
|
16651
|
+
r: "10",
|
|
16652
|
+
fill: color
|
|
16653
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16654
|
+
fillRule: "evenodd",
|
|
16655
|
+
clipRule: "evenodd",
|
|
16656
|
+
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",
|
|
16657
|
+
fill: "white"
|
|
16658
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16659
|
+
id: id,
|
|
16660
|
+
style: {
|
|
16661
|
+
maskType: "luminance"
|
|
16662
|
+
},
|
|
16663
|
+
maskUnits: "userSpaceOnUse",
|
|
16664
|
+
x: "4",
|
|
16665
|
+
y: "5",
|
|
16666
|
+
width: "11",
|
|
16667
|
+
height: "10"
|
|
16668
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16669
|
+
fillRule: "evenodd",
|
|
16670
|
+
clipRule: "evenodd",
|
|
16671
|
+
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",
|
|
16672
|
+
fill: "white"
|
|
16673
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16674
|
+
mask: "url(#".concat(id, ")")
|
|
16675
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16676
|
+
x: "2.5",
|
|
16677
|
+
y: "2.5",
|
|
16678
|
+
width: "15",
|
|
16679
|
+
height: "15",
|
|
16680
|
+
fill: "white"
|
|
16681
|
+
})));
|
|
16682
|
+
};
|
|
16683
|
+
|
|
16684
|
+
var XCircleIconSmall = function XCircleIconSmall(_ref) {
|
|
16685
|
+
var _ref$color = _ref.color,
|
|
16686
|
+
color = _ref$color === void 0 ? "#D11053" : _ref$color,
|
|
16687
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16688
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16689
|
+
var id = "XCircleIconSmall-".concat(iconIndex);
|
|
16690
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16691
|
+
width: "21",
|
|
16692
|
+
height: "20",
|
|
16693
|
+
viewBox: "0 0 21 20",
|
|
16694
|
+
fill: "none",
|
|
16695
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16696
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16697
|
+
cx: "10.5",
|
|
16698
|
+
cy: "10",
|
|
16699
|
+
r: "10",
|
|
16700
|
+
fill: color
|
|
16701
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16702
|
+
fillRule: "evenodd",
|
|
16703
|
+
clipRule: "evenodd",
|
|
16704
|
+
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",
|
|
16705
|
+
fill: "white"
|
|
16706
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16707
|
+
id: id,
|
|
16708
|
+
style: {
|
|
16709
|
+
maskType: "luminance"
|
|
16710
|
+
},
|
|
16711
|
+
maskUnits: "userSpaceOnUse",
|
|
16712
|
+
x: "6",
|
|
16713
|
+
y: "6",
|
|
16714
|
+
width: "9",
|
|
16715
|
+
height: "8"
|
|
16716
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16717
|
+
fillRule: "evenodd",
|
|
16718
|
+
clipRule: "evenodd",
|
|
16719
|
+
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",
|
|
16720
|
+
fill: "white"
|
|
16721
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16722
|
+
mask: "url(#".concat(id, ")")
|
|
16723
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16724
|
+
d: "M0.5 0H20.5V20H0.5V0Z",
|
|
16725
|
+
fill: "white"
|
|
16726
|
+
})));
|
|
16727
|
+
};
|
|
16728
|
+
|
|
16729
|
+
var SuccessfulIconSmall = function SuccessfulIconSmall(_ref) {
|
|
16730
|
+
var _ref$iconIndex = _ref.iconIndex,
|
|
16731
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16732
|
+
var mask0ID = "SuccessfulIconSmall-mask0-".concat(iconIndex);
|
|
16733
|
+
var mask1ID = "SuccessfulIconSmall-mask1-".concat(iconIndex);
|
|
16734
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16735
|
+
width: "20",
|
|
16736
|
+
height: "20",
|
|
16737
|
+
viewBox: "0 0 20 20",
|
|
16738
|
+
fill: "none",
|
|
16739
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16740
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16741
|
+
cx: "10",
|
|
16742
|
+
cy: "10",
|
|
16743
|
+
r: "10",
|
|
16744
|
+
fill: "#317D4F"
|
|
16745
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16746
|
+
id: mask0ID,
|
|
16747
|
+
style: {
|
|
16748
|
+
maskType: "luminance"
|
|
16749
|
+
},
|
|
16750
|
+
maskUnits: "userSpaceOnUse",
|
|
16751
|
+
x: "0",
|
|
16752
|
+
y: "0",
|
|
16753
|
+
width: "20",
|
|
16754
|
+
height: "20"
|
|
16755
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16756
|
+
cx: "10",
|
|
16757
|
+
cy: "10",
|
|
16758
|
+
r: "10",
|
|
16759
|
+
fill: "white"
|
|
16760
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16761
|
+
mask: "url(#".concat(mask0ID, ")")
|
|
16762
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16763
|
+
fillRule: "evenodd",
|
|
16764
|
+
clipRule: "evenodd",
|
|
16765
|
+
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",
|
|
16766
|
+
fill: "white"
|
|
16767
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16768
|
+
id: mask1ID,
|
|
16769
|
+
style: {
|
|
16770
|
+
maskType: "luminance"
|
|
16771
|
+
},
|
|
16772
|
+
maskUnits: "userSpaceOnUse",
|
|
16773
|
+
x: "5",
|
|
16774
|
+
y: "6",
|
|
16775
|
+
width: "11",
|
|
16776
|
+
height: "8"
|
|
16777
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16778
|
+
fillRule: "evenodd",
|
|
16779
|
+
clipRule: "evenodd",
|
|
16780
|
+
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",
|
|
16781
|
+
fill: "white"
|
|
16782
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16783
|
+
mask: "url(#".concat(mask1ID, ")")
|
|
16784
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16785
|
+
x: "1.66669",
|
|
16786
|
+
y: "1.66666",
|
|
16787
|
+
width: "16.6667",
|
|
16788
|
+
height: "16.6667",
|
|
16789
|
+
fill: "white"
|
|
16790
|
+
}))));
|
|
16791
|
+
};
|
|
16792
|
+
|
|
16793
|
+
var ArrowLeftCircleIconSmall = function ArrowLeftCircleIconSmall(_ref) {
|
|
16794
|
+
var _ref$color = _ref.color,
|
|
16795
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16796
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16797
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16798
|
+
var id = "ArrowLeftCircleIconSmall-".concat(iconIndex);
|
|
16799
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16800
|
+
width: "20",
|
|
16801
|
+
height: "20",
|
|
16802
|
+
viewBox: "0 0 20 20",
|
|
16803
|
+
fill: "none",
|
|
16804
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16805
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16806
|
+
cx: "10",
|
|
16807
|
+
cy: "10",
|
|
16808
|
+
r: "10",
|
|
16809
|
+
fill: color
|
|
16810
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16811
|
+
fillRule: "evenodd",
|
|
16812
|
+
clipRule: "evenodd",
|
|
16813
|
+
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",
|
|
16814
|
+
fill: "white"
|
|
16815
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16816
|
+
id: id,
|
|
16817
|
+
style: {
|
|
16818
|
+
maskType: "luminance"
|
|
16819
|
+
},
|
|
16820
|
+
maskUnits: "userSpaceOnUse",
|
|
16821
|
+
x: "5",
|
|
16822
|
+
y: "5",
|
|
16823
|
+
width: "10",
|
|
16824
|
+
height: "10"
|
|
16825
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16826
|
+
fillRule: "evenodd",
|
|
16827
|
+
clipRule: "evenodd",
|
|
16828
|
+
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",
|
|
16829
|
+
fill: "white"
|
|
16830
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16831
|
+
mask: "url(#".concat(id, ")")
|
|
16832
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16833
|
+
x: "17.5",
|
|
16834
|
+
y: "17.5",
|
|
16835
|
+
width: "15",
|
|
16836
|
+
height: "15",
|
|
16837
|
+
transform: "rotate(180 17.5 17.5)",
|
|
16838
|
+
fill: "white"
|
|
16839
|
+
})));
|
|
16840
|
+
};
|
|
16841
|
+
|
|
16842
|
+
var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
|
|
16843
|
+
var _ref$color = _ref.color,
|
|
16844
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16845
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16846
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16847
|
+
var id = "ArrowRightCircleIconSmall-".concat(iconIndex);
|
|
16848
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16849
|
+
width: "20",
|
|
16850
|
+
height: "20",
|
|
16851
|
+
viewBox: "0 0 20 20",
|
|
16852
|
+
fill: "none",
|
|
16853
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16854
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16855
|
+
cx: "10",
|
|
16856
|
+
cy: "10",
|
|
16857
|
+
r: "10",
|
|
16858
|
+
fill: color
|
|
16859
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16860
|
+
fillRule: "evenodd",
|
|
16861
|
+
clipRule: "evenodd",
|
|
16862
|
+
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",
|
|
16863
|
+
fill: "white"
|
|
16864
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16865
|
+
id: id,
|
|
16866
|
+
style: {
|
|
16867
|
+
maskType: "luminance"
|
|
16868
|
+
},
|
|
16869
|
+
maskUnits: "userSpaceOnUse",
|
|
16870
|
+
x: "5",
|
|
16871
|
+
y: "5",
|
|
16872
|
+
width: "10",
|
|
16873
|
+
height: "10"
|
|
16874
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16875
|
+
fillRule: "evenodd",
|
|
16876
|
+
clipRule: "evenodd",
|
|
16877
|
+
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",
|
|
16878
|
+
fill: "white"
|
|
16879
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16880
|
+
mask: "url(#".concat(id, ")")
|
|
16881
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16882
|
+
x: "2.5",
|
|
16883
|
+
y: "2.5",
|
|
16884
|
+
width: "15",
|
|
16885
|
+
height: "15",
|
|
16886
|
+
fill: "white"
|
|
16887
|
+
})));
|
|
16888
|
+
};
|
|
16889
|
+
|
|
16890
|
+
var ArrowUpCircleIconSmall = function ArrowUpCircleIconSmall(_ref) {
|
|
16891
|
+
var _ref$color = _ref.color,
|
|
16892
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16893
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16894
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16895
|
+
var id = "ArrowUpCircleIconSmall-".concat(iconIndex);
|
|
16896
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16897
|
+
width: "20",
|
|
16898
|
+
height: "20",
|
|
16899
|
+
viewBox: "0 0 20 20",
|
|
16900
|
+
fill: "none",
|
|
16901
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16902
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16903
|
+
cx: "10",
|
|
16904
|
+
cy: "10",
|
|
16905
|
+
r: "10",
|
|
16906
|
+
fill: color
|
|
16907
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16908
|
+
fillRule: "evenodd",
|
|
16909
|
+
clipRule: "evenodd",
|
|
16910
|
+
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",
|
|
16911
|
+
fill: "white"
|
|
16912
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16913
|
+
id: id,
|
|
16914
|
+
style: {
|
|
16915
|
+
maskType: "luminance"
|
|
16916
|
+
},
|
|
16917
|
+
maskUnits: "userSpaceOnUse",
|
|
16918
|
+
x: "5",
|
|
16919
|
+
y: "5",
|
|
16920
|
+
width: "10",
|
|
16921
|
+
height: "10"
|
|
16922
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16923
|
+
fillRule: "evenodd",
|
|
16924
|
+
clipRule: "evenodd",
|
|
16925
|
+
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",
|
|
16926
|
+
fill: "white"
|
|
16927
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16928
|
+
mask: "url(#".concat(id, ")")
|
|
16929
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16930
|
+
x: "2.5",
|
|
16931
|
+
y: "17.5",
|
|
16932
|
+
width: "15",
|
|
16933
|
+
height: "15",
|
|
16934
|
+
transform: "rotate(-90 2.5 17.5)",
|
|
16935
|
+
fill: "white"
|
|
16936
|
+
})));
|
|
16937
|
+
};
|
|
16938
|
+
|
|
16939
|
+
var ArrowDownCircleIconSmall = function ArrowDownCircleIconSmall(_ref) {
|
|
16940
|
+
var _ref$color = _ref.color,
|
|
16941
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
16942
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
16943
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16944
|
+
var id = "ArrowDownCircleIconSmall-".concat(iconIndex);
|
|
16945
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16946
|
+
width: "20",
|
|
16947
|
+
height: "20",
|
|
16948
|
+
viewBox: "0 0 20 20",
|
|
16949
|
+
fill: "none",
|
|
16950
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16951
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
16952
|
+
cx: "10",
|
|
16953
|
+
cy: "10",
|
|
16954
|
+
r: "10",
|
|
16955
|
+
fill: color
|
|
16956
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16957
|
+
fillRule: "evenodd",
|
|
16958
|
+
clipRule: "evenodd",
|
|
16959
|
+
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",
|
|
16960
|
+
fill: "white"
|
|
16961
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16962
|
+
id: id,
|
|
16963
|
+
style: {
|
|
16964
|
+
maskType: "luminance"
|
|
16965
|
+
},
|
|
16966
|
+
maskUnits: "userSpaceOnUse",
|
|
16967
|
+
x: "5",
|
|
16968
|
+
y: "5",
|
|
16969
|
+
width: "10",
|
|
16970
|
+
height: "10"
|
|
16971
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16972
|
+
fillRule: "evenodd",
|
|
16973
|
+
clipRule: "evenodd",
|
|
16974
|
+
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",
|
|
16975
|
+
fill: "white"
|
|
16976
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16977
|
+
mask: "url(#".concat(id, ")")
|
|
16978
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16979
|
+
x: "17.6976",
|
|
16980
|
+
y: "2.5",
|
|
16981
|
+
width: "15",
|
|
16982
|
+
height: "15",
|
|
16983
|
+
transform: "rotate(90 17.6976 2.5)",
|
|
16984
|
+
fill: "white"
|
|
16985
|
+
})));
|
|
16986
|
+
};
|
|
16987
|
+
|
|
16988
|
+
var SuccessfulIconMedium = function SuccessfulIconMedium(_ref) {
|
|
16989
|
+
var _ref$iconIndex = _ref.iconIndex,
|
|
16990
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
16991
|
+
var mask0ID = "SuccessfulIconMedium-mask0-".concat(iconIndex);
|
|
16992
|
+
var mask1ID = "SuccessfulIconMedium-mask1-".concat(iconIndex);
|
|
16993
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16994
|
+
width: "24",
|
|
16995
|
+
height: "24",
|
|
16996
|
+
viewBox: "0 0 24 24",
|
|
16997
|
+
fill: "none",
|
|
16998
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16999
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17000
|
+
cx: "12",
|
|
17001
|
+
cy: "12",
|
|
17002
|
+
r: "12",
|
|
17003
|
+
fill: "#317D4F"
|
|
17004
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17005
|
+
id: mask0ID,
|
|
17006
|
+
style: {
|
|
17007
|
+
maskType: "luminance"
|
|
17008
|
+
},
|
|
17009
|
+
maskUnits: "userSpaceOnUse",
|
|
17010
|
+
x: "0",
|
|
17011
|
+
y: "0",
|
|
17012
|
+
width: "24",
|
|
17013
|
+
height: "24"
|
|
17014
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17015
|
+
cx: "12",
|
|
17016
|
+
cy: "12",
|
|
17017
|
+
r: "12",
|
|
17018
|
+
fill: "white"
|
|
17019
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17020
|
+
mask: "url(#".concat(mask0ID, ")")
|
|
17021
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17022
|
+
fillRule: "evenodd",
|
|
17023
|
+
clipRule: "evenodd",
|
|
17024
|
+
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",
|
|
17025
|
+
fill: "white"
|
|
17026
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17027
|
+
id: mask1ID,
|
|
17028
|
+
style: {
|
|
17029
|
+
maskType: "luminance"
|
|
17030
|
+
},
|
|
17031
|
+
maskUnits: "userSpaceOnUse",
|
|
17032
|
+
x: "6",
|
|
17033
|
+
y: "7",
|
|
17034
|
+
width: "13",
|
|
17035
|
+
height: "10"
|
|
17036
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17037
|
+
fillRule: "evenodd",
|
|
17038
|
+
clipRule: "evenodd",
|
|
17039
|
+
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",
|
|
17040
|
+
fill: "white"
|
|
17041
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17042
|
+
mask: "url(#".concat(mask1ID, ")")
|
|
17043
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17044
|
+
x: "2",
|
|
17045
|
+
y: "2",
|
|
17046
|
+
width: "20",
|
|
17047
|
+
height: "20",
|
|
17048
|
+
fill: "white"
|
|
17049
|
+
}))));
|
|
17050
|
+
};
|
|
17051
|
+
|
|
17052
|
+
var XCircleIconMedium = function XCircleIconMedium(_ref) {
|
|
17053
|
+
var _ref$color = _ref.color,
|
|
17054
|
+
color = _ref$color === void 0 ? "#D11053" : _ref$color,
|
|
17055
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
17056
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
17057
|
+
var id = "XCircleIconMedium-".concat(iconIndex);
|
|
17058
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17059
|
+
width: "24",
|
|
17060
|
+
height: "24",
|
|
17061
|
+
viewBox: "0 0 24 24",
|
|
17062
|
+
fill: "none",
|
|
17063
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17064
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17065
|
+
cx: "12",
|
|
17066
|
+
cy: "12",
|
|
17067
|
+
r: "12",
|
|
17068
|
+
fill: color
|
|
17069
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17070
|
+
fillRule: "evenodd",
|
|
17071
|
+
clipRule: "evenodd",
|
|
17072
|
+
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",
|
|
17073
|
+
fill: "white"
|
|
17074
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17075
|
+
id: id,
|
|
17076
|
+
style: {
|
|
17077
|
+
maskType: "luminance"
|
|
17078
|
+
},
|
|
17079
|
+
maskUnits: "userSpaceOnUse",
|
|
17080
|
+
x: "7",
|
|
17081
|
+
y: "7",
|
|
17082
|
+
width: "10",
|
|
17083
|
+
height: "10"
|
|
17084
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17085
|
+
fillRule: "evenodd",
|
|
17086
|
+
clipRule: "evenodd",
|
|
17087
|
+
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",
|
|
17088
|
+
fill: "white"
|
|
17089
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17090
|
+
mask: "url(#".concat(id, ")")
|
|
17091
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17092
|
+
d: "M0 0H24V24H0V0Z",
|
|
17093
|
+
fill: "white"
|
|
17094
|
+
})));
|
|
17095
|
+
};
|
|
17096
|
+
|
|
17097
|
+
var RefundIconMedium = function RefundIconMedium(_ref) {
|
|
17098
|
+
var _ref$color = _ref.color,
|
|
17099
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
17100
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
17101
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
17102
|
+
var id = "RefundIconMedium-".concat(iconIndex);
|
|
17103
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17104
|
+
width: "24",
|
|
17105
|
+
height: "24",
|
|
17106
|
+
viewBox: "0 0 24 24",
|
|
17107
|
+
fill: "none",
|
|
17108
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17109
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17110
|
+
cx: "12",
|
|
17111
|
+
cy: "12",
|
|
17112
|
+
r: "12",
|
|
17113
|
+
fill: color
|
|
17114
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17115
|
+
fillRule: "evenodd",
|
|
17116
|
+
clipRule: "evenodd",
|
|
17117
|
+
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",
|
|
17118
|
+
fill: "white"
|
|
17119
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17120
|
+
id: id,
|
|
17121
|
+
style: {
|
|
17122
|
+
maskType: "luminance"
|
|
17123
|
+
},
|
|
17124
|
+
maskUnits: "userSpaceOnUse",
|
|
17125
|
+
x: "5",
|
|
17126
|
+
y: "6",
|
|
17127
|
+
width: "13",
|
|
17128
|
+
height: "12"
|
|
17129
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17130
|
+
fillRule: "evenodd",
|
|
17131
|
+
clipRule: "evenodd",
|
|
17132
|
+
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",
|
|
17133
|
+
fill: "white"
|
|
17134
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17135
|
+
mask: "url(#".concat(id, ")")
|
|
17136
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17137
|
+
x: "3",
|
|
17138
|
+
y: "3",
|
|
17139
|
+
width: "18",
|
|
17140
|
+
height: "18",
|
|
17141
|
+
fill: "white"
|
|
17142
|
+
})));
|
|
17143
|
+
};
|
|
17144
|
+
|
|
17145
|
+
var ArrowLeftCircleIconMedium = function ArrowLeftCircleIconMedium(_ref) {
|
|
17146
|
+
var _ref$color = _ref.color,
|
|
17147
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
17148
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
17149
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
17150
|
+
var id = "ArrowLeftCircleIconMedium-".concat(iconIndex);
|
|
17151
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17152
|
+
width: "24",
|
|
17153
|
+
height: "24",
|
|
17154
|
+
viewBox: "0 0 24 24",
|
|
17155
|
+
fill: "none",
|
|
17156
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17157
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17158
|
+
cx: "12",
|
|
17159
|
+
cy: "12",
|
|
17160
|
+
r: "12",
|
|
17161
|
+
fill: color
|
|
17162
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17163
|
+
fillRule: "evenodd",
|
|
17164
|
+
clipRule: "evenodd",
|
|
17165
|
+
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",
|
|
17166
|
+
fill: "white"
|
|
17167
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17168
|
+
id: id,
|
|
17169
|
+
style: {
|
|
17170
|
+
maskType: "luminance"
|
|
17171
|
+
},
|
|
17172
|
+
maskUnits: "userSpaceOnUse",
|
|
17173
|
+
x: "6",
|
|
17174
|
+
y: "6",
|
|
17175
|
+
width: "12",
|
|
17176
|
+
height: "12"
|
|
17177
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17178
|
+
fillRule: "evenodd",
|
|
17179
|
+
clipRule: "evenodd",
|
|
17180
|
+
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",
|
|
17181
|
+
fill: "white"
|
|
17182
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17183
|
+
mask: "url(#".concat(id, ")")
|
|
17184
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17185
|
+
x: "21",
|
|
17186
|
+
y: "21",
|
|
17187
|
+
width: "18",
|
|
17188
|
+
height: "18",
|
|
17189
|
+
transform: "rotate(180 21 21)",
|
|
17190
|
+
fill: "white"
|
|
17191
|
+
})));
|
|
17192
|
+
};
|
|
17193
|
+
|
|
17194
|
+
var ChargebackIconMedium = function ChargebackIconMedium(_ref) {
|
|
17195
|
+
var _ref$color = _ref.color,
|
|
17196
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
17197
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
17198
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
17199
|
+
var id = "ChargebackIconMedium-".concat(iconIndex);
|
|
17200
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17201
|
+
width: "24",
|
|
17202
|
+
height: "24",
|
|
17203
|
+
viewBox: "0 0 24 24",
|
|
17204
|
+
fill: "none",
|
|
17205
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17206
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17207
|
+
cx: "12",
|
|
17208
|
+
cy: "12",
|
|
17209
|
+
r: "12",
|
|
17210
|
+
fill: color
|
|
17211
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17212
|
+
id: id,
|
|
17213
|
+
style: {
|
|
17214
|
+
maskType: "luminance"
|
|
17215
|
+
},
|
|
17216
|
+
maskUnits: "userSpaceOnUse",
|
|
17217
|
+
x: "3",
|
|
17218
|
+
y: "7",
|
|
17219
|
+
width: "17",
|
|
17220
|
+
height: "10"
|
|
17221
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17222
|
+
fillRule: "evenodd",
|
|
17223
|
+
clipRule: "evenodd",
|
|
17224
|
+
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",
|
|
17225
|
+
fill: "white"
|
|
17226
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17227
|
+
mask: "url(#".concat(id, ")")
|
|
17228
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17229
|
+
x: "3",
|
|
17230
|
+
y: "3",
|
|
17231
|
+
width: "18",
|
|
17232
|
+
height: "18",
|
|
17233
|
+
fill: "white"
|
|
17234
|
+
})));
|
|
17235
|
+
};
|
|
17236
|
+
|
|
17237
|
+
var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
|
|
17238
|
+
var _ref$color = _ref.color,
|
|
17239
|
+
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
17240
|
+
_ref$iconIndex = _ref.iconIndex,
|
|
17241
|
+
iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
|
|
17242
|
+
var id = "ChargebackReversalIconMedium-".concat(iconIndex);
|
|
17243
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17244
|
+
width: "24",
|
|
17245
|
+
height: "24",
|
|
17246
|
+
viewBox: "0 0 24 24",
|
|
17247
|
+
fill: "none",
|
|
17248
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
17249
|
+
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17250
|
+
cx: "12",
|
|
17251
|
+
cy: "12",
|
|
17252
|
+
r: "12",
|
|
17253
|
+
fill: color
|
|
17254
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17255
|
+
id: id,
|
|
17256
|
+
style: {
|
|
17257
|
+
maskType: "luminance"
|
|
17258
|
+
},
|
|
17259
|
+
maskUnits: "userSpaceOnUse",
|
|
17260
|
+
x: "5",
|
|
17261
|
+
y: "7",
|
|
17262
|
+
width: "16",
|
|
17263
|
+
height: "10"
|
|
17264
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17265
|
+
fillRule: "evenodd",
|
|
17266
|
+
clipRule: "evenodd",
|
|
17267
|
+
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",
|
|
17268
|
+
fill: "white"
|
|
17269
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17270
|
+
mask: "url(#".concat(id, ")")
|
|
17271
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17272
|
+
x: "3",
|
|
17273
|
+
y: "3",
|
|
17274
|
+
width: "18",
|
|
17275
|
+
height: "18",
|
|
17276
|
+
fill: "white"
|
|
17277
|
+
})));
|
|
17278
|
+
};
|
|
17279
|
+
|
|
16502
17280
|
var color$2 = "#15749D";
|
|
16503
17281
|
var hoverColor$1 = "#116285";
|
|
16504
17282
|
var activeColor$1 = "#0E506D";
|
|
@@ -25358,7 +26136,9 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
25358
26136
|
fields = _ref.fields,
|
|
25359
26137
|
actions = _ref.actions,
|
|
25360
26138
|
disabled = _ref.disabled,
|
|
25361
|
-
themeValues = _ref.themeValues
|
|
26139
|
+
themeValues = _ref.themeValues,
|
|
26140
|
+
_ref$placeholder = _ref.placeholder,
|
|
26141
|
+
placeholder = _ref$placeholder === void 0 ? "Search agencies" : _ref$placeholder;
|
|
25362
26142
|
|
|
25363
26143
|
var _useState = React.useState([]),
|
|
25364
26144
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -25389,15 +26169,15 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
25389
26169
|
padding: "1rem",
|
|
25390
26170
|
border: themeValues.border,
|
|
25391
26171
|
extraStyles: disabled && "color: #6e727e; background-color: #f7f7f7; pointer-events: none;"
|
|
25392
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
26172
|
+
}, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
25393
26173
|
errorMessages: {},
|
|
25394
26174
|
field: fields.searchTerm,
|
|
25395
26175
|
fieldActions: actions.fields.searchTerm,
|
|
25396
|
-
placeholder:
|
|
26176
|
+
placeholder: placeholder,
|
|
25397
26177
|
disabled: disabled
|
|
25398
26178
|
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
25399
|
-
padding: "0.5rem
|
|
25400
|
-
extraStyles: "overflow-y: scroll; height: 250px;"
|
|
26179
|
+
padding: "0 0 0.5rem",
|
|
26180
|
+
extraStyles: "overflow-y: scroll; max-height: 250px;"
|
|
25401
26181
|
}, /*#__PURE__*/React__default.createElement(Stack, null, itemList.map(function (value) {
|
|
25402
26182
|
var _selectedItems$find;
|
|
25403
26183
|
|
|
@@ -25413,9 +26193,9 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
25413
26193
|
},
|
|
25414
26194
|
textExtraStyles: "margin: 0;",
|
|
25415
26195
|
disabled: disabled,
|
|
25416
|
-
extraStyles: "margin: 0
|
|
26196
|
+
extraStyles: "margin: 0.5rem;"
|
|
25417
26197
|
});
|
|
25418
|
-
}))))
|
|
26198
|
+
}))));
|
|
25419
26199
|
};
|
|
25420
26200
|
|
|
25421
26201
|
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$u, "default");
|
|
@@ -48105,8 +48885,14 @@ exports.AddressForm = AddressForm;
|
|
|
48105
48885
|
exports.Alert = Alert$1;
|
|
48106
48886
|
exports.AllocatedIcon = AllocatedIcon;
|
|
48107
48887
|
exports.AmountCallout = AmountCallout$1;
|
|
48888
|
+
exports.ArrowDownCircleIconSmall = ArrowDownCircleIconSmall;
|
|
48889
|
+
exports.ArrowLeftCircleIconMedium = ArrowLeftCircleIconMedium;
|
|
48890
|
+
exports.ArrowLeftCircleIconSmall = ArrowLeftCircleIconSmall;
|
|
48891
|
+
exports.ArrowRightCircleIconSmall = ArrowRightCircleIconSmall;
|
|
48892
|
+
exports.ArrowUpCircleIconSmall = ArrowUpCircleIconSmall;
|
|
48108
48893
|
exports.AutopayOnIcon = AutopayOnIcon;
|
|
48109
48894
|
exports.BankIcon = BankIcon;
|
|
48895
|
+
exports.BankIconLarge = BankIconLarge;
|
|
48110
48896
|
exports.Banner = Banner$1;
|
|
48111
48897
|
exports.Box = Box;
|
|
48112
48898
|
exports.BoxWithShadow = BoxWithShadow$1;
|
|
@@ -48122,7 +48908,11 @@ exports.CenterSingle = CenterSingle$1;
|
|
|
48122
48908
|
exports.CenterStack = CenterStack$1;
|
|
48123
48909
|
exports.ChangePasswordForm = ChangePasswordForm;
|
|
48124
48910
|
exports.ChargebackIcon = ChargebackIcon;
|
|
48911
|
+
exports.ChargebackIconMedium = ChargebackIconMedium;
|
|
48912
|
+
exports.ChargebackIconSmall = ChargebackIconSmall;
|
|
48125
48913
|
exports.ChargebackReversalIcon = ChargebackReversalIcon;
|
|
48914
|
+
exports.ChargebackReversalIconMedium = ChargebackReversalIconMedium;
|
|
48915
|
+
exports.ChargebackReversalIconSmall = ChargebackReversalIconSmall;
|
|
48126
48916
|
exports.CheckIcon = CheckIcon;
|
|
48127
48917
|
exports.Checkbox = Checkbox$1;
|
|
48128
48918
|
exports.CheckboxList = CheckboxList$1;
|
|
@@ -48226,6 +49016,8 @@ exports.RadioGroup = RadioGroup;
|
|
|
48226
49016
|
exports.RadioSection = RadioSection$1;
|
|
48227
49017
|
exports.Reel = Reel;
|
|
48228
49018
|
exports.RefundIcon = RefundIcon;
|
|
49019
|
+
exports.RefundIconMedium = RefundIconMedium;
|
|
49020
|
+
exports.RefundIconSmall = RefundIconSmall;
|
|
48229
49021
|
exports.RegistrationForm = RegistrationForm;
|
|
48230
49022
|
exports.RejectedIcon = RejectedIcon;
|
|
48231
49023
|
exports.RejectedVelocityIcon = RejectedVelocityIcon;
|
|
@@ -48249,6 +49041,8 @@ exports.StandardCheckoutImage = StandardCheckoutImage;
|
|
|
48249
49041
|
exports.StateProvinceDropdown = FormStateDropdown;
|
|
48250
49042
|
exports.StatusUnknownIcon = StatusUnknownIcon;
|
|
48251
49043
|
exports.SuccessfulIcon = SuccessfulIcon;
|
|
49044
|
+
exports.SuccessfulIconMedium = SuccessfulIconMedium;
|
|
49045
|
+
exports.SuccessfulIconSmall = SuccessfulIconSmall;
|
|
48252
49046
|
exports.Switcher = Switcher;
|
|
48253
49047
|
exports.TabSidebar = TabSidebar$1;
|
|
48254
49048
|
exports.Table = Table_styled;
|
|
@@ -48276,6 +49070,8 @@ exports.WalletIconSmall = WalletIconSmall$1;
|
|
|
48276
49070
|
exports.WarningIconXS = WarningIconXS;
|
|
48277
49071
|
exports.WelcomeModule = WelcomeModule$1;
|
|
48278
49072
|
exports.WorkflowTile = WorkflowTile;
|
|
49073
|
+
exports.XCircleIconMedium = XCircleIconMedium;
|
|
49074
|
+
exports.XCircleIconSmall = XCircleIconSmall;
|
|
48279
49075
|
exports.cardRegistry = cardRegistry;
|
|
48280
49076
|
exports.constants = index$5;
|
|
48281
49077
|
exports.createPartialAmountFormState = createPartialAmountFormState;
|