UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

20 lines (19 loc) 729 B
import type { FullToken } from '../../theme'; /** 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: string) => import("../../theme").UseComponentStyleResult; export default _default;