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 (
{description}
)}