import React from 'react'; import { RetinaImg } from 'mailspring-component-kit'; import { localized } from 'mailspring-exports'; interface SubjectLineIconsProps { canCollapse: boolean; hasCollapsedItems: boolean; onPrint: () => void; onPopIn: () => void; onPopOut: () => void; onToggleAllExpanded: () => void; } export const SubjectLineIcons: React.FunctionComponent = props => (
{props.canCollapse && (
)}
{AppEnv.isThreadWindow() ? (
) : (
)}
);