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