Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / sections / Drive / EmptyDeviceRoot.tsx
blob178265ae27e54737a1acacd89d76fc5753217033
1 import type { FC } from 'react';
3 import { c } from 'ttag';
5 import emptySvg from '@proton/styles/assets/img/illustrations/empty-device-root.svg';
7 import { DriveEmptyView } from '../../layout/DriveEmptyView';
9 type Props = {};
11 const EmptyDeviceRoot: FC<Props> = () => {
12     return (
13         <DriveEmptyView
14             image={emptySvg}
15             title={
16                 // translator: Shown when accessing an empty computer
17                 c('Info').t`No synced folders`
18             }
19             subtitle={
20                 // translator: Shown when accessing an empty computer
21                 c('Info').t`Folders you sync from your computer will appear here.`
22             }
23         />
24     );
27 export default EmptyDeviceRoot;