UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

15 lines (14 loc) 458 B
import type { VNodeTypes, HTMLAttributes, FunctionalComponent, CSSProperties } from 'vue'; interface CellProps extends HTMLAttributes { itemPrefixCls: string; span: number; component: string; labelStyle?: CSSProperties; contentStyle?: CSSProperties; bordered?: boolean; label?: number | VNodeTypes; content?: number | VNodeTypes; colon?: boolean; } declare const Cell: FunctionalComponent<CellProps>; export default Cell;