Skip to content

TableCell

type TableCell = {
align?: TableCellAlignValue;
children?: WidgetComponent[];
colSize?: TableColSize;
colSpan?: number;
id?: string;
key?: string;
padding?: Spacing;
rowSpan?: number;
type: 'Table.Cell';
vAlign?: TableCellAlignValue;
width?: number | string;
};
optional align: TableCellAlignValue;

optional children: WidgetComponent[];

optional colSize: TableColSize;

optional colSpan: number;

optional id: string;

optional key: string;

optional padding: Spacing;

optional rowSpan: number;

type: 'Table.Cell';

optional vAlign: TableCellAlignValue;

optional width: number | string;