import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faPhoneArrowUpRight } from '@fortawesome/pro-duotone-svg-icons'; import { cx } from '@/utils/cx'; interface CallSimulatorProps { onSimulate: () => void; isCallActive: boolean; } export const CallSimulator = ({ onSimulate, isCallActive }: CallSimulatorProps) => { return ( ); };