@shopgate/engage
Version:
Shopgate's ENGAGE library.
18 lines • 362 B
JavaScript
import { css } from 'glamor';
import { themeConfig } from '@shopgate/pwa-common/helpers/config';
const {
colors
} = themeConfig;
const positive = css({
color: colors.shade4,
':before': {
content: '"+"'
}
}).toString();
const negative = css({
color: `var(--color-primary, ${colors.primary})`
}).toString();
export default {
positive,
negative
};