import React from "react"; import { ModModalCancellationProps, ModModalConfirmationProps } from "./TModal"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogTitle, AlertDialogTrigger, } from "@/components/ui/alert-dialog"; import { Button } from "@/components/ui/button"; class ModModalCancellation extends React.Component { constructor(props: ModModalCancellationProps) { super(props); } render(): React.ReactNode { return ( {this.props.heading} {this.props.content} {this.props.cancelButton.content} {this.props.actionButton.content} ); } } export { ModModalCancellation };