@resulbeser1/air-command-ui-components
Version:
UI Components for Air Command System
15 lines (14 loc) • 350 B
TypeScript
export interface DeleteConfirmationDialogProps {
isOpen: boolean;
onClose: () => void;
onConfirm: () => void;
aircraftCallsign: string;
theme?: "light" | "dark";
labels?: {
deleteTitle?: string;
confirmQuestion?: string;
warningText?: string;
cancel?: string;
delete?: string;
};
}