import type { ListItemProps } from '@chakra-ui/react'; import { Button, ListItem } from '@chakra-ui/react'; 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 ( ); };