'use client'; import React from 'react'; export const StreamControls: React.FC<{ isLive: boolean; onToggleLive: () => void }> = ({ isLive, onToggleLive }) => ( <div style={{ display: 'flex', gap: 12, padding: 16, justifyContent: 'center' }}> <button onClick={onToggleLive} style={{ padding: '12px 32px', borderRadius: 9999, border: 'none', background: isLive ? '#EF4444' : '#22c55e', color: '#fff', fontWeight: 700, fontSize: 15 }}> {isLive ? 'END STREAM' : 'GO LIVE'} </button> </div> );