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