Files
web/components/TempDesignSystem/Form/Input/input.ts
Michael Zetterberg 14e93eba7c chore: lint fix
2024-04-23 14:43:17 +02:00

11 lines
356 B
TypeScript

import { Control, RegisterOptions } from "react-hook-form"
import { EditProfileSchema } from "@/components/MyProfile/Profile/Edit/Form/schema"
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {
control: Control<EditProfileSchema>
name: keyof EditProfileSchema
registerOptions?: RegisterOptions<EditProfileSchema>
}