forked from thirdweb-dev/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyled-connect-embed.tsx
45 lines (42 loc) · 999 Bytes
/
styled-connect-embed.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"use client";
import { THIRDWEB_CLIENT } from "@/lib/client";
import { useTheme } from "next-themes";
import {
arbitrumSepolia,
baseSepolia,
optimismSepolia,
polygonAmoy,
sepolia,
} from "thirdweb/chains";
import {
ConnectEmbed,
type ConnectEmbedProps,
useActiveAccount,
} from "thirdweb/react";
import { WALLETS } from "../lib/constants";
import { StyledConnectButton } from "./styled-connect-button";
export function StyledConnectEmbed(
props?: Omit<ConnectEmbedProps, "client" | "theme">,
) {
const { theme } = useTheme();
const account = useActiveAccount();
return account ? (
<div className="flex flex-col gap-8">
<StyledConnectButton {...props} />
</div>
) : (
<ConnectEmbed
chains={[
sepolia,
baseSepolia,
optimismSepolia,
polygonAmoy,
arbitrumSepolia,
]}
wallets={WALLETS}
client={THIRDWEB_CLIENT}
theme={theme === "light" ? "light" : "dark"}
{...props}
/>
);
}