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 adab200 commit 3513d1eCopy full SHA for 3513d1e
src/Input.tsx
@@ -72,7 +72,7 @@ export const Input = memo(
72
const nativeInputOrTextAreaProps =
73
(textArea ? nativeTextAreaProps : nativeInputProps) ?? {};
74
75
- const NativeInputOrTexArea = textArea ? "textarea" : "input";
+ const NativeInputOrTextArea = textArea ? "textarea" : "input";
76
77
assert<Equals<keyof typeof rest, never>>();
78
@@ -118,7 +118,7 @@ export const Input = memo(
118
</label>
119
{(() => {
120
const nativeInputOrTextArea = (
121
- <NativeInputOrTexArea
+ <NativeInputOrTextArea
122
{...(nativeInputOrTextAreaProps as {})}
123
className={cx(
124
fr.cx(
0 commit comments