1 import clsx from '@proton/utils/clsx';
10 const EmailsTableCell = ({ contactID, emails = [], highlightedID, greyedOut }: Props) => {
17 greyedOut && 'color-weak',
18 contactID === highlightedID && 'text-bold',
21 <span className="inline-block text-ellipsis">{emails.map((email) => `<${email}>`).join(', ')}</span>
26 export default EmailsTableCell;