1 | import type { CSSProperties } from 'react';
|
2 | import React from 'react';
|
3 | import type { PureSettings } from '../../defaultSettings';
|
4 | type GridContentProps = {
|
5 | contentWidth?: PureSettings['contentWidth'];
|
6 | children: React.ReactNode;
|
7 | className?: string;
|
8 | style?: CSSProperties;
|
9 | prefixCls?: string;
|
10 | };
|
11 | /**
|
12 | * This component can support contentWidth so you don't need to calculate the width
|
13 | * contentWidth=Fixed, width will is 1200
|
14 | *
|
15 | * @param props
|
16 | */
|
17 | declare const GridContent: React.FC<GridContentProps>;
|
18 | export { GridContent };
|