UNPKG

@dynamic-labs/sdk-react-core

Version:

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

10 lines (9 loc) 342 B
import { ReactNode } from 'react'; import { CopyKey } from '../../shared'; type Props = { buttonClassName?: string; buttonContainerClassName?: string; children: ReactNode; } & CopyKey; export declare const DynamicConnectButton: ({ buttonContainerClassName, buttonClassName, children, copykey, }: Props) => JSX.Element; export {};