import * as React from 'react'; import Gravatar from 'react-gravatar'; import I18n from 'i18n-js'; import { MutedText } from '../common/CustomTexts'; import friendlyDate from '../../helpers/datetime'; import Separator from '../common/Separator'; interface Props { createdAt: string; toggleEditMode(): void; handleDeletePost(): void; isPowerUser: boolean; authorEmail: string; authorFullName: string; currentUserEmail: string; } const PostFooter = ({ createdAt, toggleEditMode, handleDeletePost, isPowerUser, authorEmail, authorFullName, currentUserEmail, }: Props) => (