File size: 558 Bytes
6864389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { useTranslation } from "@/hooks/useTranslation";

interface GuessDescriptionProps {
  sentence: string[];
  aiGuess: string;
}

export const GuessDescription = ({ sentence, aiGuess }: GuessDescriptionProps) => {
  const t = useTranslation();

  return (
    <div className="space-y-2">
      <p className="text-sm text-gray-600">{t.guess.providedDescription}</p>
      <div className="rounded-lg bg-gray-50">
        <p className="p-4 text-2xl tracking-wider text-gray-800">
          {sentence.join(" ")}
        </p>
      </div>
    </div>
  );
};