2023-10-23 23:11:59 +02:00
|
|
|
import { useI18n } from "@/i18n/i18n.client"
|
2024-07-06 02:33:49 +02:00
|
|
|
import type { CookiesStore } from "@/utils/constants"
|
2023-07-31 19:06:46 +02:00
|
|
|
|
|
|
|
export interface LocaleFlagProps {
|
|
|
|
locale: string
|
|
|
|
cookiesStore: CookiesStore
|
|
|
|
}
|
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const LocaleFlag = (props: LocaleFlagProps): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const { locale, cookiesStore } = props
|
|
|
|
|
|
|
|
const i18n = useI18n(cookiesStore)
|
|
|
|
|
|
|
|
return (
|
2024-07-06 02:33:49 +02:00
|
|
|
<p data-cy="locale-flag-text" className="mx-2 text-lg font-semibold">
|
|
|
|
{i18n.translate(`common.${locale}`)}
|
|
|
|
</p>
|
2023-07-31 19:06:46 +02:00
|
|
|
)
|
|
|
|
}
|