import { isMobile } from '@/utils/helpers' import { forwardRef } from 'react' type TextareaProps = { onChange: (value: string) => void } & Omit, 'onChange'> export const Textarea = forwardRef(function Textarea( { onChange, ...props }: TextareaProps, ref: React.ForwardedRef ) { return (