Expected Results :- It should not accept only empty space or special characters. But when entered with alphabets and it should accept all characters and space.
<div>
<div className={createNewContainerStyles}>
<p>Reason</p>
<TextArea value={reason} placeholder='Add reason' showCount maxLength={250} onChange={(e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
setReason(e.target.value)
}}>
</TextArea>
<div>
<Button type="default"
loading={loading}
onClick={onClose}>Cancel
</Button>
<Button type="primary" disabled={!reason} loading={loading} onClick={onBlacklistRequest}>Add
</Button>
</div>
</div>
</div>