diff --git a/src/components/input/Textarea/index.tsx b/src/components/input/Textarea/index.tsx index d1e42ec5..92e593a2 100644 --- a/src/components/input/Textarea/index.tsx +++ b/src/components/input/Textarea/index.tsx @@ -30,7 +30,6 @@ type IProps = TextareaHTMLAttributes & { const Textarea = memo( ({ - value, placeholder, className, minRows = 3, @@ -40,6 +39,7 @@ const Textarea = memo( title = '', status = '', seamless, + value, ...props }) => { const [rows, setRows] = useState(minRows || 1); @@ -97,7 +97,7 @@ const Textarea = memo(