IFormAlertProps

Definition

export interface IFormAlertProps {
    icon?: IconProp
    title: string | IAlertContent,
    content?: string | IAlertContent,
    formStructure: IAlertFormField[],
    submitButtonTitle?: string,
    cancelButtonTitle?: string,
    hideCancelButton?: boolean
}

Usage

import { IFormAlertProps } from 'uxp/components';

Last updated