UNPKG

554 BTypeScriptView Raw
1import type { CSSProperties } from 'react';
2import React from 'react';
3import type { PureSettings } from '../../defaultSettings';
4declare 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 */
17declare const GridContent: React.FC<GridContentProps>;
18export { GridContent };