import React from 'react' import styles from './ModalTextarea.module.css' interface Props { label: string value: string onChange: (value: string) => void placeholder?: string maxLength?: number showCounter?: boolean rows?: number required?: boolean className?: string } const ModalTextarea: React.FC = ({ label, value, onChange, placeholder, maxLength, showCounter = false, rows = 3, required = false, className = '' }) => { return (