Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / sections / SharedWithMe / EmptySharedWithMe.tsx
blob063af5bd8a0cc596d333cc9509751c2b52963c2d
1 import { c } from 'ttag';
3 import noLinksSvg from '@proton/styles/assets/img/illustrations/empty-shared-with-me.svg';
5 import { DriveEmptyView } from '../../layout/DriveEmptyView';
7 const EmptyShared = () => {
8     return (
9         <DriveEmptyView
10             image={noLinksSvg}
11             title={c('Info').t`Shared with me`}
12             subtitle={c('Info').t`Files and folders that others shared with you will appear here`}
13             dataTestId="shared-with-me-links-empty-placeholder"
14         />
15     );
18 export default EmptyShared;