UNPKG

@dynamic-labs/sdk-react-core

Version:

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

14 lines (13 loc) 409 B
import { ChangeEventHandler, FC, FocusEventHandler } from 'react'; export type UserPhoneFieldProps = { onChange: ChangeEventHandler<HTMLInputElement>; value: string; onBlur: FocusEventHandler<HTMLDivElement>; disabled: boolean; label: string; required: boolean; verify: boolean; error: string; name: string; }; export declare const UserPhoneField: FC<UserPhoneFieldProps>;