import { WalletReadyState } from '@solana/wallet-adapter-base'; import type { Wallet } from '@solana/wallet-adapter-react'; import type { FC, MouseEventHandler } from 'react'; import React from 'react'; import { Button } from './Button.js'; import { WalletIcon } from './WalletIcon.js'; export interface WalletListItemProps { handleClick: MouseEventHandler; tabIndex?: number; wallet: Wallet; } export const WalletListItem: FC = ({ handleClick, tabIndex, wallet }) => { return (
  • ); };