10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export interface InputProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
helpText?: string
|
|
label: string
|
|
name: string
|
|
registerOptions?: RegisterOptions
|
|
}
|