mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-23 01:39:40 +01:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
|
import { InputHTMLAttributes } from 'react'
|
||
|
import styles from './Input.module.css'
|
||
|
|
||
|
type Props = InputHTMLAttributes<HTMLInputElement>
|
||
|
|
||
|
export function Input(props: Props) {
|
||
|
return <input className={styles.input} {...props} />
|
||
|
}
|