epn-ui
Version:
Дизайн система кабинета ВМ
18 lines (17 loc) • 592 B
TypeScript
import { AlertProps } from 'antd/lib/alert';
import { ReactNode } from 'react';
export interface IBaseAlertProps {
message?: AlertProps['message'];
type?: AlertProps['type'];
closable?: AlertProps['closable'];
action?: AlertProps['action'];
banner?: AlertProps['banner'];
showIcon?: AlertProps['showIcon'];
id?: string;
background?: ReactNode;
backgroundStyle?: React.CSSProperties;
className?: AlertProps['className'];
style?: AlertProps['style'];
onClose?: AlertProps['onClose'];
afterClose?: AlertProps['afterClose'];
}