import { IconButton, IconButtonProps, useTheme } from "@mui/material"; import { ForwardRefExoticComponent, RefAttributes } from "react"; import { LinkProps } from "react-router-dom"; import { deepmerge } from "@mui/utils"; type Props = IconButtonProps & { component?: ForwardRefExoticComponent>; to?: string; }; export function WalletButton(props: Props) { const theme = useTheme(); return ( ); }