function ControlIcon({ id }) { const commonProps = { width: 22, height: 22, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 1.8, strokeLinecap: 'round', strokeLinejoin: 'round', }; if (id === 'mute') { return ( ); } if (id === 'keypad') { return ( ); } if (id === 'speaker') { return ( ); } return ( ); } export function CallControls({ controls, isMobile = false }) { return (
{controls.map((control) => ( ))}
); }