@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
51 lines (50 loc) • 1.03 kB
JavaScript
import { theme } from '../utils';
var promoCode = {
promoCode: {
classes: '',
props: {},
style: {
alignItems: 'stretch'
}
},
promoCode__title: {
classes: '',
props: {
text: 'Enter a promo code'
},
style: {}
},
promoCode__subtitle: {
classes: '',
props: {
text: "Tap the submit button when you're all done"
},
style: {}
},
promoCode__content: {
classes: '',
props: {},
style: {
alignItems: 'stretch',
paddingBottom: theme.spacing.padding.small,
width: '100%'
}
},
promoCode__input: {
classes: '',
props: {},
style: {
flexGrow: 1,
width: 400,
textAlign: 'center'
}
},
promoCode__footer: {
classes: '',
props: {},
style: {
alignItems: 'stretch'
}
}
};
export default promoCode;