"use client"; import { Input, Typography } from "antd"; type propsType = { label: string, placeholder?: string, disabled?: boolean, required?: boolean, className?: string, onChange?: any, value?: string, type?: any, onBlur?: any } export default function BATextarea(props: propsType) { const { label, placeholder, disabled, required, onChange, value, onBlur } = props; const { TextArea } = Input; return <> {label && {label}{required && "*"}}