UNPKG

474 BTypeScriptView Raw
1import * as React from 'react';
2export interface CellProps {
3 itemPrefixCls: string;
4 span: number;
5 className?: string;
6 component: string;
7 style?: React.CSSProperties;
8 labelStyle?: React.CSSProperties;
9 contentStyle?: React.CSSProperties;
10 bordered?: boolean;
11 label?: React.ReactNode;
12 content?: React.ReactNode;
13 colon?: boolean;
14 type?: 'label' | 'content' | 'item';
15}
16declare const Cell: React.FC<CellProps>;
17export default Cell;