import React from 'react'; import { useTranslation } from 'react-i18next'; import { Icon } from 'UI'; function SessionTileFooter({ userDisplayName, sessionId, replaceSession, deleteSession, }: { userDisplayName: string; sessionId: string; replaceSession: (e: any, id: string) => void; deleteSession: (e: any, id: string) => void; }) { const { t } = useTranslation(); return (