import React from "react"; import FieldLabel from "@/components/FieldLabel"; import clsx from "clsx"; import { FieldError } from "@/components/InputField"; import Card from "@/components/Card"; import { cx } from "@/cva.config"; type TextAreaProps = JSX.IntrinsicElements["textarea"] & { error?: string | null; }; const TextArea = React.forwardRef( function TextArea(props, ref) { return (