import clsx from 'clsx' import type { ComponentProps } from 'react' import { forwardRef } from 'react' import { BiWallet } from 'react-icons/bi' import { FaSpinner } from 'react-icons/fa' export interface WalletButtonProps extends ComponentProps<'button'> { isLoading?: boolean } export const WalletButton = forwardRef(function WalletButton( { className, children, isLoading, ...props }, ref, ) { return ( ) })