mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { InputHTMLAttributes } from "react"
|
|
|
|
export function Input(props: InputHTMLAttributes<HTMLInputElement>) {
|
|
return <input {...props} className="border border-gray-300 p-2 rounded-md focus:outline-none focus:ring focus:ring-blue-500" />
|
|
}
|
|
|