"use client"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@unsend/ui/src/dialog"; import { Button } from "@unsend/ui/src/button"; interface RemoveSuppressionDialogProps { email: string | null; open: boolean; onOpenChange: (open: boolean) => void; onConfirm: () => void; isLoading: boolean; } export default function RemoveSuppressionDialog({ email, open, onOpenChange, onConfirm, isLoading, }: RemoveSuppressionDialogProps) { return ( Remove Suppression Are you sure you want to remove {email} from the suppression list? This email address will be able to receive emails again. ); }