2022-11-27 12:55:26 +03:00

8 lines
202 B
TypeScript

import styles from './Input.module.css';
type InputProps = JSX.IntrinsicElements['input'];
export default function Input(props: InputProps) {
return <input className={styles.input} {...props} />;
}