Parameters
| Parameter | Type | Description |
|---|---|---|
props | SignInBackButtonProps | The props for the component. |
Returns
null | Element
The sign-in back button.
function SignInBackButton(props: SignInBackButtonProps): null | Element;
| Parameter | Type | Description |
|---|---|---|
props | SignInBackButtonProps | The props for the component. |
null | Element
The sign-in back button.
function App() {
// Customize the back button icon and label
return (
<CDPReactProvider config={config} theme={themeOverrides}>
<SignIn>
<SignInBackButton aria-label="go back">
<MyCustomIcon />
</SignInBackButton>
<SignInImage />
<SignInTitle />
<SignInDescription />
<SignInForm />
<SignInFooter />
</SignIn>
</CDPReactProvider>
);
}
Was this page helpful?