ConnectEmbed
ConnectEmbed component renders a UI to connect to various wallets. It renders the same UI as the ConnectButton component's Modal UI.
This is really useful for Implementing a "Sign in" page.

It also renders a UI to Sign in with wallet if it is enabled by setting authConfig in ThirdwebProvider component and loginOptional prop is either not provided or set to false in ConnectEmbed component

Because of this use case, It only renders UI if either one of the following conditions are true:
-
wallet is not connected
-
wallet is connected but the user is not signed in and sign in is required
Usage
Configure wallets in ThirdwebProvider
To Configure which wallets to show in the ConnectButton Modal, configure the
walletsprop in theThirdwebProvidercomponent which wraps your entire application.To display a
Recommendedtag below a wallet provider, pass in therecommended: trueproperty in the wallet configurator function.If
walletsis not configured in theThirdwebProvider, the ConnectButton Modal shows the default wallets:Configure ConnectEmbed
Render the
ConnectEmbedcomponent anywhere in your application. Refer to Props to see the configuration options available