import { clsx } from "clsx"; import { forwardRef } from "react"; import TextareaAutosize, { TextareaAutosizeProps, } from "react-textarea-autosize"; export type StyledTextAreaProps = Omit< TextareaAutosizeProps, "className" | "style" >; export const StyledTextArea = forwardRef< HTMLTextAreaElement, StyledTextAreaProps >(function StyledTextArea(props, ref) { return ( ); });