import type { ListItemProps } from '@mui/material'; import { Button, ListItem } from '@mui/material'; import type { Wallet } from '@solana/wallet-adapter-react'; import type { FC, MouseEventHandler } from 'react'; import React from 'react'; import { WalletIcon } from './WalletIcon.js'; interface WalletListItemProps extends Omit { onClick: MouseEventHandler; wallet: Wallet; } export const WalletListItem: FC = ({ onClick, wallet, ...props }) => { return ( ); };