UNPKG

@dynamic-labs/sdk-react-core

Version:

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

10 lines (9 loc) 305 B
import { FC, MouseEventHandler } from 'react'; import { WalletOption } from '../../../../shared'; type WalletGroupItemProps = { groupKey: string; wallet: WalletOption; onClick: MouseEventHandler<HTMLButtonElement>; }; export declare const WalletGroupItem: FC<WalletGroupItemProps>; export {};