Merge branch 'INDA-330-pii-update' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / components / modals / ShareLinkModal / _legacy / DateTimeLEGACY.tsx
blob10360a3022bf86d60a91274a22cde4298e2132b4
1 import * as React from 'react';
3 import { format as formatDate, fromUnixTime } from 'date-fns';
5 import { dateLocale } from '@proton/shared/lib/i18n';
7 interface Props extends React.HTMLAttributes<HTMLTimeElement> {
8     value: number;
9     format?: string;
12 const DateTimeLEGACY = ({ value, format = 'PPp', ...rest }: Props) => {
13     return <time {...rest}>{formatDate(fromUnixTime(value), format, { locale: dateLocale })}</time>;
16 export default DateTimeLEGACY;