> ## 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.

# InviteMemberDialog

> InviteMemberDialog component

InviteMemberDialog component

## Props

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

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

<ResponseField name="onSuccess" type="(result?: InviteResult) => void" required={false}>
  onSuccess
</ResponseField>

<ResponseField name="myRole" type="TeamRole" required={false}>
  myRole
</ResponseField>

## Usage

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

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