import type { WalletName } from '@solana/wallet-adapter-base'; import React from 'react'; import { Button } from './Button.js'; import { WalletIcon } from './WalletIcon.js'; type Props = React.ComponentProps & { walletIcon?: string; walletName?: WalletName; }; export function BaseWalletConnectionButton({ walletIcon, walletName, ...props }: Props) { return (