@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
31 lines (30 loc) • 754 B
JavaScript
import { __assign } from "tslib";
import styles from '../styles';
import { theme } from '../utils';
var loader = {
loader: {
classes: '',
props: {},
style: {
alignItems: 'center',
gap: theme.spacing.padding.small,
justifyContent: 'center',
width: '100%'
}
},
loader__loader: {
classes: '',
props: {},
style: {
color: theme.colors.text.primary,
width: 200,
height: 4
}
},
loader__text: {
classes: '',
props: {},
style: __assign(__assign({}, styles.textBody), { color: theme.colors.text.primary, fontSize: theme.fontSizes.medium })
}
};
export default loader;