@shopgate/engage
Version:
Shopgate's ENGAGE library.
21 lines (20 loc) • 566 B
JavaScript
import createCache from '@emotion/cache';
import { createMakeAndWithStyles, createTss } from 'tss-react';
import { useTheme } from '@shopgate/engage/styles';
export { GlobalStyles, keyframes } from 'tss-react';
export const emotionCache = createCache({
// All tss-react styles will be prefixed with `.tss-*` instead of `.css-*`
key: 'tss'
});
export const {
tss
} = createTss({
useContext: useTheme
});
// Create makeStyles and withStyles functions for tss-react package
export const {
makeStyles,
withStyles
} = createMakeAndWithStyles({
useTheme
});