1 | import * as React from "react";
|
2 | import { ResponsiveValue, GridProps } from "styled-system";
|
3 | import { BoxProps } from "../Box";
|
4 |
|
5 | interface ISimpleGrid {
|
6 | |
7 |
|
8 |
|
9 | minChildWidth?: ResponsiveValue<React.CSSProperties["minWidth"]>;
|
10 | |
11 |
|
12 |
|
13 | columns?: ResponsiveValue<number>;
|
14 | |
15 |
|
16 |
|
17 | spacing?: GridProps["gridGap"];
|
18 | |
19 |
|
20 |
|
21 | spacingX?: GridProps["gridGap"];
|
22 | |
23 |
|
24 |
|
25 | spacingY?: GridProps["gridGap"];
|
26 | }
|
27 |
|
28 | export type SimpleGridProps = BoxProps & ISimpleGrid;
|
29 |
|
30 | declare const SimpleGrid: React.FC<SimpleGridProps>;
|
31 |
|
32 | export default SimpleGrid;
|