@daimo/pay
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
18 lines (17 loc) • 450 B
TypeScript
import React from "react";
type Hash = `0x${string}`;
export type CustomAvatarProps = {
address?: Hash | undefined;
ensName?: string | undefined;
ensImage?: string;
size: number;
radius: number;
};
/** Icon for an Ethereum address. Supports ENS names and avatars. */
declare const Avatar: React.FC<{
address?: Hash | undefined;
name?: string | undefined;
size?: number;
radius?: number;
}>;
export default Avatar;