Type Alias OsConfirmPropsBeta

OsConfirmProps: string | {
    cancelText?: string;
    content?: string;
    icon?: string;
    okButtonProps?: ButtonProps;
    okText?: string;
    taskID?: string;
    title: string;
}

Properties for confirmation modal.

Type declaration

  • Optional BetacancelText?: string

    Text for the cancel button.

  • Optional Betacontent?: string

    Content of the confirmation modal.

  • Optional Betaicon?: string

    Icon for the confirmation modal.

  • Optional BetaokButtonProps?: ButtonProps

    Properties for the OK button.

  • Optional BetaokText?: string

    Text for the OK button.

  • Optional BetataskID?: string

    Task ID related to the confirmation modal.

  • Betatitle: string

    Title of the confirmation modal.