import Image from 'next/image' import { Tooltip } from 'components/design/Tooltip' import { LanguageButton } from './LanguageButton' interface LanguageFlagProps { imageLink: string title: string lang: string } export const LanguageFlag: React.FC = (props) => { const { lang, title, imageLink } = props return ( <>
{title}
) }