type ConnectEmbedProps = {
auth?: {
loginOptional?: boolean;
onLogin?: (token: string) => void;
onLogout?: () => void;
};
chain?: Chain;
chains?: Array<Chain>;
className?: string;
onConnect?: (wallet: Wallet) => void; privacyPolicyUrl?: string;
showThirdwebBranding?: boolean;
style?: React.CSSProperties;
termsOfServiceUrl?: string;
theme?: "dark" | "light" | Theme; };