src/components/form/form-textarea.tsximport { inputBaseStyles } from './utils'// ============================================================================// FormTextArea Component// ============================================================================export type FormTextAreaProps = {id?: stringname: stringplaceholder?: stringrows?: numberrequired?: booleandefaultValue?: stringclassName?: stringlabel?: string}export function FormTextArea({id,name,placeholder,rows = 4,required,defaultValue,className = '',label = '',}: FormTextAreaProps) {return (<textareaid={id ?? name}name={name}placeholder={placeholder}rows={rows}required={required}defaultValue={defaultValue}data-label={label}className={`${inputBaseStyles} ${className}`}/>)}