gbc-kyc-kit 2.3.14 → 2.3.15
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/gbc-kyc-kit.es.js +9 -21
- package/dist/gbc-kyc-kit.umd.js +59 -59
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/gbc-kyc-kit.es.js
CHANGED
|
@@ -39047,28 +39047,16 @@ function BackButton({
|
|
|
39047
39047
|
action
|
|
39048
39048
|
}) {
|
|
39049
39049
|
return /* @__PURE__ */ jsx$1(Box$1, {
|
|
39050
|
-
|
|
39051
|
-
|
|
39052
|
-
|
|
39053
|
-
|
|
39054
|
-
|
|
39055
|
-
children: /* @__PURE__ */ jsx$1(MUITooltip, {
|
|
39056
|
-
arrow: true,
|
|
39057
|
-
title: "Volver",
|
|
39058
|
-
TransitionComponent: Fade$1,
|
|
39059
|
-
placement: "right",
|
|
39060
|
-
TransitionProps: {
|
|
39061
|
-
timeout: 600
|
|
39062
|
-
},
|
|
39063
|
-
sx: {
|
|
39064
|
-
mb: "20px"
|
|
39065
|
-
},
|
|
39066
|
-
style: {
|
|
39067
|
-
cursor: "pointer"
|
|
39068
|
-
},
|
|
39069
|
-
children: /* @__PURE__ */ jsx$1(ArrowBack, {
|
|
39050
|
+
className: "back-button-container",
|
|
39051
|
+
children: /* @__PURE__ */ jsxs(Box$1, {
|
|
39052
|
+
onClick: action,
|
|
39053
|
+
className: "back-button",
|
|
39054
|
+
children: [/* @__PURE__ */ jsx$1(ArrowBack, {
|
|
39070
39055
|
className: "grayscale"
|
|
39071
|
-
})
|
|
39056
|
+
}), /* @__PURE__ */ jsx$1(Typography$1, {
|
|
39057
|
+
variant: "body2",
|
|
39058
|
+
children: "Volver atras"
|
|
39059
|
+
})]
|
|
39072
39060
|
})
|
|
39073
39061
|
});
|
|
39074
39062
|
}
|