> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cdp.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SignInDescription

```ts theme={null}
function SignInDescription(props: SignInDescriptionProps): Element;
```

A description for the SignIn component.

## Parameters

| Parameter | Type                                                                                                         | Description                  |
| --------- | ------------------------------------------------------------------------------------------------------------ | ---------------------------- |
| `props`   | [`SignInDescriptionProps`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-react/Interfaces/SignInDescriptionProps) | The props for the component. |

## Returns

`Element`

The rendered component.

## Example

```tsx lines theme={null}
function App() {
  // Render a custom description in the SignIn component
  return (
    <CDPReactProvider config={config} theme={themeOverrides}>
      <SignIn>
        <SignInBackButton />
        <SignInImage />
        <SignInTitle />
        <SignInDescription>
          Custom Sign In Description
        </SignInDescription>
        <SignInForm />
        <SignInFooter />
      </SignIn>
    </CDPReactProvider>
  );
}
```
