import { Textarea, TextareaProps } from '@chakra-ui/react'; import { forwardRef } from 'react'; import { FormCard } from './Form'; import { WithControl } from './types'; export type TextAreaFormProps = WithControl; export const TextAreaForm = forwardRef( ({ control, ...input }, ref) => { return (