import ConfirmDialog, { ConfirmDialogProps, } from 'components/shared/ConfirmDialog'; interface CancelDeploymentDialogProps extends ConfirmDialogProps {} export const CancelDeploymentDialog = ({ open, handleCancel, handleConfirm, ...props }: CancelDeploymentDialogProps) => { return (

This will halt the deployment and you'll have to start the process from scratch.

); };