Skip to content

Commit

Permalink
Merge pull request #1933 from aaronadamsCA/patch-1
Browse files Browse the repository at this point in the history
Patch GridProps
  • Loading branch information
hasparus committed Sep 24, 2021
2 parents abba0d1 + c1ead4d commit a0be5f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/components/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,17 @@ export interface GridProps extends BoxProps {
*/
width?: ResponsiveStyleValue<string | number>
/**
* Number of columns to use for the layout (cannot be used in conjunction with the width prop)
* Number of columns to use for the layout (cannot be used in conjunction with the width prop)
*/
columns?: ResponsiveStyleValue<string | number>
/**
* Space between child elements
*/
gap?: ResponsiveStyleValue<string | number>
/**
* Auto-repeat track behaviour (default is fit)
*/
repeat?: 'fit' | 'fill'
}
/**
* CSS grid layout component to arrange direct child elements in a tiled grid layout.
Expand Down

0 comments on commit a0be5f4

Please sign in to comment.