import classNames from 'classnames'; import './Textarea.scss'; import { TextareaProps } from './Types'; import { truncateText } from '../../utils/truncateText/truncateText'; const Textarea = ({ capacity = 200, name, label, value, variant = 'primary', error, helperText = '', disabled = false, required = false, placeholder = 'Enter text', className = '', onChange, onBlur, onFocus, rows = 4, cols = 40, resize = false, ...props }: TextareaProps) => { return (