27 lines
809 B
TypeScript
27 lines
809 B
TypeScript
|
import type { GetDefaultToken } from '../../theme/internal';
|
||
|
export interface ComponentToken {
|
||
|
/**
|
||
|
* @desc 内容区域高度
|
||
|
* @descEN Height of content area
|
||
|
*/
|
||
|
contentHeight: number | string;
|
||
|
/**
|
||
|
* @desc 加载图标尺寸
|
||
|
* @descEN Loading icon size
|
||
|
*/
|
||
|
dotSize: number;
|
||
|
/**
|
||
|
* @desc 小号加载图标尺寸
|
||
|
* @descEN Small loading icon size
|
||
|
*/
|
||
|
dotSizeSM: number;
|
||
|
/**
|
||
|
* @desc 大号加载图标尺寸
|
||
|
* @descEN Large loading icon size
|
||
|
*/
|
||
|
dotSizeLG: number;
|
||
|
}
|
||
|
export declare const prepareComponentToken: GetDefaultToken<'Spin'>;
|
||
|
declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: import("react").ReactElement) => import("react").ReactElement, string, string];
|
||
|
export default _default;
|