6 lines
189 B
JavaScript

import theme from './theme';
export const mq = theme.breakpoints.map(bp => `@media (min-width: ${bp}px)`);
export const themeGet = (key, initial) => props => props.theme[key] || initial;