import { I } from '@/components/icons'
import { REFLECTOR_LANGS } from '@/lib/types'
type Props = {
sourceLang: string
setSourceLang: (v: string) => void
targetLang: string
setTargetLang: (v: string) => void
horizontal?: boolean
}
export function LanguagePair({
sourceLang,
setSourceLang,
targetLang,
setTargetLang,
horizontal,
}: Props) {
return (
Detected from the audio if set to Auto.
{horizontal && (
)}
Leave blank to skip translation.
)
}