@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
8 lines (7 loc) • 304 B
TypeScript
/// <reference types="react" />
import { MFADeviceType } from '@dynamic-labs/sdk-api-core';
export type MfaSecureDeviceViewProps = {
type?: MFADeviceType;
isInitialSetup?: boolean;
};
export declare const MfaSecureDeviceView: ({ type, isInitialSetup, }: MfaSecureDeviceViewProps) => JSX.Element;