@synapsecns/widget
Version:
Widget library for interacting with the Synapse Protocol
13 lines (12 loc) • 487 B
TypeScript
import { Chain } from 'types';
interface BridgeButtonProps {
originChain: Chain;
isValidQuote: boolean;
handleApprove: () => any;
handleBridge: () => any;
isApprovalPending: boolean;
isBridgePending: boolean;
isBridgePaused: boolean;
}
export declare const BridgeButton: ({ originChain, isValidQuote, handleApprove, handleBridge, isApprovalPending, isBridgePending, isBridgePaused, }: BridgeButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};