UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

17 lines (16 loc) 622 B
import { ReactNode } from 'react'; import { BaseComponentAttributes } from '../utils/types'; export interface MessageProps extends Omit<BaseComponentAttributes, 'title'> { type?: 'success' | 'warning' | 'error' | 'notice' | 'help' | 'loading'; shape?: 'inline' | 'toast'; title?: ReactNode; visible?: boolean; defaultVisible?: boolean; iconType?: string | null; closable?: boolean; children?: any; zIndex?: number; onClose?: () => void; } declare const _default: import("react").ForwardRefExoticComponent<MessageProps & import("react").RefAttributes<any>>; export default _default;