ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
24 lines (23 loc) • 944 B
TypeScript
import type { FullToken, GetDefaultToken } from '../../theme/cssinjs-utils';
export interface ComponentToken {
colorBgSlot?: string;
colorTextSlot?: string;
colorTextSlotPlaceholder?: string;
colorBorderSlot?: string;
colorBorderSlotHover?: string;
colorBgSkill?: string;
colorBgSkillHover?: string;
}
export interface SenderToken extends FullToken<'Sender'> {
SenderContentMaxWidth: number | string;
colorBgSlot: string;
colorTextSlot: string;
colorTextSlotPlaceholder: string;
colorBorderSlot: string;
colorBorderSlotHover: string;
colorBgSkill: string;
colorBgSkillHover: string;
}
export declare const prepareComponentToken: GetDefaultToken<'Sender'>;
declare const _default: (prefixCls: import("vue").MaybeRefOrGetter<string>, rootCls?: string) => readonly [(node: import("vue").VNode) => import("vue").VNode, import("vue").Ref<string, string>, string];
export default _default;