import { TextareaHTMLAttributes } from "preact/compat"; interface FormTextAreaProps extends Omit { id?: string; currentValue: string; onChange?(newValue: string): void; onBlur?(newValue: string): void; rows: number; } export default function FormTextArea({ id, onBlur, onChange, rows, currentValue, className, ...restProps }: FormTextAreaProps) { return ( ) }