import React from 'react'; import { Avatar, Tooltip } from '../ui'; interface ProfileLogoProps { imageUrl?: string; name: string; email: string; size?: number; showLabel?: boolean; onClick?: () => void; } const ProfileLogo: React.FC = ({ imageUrl, name, email, size = 42, showLabel = true, onClick }) => { const button = ( ); if (!showLabel) return button; return ( {name} {email} )} > {button} ); }; export default ProfileLogo;