The props for the component.
Props for the SignInImage component.
OptionalclassName?: stringThe class name to apply to the component.
Optionalalt?: stringThe alt text for the image.
Optionalsrc?: stringThe source URL for the image. Uses the app logo by default.
The rendered component.
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>
);
}
A logo or success icon for the SignIn component.