UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

17 lines (16 loc) 433 B
import * as React from 'react'; export interface CellProps { itemPrefixCls: string; span: number; className?: string; component: string; style?: React.CSSProperties; labelStyle?: React.CSSProperties; contentStyle?: React.CSSProperties; bordered?: boolean; label?: React.ReactNode; content?: React.ReactNode; colon?: boolean; } declare const Cell: React.FC<CellProps>; export default Cell;