UNPKG

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