import { IconRefresh } from "@tabler/icons-react"; import { FC } from "react"; import { useTranslation } from "next-i18next"; interface Props { onRegenerate: () => void; } export const Regenerate: FC = ({ onRegenerate }) => { const { t } = useTranslation('chat') return (
{t('Sorry, there was an error.')}
); };