1 import { c } from 'ttag';
3 import Info from '@proton/components/components/link/Info';
4 import SettingsLayout from '@proton/components/containers/account/SettingsLayout';
5 import SettingsLayoutLeft from '@proton/components/containers/account/SettingsLayoutLeft';
6 import SettingsLayoutRight from '@proton/components/containers/account/SettingsLayoutRight';
8 import SenderImagesToggle from './SenderImagesToggle';
10 export const SenderImages = () => {
14 <label htmlFor="senderImagesToggle">
15 <span className="text-semibold mr-2">{c('Label').t`Show sender images`}</span>
18 .t`Show each sender's image in the message list. The sender's initials will be shown if a photo is not available.`}
22 <SettingsLayoutRight isToggleContainer>
23 <SenderImagesToggle className="mr-4" id="senderImagesToggle" />
24 </SettingsLayoutRight>