import { withTranslation } from "react-i18next"; import { StyledTextArea, StyledContainer, Label } from "./styles"; import { InputProps } from "../types"; const TextArea = ({ name, placeholder, onChange, t }: InputProps) => ( ); export default withTranslation()(TextArea);