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