UNPKG

@palta-brain/web-sdk

Version:
27 lines 1.09 kB
import React from 'react'; export var PrimerCheckoutForm = function (props) { var onClick = function () { props.refreshOnClick(); }; return (React.createElement("div", { id: "primer-checkout-form", style: { display: 'none' } }, React.createElement("p", { style: { fontFamily: 'Arial', textAlign: 'center', fontSize: '1.25rem', fontWeight: '300', color: '#212529', } }, "Primer"), React.createElement("div", { id: "primer-checkout-container", style: { marginBottom: '10px' } }), React.createElement("button", { style: { backgroundColor: '#007bff', color: 'white', padding: '10px 20px', marginTop: '10px', border: 'none', borderRadius: '5px', cursor: 'default', marginLeft: '10px', display: 'none', }, id: "refresh", onClick: onClick }, "Refresh"))); }; //# sourceMappingURL=PrimerCheckoutForm.js.map