1 import { c } from 'ttag';
3 import { Icon } from '@proton/components';
4 import clsx from '@proton/utils/clsx';
9 const HeaderSecureLabel = ({ className }: Props) => (
10 <div className={clsx('color-success flex flex-row', className)}>
11 <Icon name="lock-open-check-filled" className="mr-2" />
12 <span className="encryption-block-text">{c('Info').t`End-to-end encrypted`}</span>
16 export default HeaderSecureLabel;