Documentation Index
Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt
Use this file to discover all available pages before exploring further.
function SignInImage(props: SignInImageProps): null | Element;
A logo or success icon for the SignIn component.
Parameters
| Parameter | Type | Description |
|---|
props | SignInImageProps | The props for the component. |
Returns
null | Element
The rendered component.
Example
function App() {
// Use a different image from your app logo in the SignIn component
return (
<CDPReactProvider config={config} theme={themeOverrides}>
<SignIn>
<SignInBackButton />
<SignInImage src="https://example.com/image.png" alt="Example Image" />
<SignInTitle />
<SignInDescription />
<SignInForm />
<SignInFooter />
</SignIn>
</CDPReactProvider>
);
}