We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7971f0 commit d9ce8c7Copy full SHA for d9ce8c7
src/textarea/Textarea.tsx
@@ -23,7 +23,7 @@ export interface TextareaRefInterface extends React.RefObject<unknown> {
23
textareaElement: HTMLTextAreaElement;
24
}
25
26
-const Textarea = forwardRef<TextareaProps, TextareaRefInterface>((originProps, ref) => {
+const Textarea = forwardRef<TextareaRefInterface, TextareaProps>((originProps, ref) => {
27
const props = useDefaultProps<TextareaProps>(originProps, textareaDefaultProps);
28
const {
29
className,
0 commit comments