[improvement] Cell: tsx (#2771)

This commit is contained in:
neverland
2019-02-17 20:29:49 +08:00
committed by GitHub
parent 890bd72268
commit 34e30aac5e
4 changed files with 52 additions and 17 deletions

View File

@@ -1,3 +1,17 @@
export type SharedCellProps = {
icon?: string;
border?: boolean;
center?: boolean;
isLink?: boolean;
required?: boolean;
titleClass?: string;
valueClass?: string;
labelClass?: string;
title?: string | number;
value?: string | number;
label?: string | number;
}
export const cellProps = {
icon: String,
center: Boolean,