@blocklet/payment-react
Version:
Reusable react components for payment kit v2
25 lines (24 loc) • 672 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
module.exports = CheckoutFooter;
var _jsxRuntime = require("react/jsx-runtime");
var _material = require("@mui/material");
function CheckoutFooter(props) {
return /* @__PURE__ */(0, _jsxRuntime.jsxs)(_material.Typography, {
...props,
sx: [{
color: "text.lighter",
fontSize: 12
}, ...(Array.isArray(props.sx) ? props.sx : [props.sx])],
children: ["Powered by", " ", /* @__PURE__ */(0, _jsxRuntime.jsx)(_material.Typography, {
component: "span",
sx: {
fontWeight: "bold",
fontSize: 12
},
children: "ArcBlock"
})]
});
}