import { Typography } from '@/components/atoms/Typography'; import { HeaderProps } from '@/components/layouts/Header/types'; import { tw } from '@/theme'; import { View } from '@react-pdf/renderer'; import dayjs from 'dayjs'; import { FunctionComponent } from 'react'; export const Header: FunctionComponent = ({ logoElement, titleElement, createdAtTimestamp, }) => { return ( {logoElement} {titleElement} {createdAtTimestamp && ( Check Created at {`${dayjs(createdAtTimestamp).format( 'ddd DD MMM YYYY, h:mm UTC Z', )}`} )} ); };