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

# BusinessPhoneDialog

> BusinessPhoneDialog component

BusinessPhoneDialog component

## Props

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

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

<ResponseField name="currentPhone" type="string | null" required={true}>
  currentPhone
</ResponseField>

<ResponseField name="onSuccess" type="(newPhone: string | null) => void" required={false}>
  onSuccess
</ResponseField>

## Usage

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

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