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

# ForgotPasswordDialog

> ForgotPasswordDialog component

ForgotPasswordDialog component

## Props

<ResponseField name="open" type="boolean" required={true}>
  open
</ResponseField>

<ResponseField name="onOpenChange" type="(open: boolean) => void" required={true}>
  onOpenChange
</ResponseField>

<ResponseField name="email" type="string" required={true}>
  email
</ResponseField>

## Usage

```tsx theme={null}
import { ForgotPasswordDialog } from '@/components/ForgotPasswordDialog';

export default function Example() {
  return (
    <ForgotPasswordDialog open={open} onOpenChange={onOpenChange} email={email} />
  );
}
```
