import { Dialog, DialogContent, DialogHeader, DialogTitle, } from '@/components/ui/dialog'; import { Button } from '@/components/ui/button'; import { Phone, PhoneOff } from 'lucide-react'; interface IncomingCallModalProps { open: boolean; callerName: string; onAccept: () => void; onReject: () => void; } export function IncomingCallModal({ open, callerName, onAccept, onReject, }: IncomingCallModalProps) { return ( !o && onReject()}> Appel entrant

{callerName} vous appelle

); }