diff --git a/src/components/Input/InputTextBase/InputTextBase.tsx b/src/components/Input/InputTextBase/InputTextBase.tsx index 6fc0c9f9..4f3c4af6 100644 --- a/src/components/Input/InputTextBase/InputTextBase.tsx +++ b/src/components/Input/InputTextBase/InputTextBase.tsx @@ -156,7 +156,9 @@ export const InputTextBase = memo< useImperativeHandle( propsInputRef, () => - (inputRef.current ? { ...inputRef.current, clear } : null) as TextInput, + (inputRef.current + ? Object.assign(inputRef.current, { clear }) + : null) as TextInput, [inputRef, clear] )