feat(Cell): add icon-prefix prop (#5666)

This commit is contained in:
chenjiahan
2020-02-24 21:24:26 +08:00
parent aba946f20e
commit 51513d9423
6 changed files with 27 additions and 1 deletions
+2
View File
@@ -6,6 +6,7 @@ export type SharedCellProps = {
isLink?: boolean;
required?: boolean;
clickable?: boolean;
iconPrefix?: string;
titleStyle?: any;
titleClass?: any;
valueClass?: any;
@@ -23,6 +24,7 @@ export const cellProps = {
isLink: Boolean,
required: Boolean,
clickable: Boolean,
iconPrefix: String,
titleStyle: null as any,
titleClass: null as any,
valueClass: null as any,