export const mediaQueries = chain(breakpoints)
  .toPairs()
  .map(([k, v]) => [`${k}Up`, `(min-width: ${v}px)`])
  .fromPairs()
  .value();