UNPKG

@dynamic-labs/sdk-react-core

Version:

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

10 lines (9 loc) 397 B
import { FC } from 'react'; import { AuthenticatorType } from '@dynamic-labs/wallet-connector-core'; import { EmbeddedWalletCurrentAction } from '../../../shared'; interface EmbeddedAuthChoiceCardsProps { currentAction?: EmbeddedWalletCurrentAction; supportedAuthenticators: AuthenticatorType[]; } export declare const EmbeddedAuthChoiceCards: FC<EmbeddedAuthChoiceCardsProps>; export {};