Skip to content

Commit

Permalink
refactor(public api): remove above and below functions
Browse files Browse the repository at this point in the history
BREAKING CHANGE: replace 'above' fn with 'up' and 'below' with 'down'
  • Loading branch information
mg901 committed Jan 14, 2019
1 parent ffecd5d commit ca29bcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const createOnly: CreateOnly = (breakName) => (breaks) =>
calcMaxWidthInPx(breaks, breakName),
);

export const above = createAbove;
export const below = createBelow;
export const up = createAbove;
export const down = createBelow;
export const between = createBetween;
export const only = createOnly;

0 comments on commit ca29bcc

Please sign in to comment.