import { FC, InputHTMLAttributes } from 'react' import styles from './Input.module.css' import cx from 'classnames' type Props = InputHTMLAttributes export const Input: FC = ({ className, ...rest }) => { return }