import { FC, ChangeEvent } from "react"; import { Textarea, useBreakpointValue } from "@chakra-ui/react"; type Props = { value: string, onChange?: (e: ChangeEvent) => void, readOnly?: true [key: string]: any }; const TranslationArea: FC = ({ value, onChange, readOnly, ...props }) => (