import GmailIcon from '../assets/icons/GmailIcon'; interface GmailConnectionIndicatorProps { description?: string; className?: string; } const GmailConnectionIndicator = ({ description, className = '', }: GmailConnectionIndicatorProps) => { // Gmail is always offline for now (placeholder) const gmailIsOnline = false; return (
{gmailIsOnline ? 'Connected to Gmail' : 'Gmail is Offline'}
{description && (

{description}

)}
); }; export default GmailConnectionIndicator;