@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 349 B
TypeScript
/// <reference types="react" />
import { UserProfile } from '@dynamic-labs/types';
type UserAvatarProps = {
user: UserProfile | undefined;
containerClassName?: string;
renderWithFallback?: boolean;
};
export declare const UserAvatar: ({ user, containerClassName, renderWithFallback, }: UserAvatarProps) => JSX.Element | null;
export {};