UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

20 lines (19 loc) 776 B
import type { FullToken } from '../../theme/internal'; /** Component only token. Which will handle additional calculation of alias token */ export interface ComponentToken { zIndexPopup: number; width: number; } export interface NotificationToken extends FullToken<'Notification'> { notificationBg: string; notificationPaddingVertical: number; notificationPaddingHorizontal: number; notificationPadding: string; notificationMarginBottom: number; notificationMarginEdge: number; animationMaxHeight: number; notificationIconSize: number; notificationCloseButtonSize: number; } declare const _default: (_prefixCls?: import("vue").Ref<string, string>) => import("../../theme/internal").UseComponentStyleResult; export default _default;