UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

12 lines (11 loc) 532 B
import { FC, MouseEventHandler, PropsWithChildren, ReactNode } from 'react'; import { CopyKey } from '../../shared'; export type ConnectedWalletsListLayoutProps = { title: ReactNode; body?: ReactNode; onClickClose?: MouseEventHandler<HTMLButtonElement>; onClickBack?: MouseEventHandler<HTMLButtonElement>; onClickAction?: MouseEventHandler<HTMLButtonElement>; actionButtonText?: ReactNode; } & CopyKey; export declare const ConnectedWalletsListLayout: FC<PropsWithChildren<ConnectedWalletsListLayoutProps>>;