Files
web/components/TempDesignSystem/Form/TextArea/input.ts
Christel Westerberg 241e354fc5 fix: special requests
2024-12-17 09:44:58 +00:00

10 lines
235 B
TypeScript

import type { RegisterOptions } from "react-hook-form"
export interface TextAreaProps
extends React.InputHTMLAttributes<HTMLTextAreaElement> {
helpText?: string
label: string
name: string
registerOptions?: RegisterOptions
}