import React from 'react' import PropTypes from 'prop-types'; import classNames from 'classnames'; interface Props { align: string; styles: string; children?: React.ReactNode; onClick: () => void; } const Input = ({type, name, label, onChange, value }) => { return(