@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 379 B
TypeScript
import { FC, MouseEventHandler, ReactNode } from 'react';
type BridgeNextWalletToConnectLayoutProps = {
chainName: string;
chainIcon?: ReactNode;
onClickAction?: MouseEventHandler<HTMLButtonElement>;
onClickClose?: MouseEventHandler<HTMLButtonElement>;
};
export declare const BridgeNextWalletToConnectLayout: FC<BridgeNextWalletToConnectLayoutProps>;
export {};