Files
icehrm/web/node_modules/antd/lib/descriptions/Cell.d.ts
2020-05-20 18:47:29 +02:00

15 lines
355 B
TypeScript

import * as React from 'react';
export interface CellProps {
itemPrefixCls: string;
span: number;
className?: string;
component: string;
style?: React.CSSProperties;
bordered?: boolean;
label?: React.ReactNode;
content?: React.ReactNode;
colon?: boolean;
}
declare const Cell: React.FC<CellProps>;
export default Cell;