1
0
mirror of https://github.com/kremalicious/asi-calculator.git synced 2025-02-14 21:10:41 +01:00
asi-calculator/components/Input/Input.tsx

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} />
}