IConfirmAlertProps

Definition

export interface IConfirmAlertProps {
    icon?: IconProp
    title?: string | IAlertContent,
    content: string | IAlertContent,
    confirmButtonTitle?: string,
    cancelButtonTitle?: string
}

Usage

import { IConfirmAlertProps } from 'uxp/components';

Last updated