import cn from 'classnames' import s from './Input.module.css' import React, { InputHTMLAttributes } from 'react' export interface Props extends InputHTMLAttributes { className?: string onChange?: (...args: any[]) => any } const Input: React.FC = (props) => { const { className, children, onChange, ...rest } = props const rootClassName = cn(s.root, {}, className) const handleOnChange = (e: any) => { if (onChange) { onChange(e.target.value) } return null } return ( ) } export default Input