@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
11 lines (10 loc) • 393 B
TypeScript
/// <reference types="react" />
import { CopyKey } from '../../../../shared';
export type UserProfileFieldProps = {
disabled?: boolean;
label?: string;
name: string;
value: string | boolean | null | undefined;
autoComplete?: string;
} & CopyKey;
export declare const UserProfileField: ({ name, label, value, copykey, autoComplete, }: UserProfileFieldProps) => JSX.Element;