Skip to content

Commit

Permalink
fix(grid): fix type aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
alyleui committed Oct 18, 2018
1 parent 6c9658f commit 4143473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/grid/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const styles = ({
});

type Justify = 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
type Direction = 'row' | 'row-reverse' | 'column' | 'column-reverse';
type Direction = 'row' | 'rowReverse' | 'column' | 'columnReverse';

/**
* Grid container
Expand Down

0 comments on commit 4143473

Please sign in to comment.