ConnectUIProps
type ConnectUIProps<I extends WalletInstance = WalletInstance> = {
connected: () => void;
goBack: () => void;
hide: () => void;
isOpen: boolean;
modalSize: "compact" | "wide";
onLocallyConnected?: (walleInstance: WalletInstance) => void;
selectionData: any;
setSelectionData: (data: any) => void;
show: () => void;
supportedWallets: WalletConfig[];
theme: "dark" | "light";
walletConfig: WalletConfig<I>;
};