@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
58 lines (57 loc) • 1.21 kB
JavaScript
import { theme } from '../utils';
var signInPhone = {
signInPhone: {
classes: '',
props: {},
style: {
alignItems: 'stretch'
}
},
signInPhone__title: {
classes: '',
props: {
text: 'Sign into your account'
},
style: {}
},
signInPhone__subtitle: {
classes: '',
props: {
text: 'Please enter a 10 digit phone number.'
},
style: {}
},
signInPhone__content: {
classes: '',
props: {},
style: {
width: '100%',
alignItems: 'center',
paddingBottom: theme.spacing.padding.small
}
},
signInPhone__error: {
classes: '',
props: {},
style: {
paddingBottom: theme.spacing.padding.medium
}
},
signInPhone__input: {
classes: '',
props: {},
style: {
flexGrow: 1,
width: 400,
textAlign: 'center'
}
},
signInPhone__footer: {
classes: '',
props: {},
style: {
alignItems: 'stretch'
}
}
};
export default signInPhone;