22 lines
416 B
Plaintext
22 lines
416 B
Plaintext
export type XLOADINGS_TYPE = {
|
|
iconColor?:string,
|
|
contentBgColor?:string,
|
|
maskBgColor?:string,
|
|
iconSize?:number,
|
|
iconCode?:string,
|
|
title?:string,
|
|
titleSize?:number,
|
|
titleColor?:string,
|
|
size?:number
|
|
}
|
|
export type XLOADINGS_TYPE_PRIVATE = {
|
|
iconColor:string,
|
|
contentBgColor:string,
|
|
maskBgColor:string,
|
|
iconSize:number,
|
|
iconCode:string,
|
|
title:string,
|
|
titleSize:number,
|
|
titleColor:string,
|
|
size:number
|
|
} |