CDP Frontend SDK
    Preparing search index...

    Function SignInImage

    • A logo or success icon for the SignIn component.

      Parameters

      • props: SignInImageProps

        The props for the component.

        Props for the SignInImage component.

        • OptionalclassName?: string

          The class name to apply to the component.

        • Optionalalt?: string

          The alt text for the image.

        • Optionalsrc?: string

          The source URL for the image. Uses the app logo by default.

      Returns null | Element

      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>
      );
      }