SelectUIProps
type SelectUIProps<I extends WalletInstance = WalletInstance> = {
modalSize: "compact" | "wide";
onSelect: (selectionData: any) => void;
supportedWallets: WalletConfig[];
theme: "dark" | "light";
walletConfig: WalletConfig<I>;
};