IBaseAlertProps

Definition

export interface IBaseAlertProps {
    icon?: IconProp
    title?: string | IAlertContent,
    content: string | IAlertContent,
    showCloseBtn?: boolean,
    autoClose?: boolean,
    closeAfter?: number,
    closeButtonTitle?: string
}

Usage

import { IBaseAlertProps } from 'uxp/components';

Last updated