UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

25 lines (24 loc) 897 B
import type { CSSProperties } from 'react'; /** Component only token. Which will handle additional calculation of alias token */ export interface ComponentToken { /** * @desc 提示框 z-index * @descEN z-index of Message */ zIndexPopup: number; /** * @desc 提示框背景色 * @descEN Background color of Message */ contentBg: string; /** * @desc 提示框内边距 * @descEN Padding of Message */ contentPadding: CSSProperties['padding']; } /** Register the PurePanel sub-style component for Message. */ export declare const PurePanelStyle: import("react").FunctionComponent<import("@ant-design/cssinjs-utils/lib/util/genStyleUtils").SubStyleComponentProps>; /** Register the main style hook for Message. */ declare const _default: (prefixCls: string, rootCls?: string) => readonly [string, string]; export default _default;