import { Button } from "@/components/Button"; export interface Props { title?: string; message: string; chainType?: string; approve: VoidFunction; reject: VoidFunction; approveBtnStatus: "normal" | "loading" | "success"; } const SignMessageUI = ({ title, message, approve, reject, approveBtnStatus, }: Props) => { return (
{title || "Sign Message"}