Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / SharedPage / Layout / HeaderSecureLabel.tsx
blob10a87b9c9ab3fa5f8639eff87e00ac8e1b000f87
1 import { c } from 'ttag';
3 import { Icon } from '@proton/components';
4 import clsx from '@proton/utils/clsx';
6 interface Props {
7     className?: string;
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>
13     </div>
16 export default HeaderSecureLabel;