From f8e770d952ffc86a9d2ca2ffc1c06ccf75e49078 Mon Sep 17 00:00:00 2001 From: en Date: Fri, 14 Feb 2025 13:07:11 +0100 Subject: [PATCH] fix(alert): add alert popup types --- src/types/popup.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/popup.ts b/src/types/popup.ts index b1551cf..ca79618 100644 --- a/src/types/popup.ts +++ b/src/types/popup.ts @@ -6,4 +6,6 @@ export interface AlertPopupProps extends PopupProps { header: string label: string handleConfirm: (confirm: boolean) => void + yesButtonLabel?: string | undefined + noButtonLabel?: string | undefined }