export type GridSpacing = 0 | 8 | 16 | 24 | 32 | 64 | 72 | 80 export type GridSize = | true | 'auto' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 export type GridJustification = | 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly' export type GridItemsAlignment = | 'flex-start' | 'center' | 'flex-end' | 'stretch' | 'baseline' export type GridDirection = 'row' | 'row-reverse' | 'column' | 'column-reverse' export type GridWrap = 'nowrap' | 'wrap' | 'wrap-reverse'