Files
web/components/TempDesignSystem/Form/Input/input.ts
2024-10-07 13:41:46 +02:00

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
}