14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export interface NewPasswordProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
label?: string
|
|
registerOptions?: RegisterOptions
|
|
visibilityToggleable?: boolean
|
|
}
|
|
|
|
export interface IconProps {
|
|
errorMessage: string
|
|
errors: string[]
|
|
}
|