import * as React from "react"; import type { FormFieldProps } from "../types"; import { ariaAttributes } from "../utils"; import { FormFieldWrapper } from "./FormFieldWrapper"; type TextareaFormFieldProps = FormFieldProps<"text-area"> & { value: string; onChange: (value: string) => void; }; export function TextareaFormField({ name, label, bottomText, maxLength, error, onBlur, value, onChange, }: TextareaFormFieldProps) { const id = React.useId(); return (