@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
7 lines (6 loc) • 507 B
JavaScript
import { __assign } from "tslib";
import { theme } from '../utils';
import button from './buttons.json';
import text from './text.json';
var styles = __assign({ buttonPrimary: button, buttonSecondary: __assign(__assign({}, button), { backgroundColor: theme.colors.background.tertiary, borderColor: theme.colors.background.tertiary }), buttonDelete: __assign(__assign({}, button), { backgroundColor: theme.colors.error.secondary, borderColor: theme.colors.error.secondary }) }, text);
export default styles;