import React, { JSX } from "react"; import clsx from "clsx"; import FieldLabel from "@components/FieldLabel"; 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 (