import { Button, Group, Modal, Stack, Text, ThemeIcon } from "@mantine/core"; import { CheckCircle2 } from "lucide-react"; export interface ContractSignSuccessModalProps { opened: boolean; onClose: () => void; reference: string; message?: string; confirmLabel?: string; } export function ContractSignSuccessModal({ opened, onClose, reference, message = "The contract has been signed and recorded.", confirmLabel = "Back to contract request", }: ContractSignSuccessModalProps) { return ( {reference} {message} ); }