@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
22 lines (21 loc) • 609 B
JavaScript
import { __assign } from "tslib";
import styles from '../styles';
import { theme } from '../utils';
var signInCheckout = {
signInCheckout: {
classes: '',
props: {},
style: {
alignItems: 'center',
flexDirection: 'row',
gap: theme.spacing.padding.medium,
justifyContent: 'center'
}
},
signInCheckout__button: {
classes: '',
props: {},
style: __assign(__assign({}, styles.buttonSecondary), { borderRadius: theme.spacing.borderRadius.medium, padding: 10 })
}
};
export default signInCheckout;