36 lines
925 B
TypeScript
36 lines
925 B
TypeScript
|
/** Component only token. Which will handle additional calculation of alias token */
|
||
|
export interface ComponentToken {
|
||
|
/**
|
||
|
* @desc 标签背景色
|
||
|
* @descEN Background color of label
|
||
|
*/
|
||
|
labelBg: string;
|
||
|
/**
|
||
|
* @desc 标题下间距
|
||
|
* @descEN Bottom margin of title
|
||
|
*/
|
||
|
titleMarginBottom: number;
|
||
|
/**
|
||
|
* @desc 子项下间距
|
||
|
* @descEN Bottom padding of item
|
||
|
*/
|
||
|
itemPaddingBottom: number;
|
||
|
/**
|
||
|
* @desc 冒号右间距
|
||
|
* @descEN Right margin of colon
|
||
|
*/
|
||
|
colonMarginRight: number;
|
||
|
/**
|
||
|
* @desc 冒号左间距
|
||
|
* @descEN Left margin of colon
|
||
|
*/
|
||
|
colonMarginLeft: number;
|
||
|
/**
|
||
|
* @desc 额外区域文字颜色
|
||
|
* @descEN Text color of extra area
|
||
|
*/
|
||
|
extraColor: string;
|
||
|
}
|
||
|
declare const _default: (prefixCls: string) => import("../../theme/interface").UseComponentStyleResult;
|
||
|
export default _default;
|