Button UI
Render a custom button to display connected wallet details
import { ConnectWallet } from "@thirdweb-dev/react";
function App() {
return (
<ConnectWallet
detailsBtn={() => {
return <button> .... </button>;
}}
/>
);
}