import { Button } from '@/components/ui/button'; import { Mic, MicOff, PhoneOff } from 'lucide-react'; interface ActiveCallBarProps { remoteUserName: string; isMuted: boolean; onToggleMute: () => void; onHangup: () => void; } export function ActiveCallBar({ remoteUserName, isMuted, onToggleMute, onHangup, }: ActiveCallBarProps) { return (
En appel avec {remoteUserName}
); }