8 lines
202 B
TypeScript
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} />;
|
|
}
|