Skip to content

Commit 3513d1e

Browse files
authored
Update Input.tsx (#49)
fix typo
1 parent adab200 commit 3513d1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const Input = memo(
7272
const nativeInputOrTextAreaProps =
7373
(textArea ? nativeTextAreaProps : nativeInputProps) ?? {};
7474

75-
const NativeInputOrTexArea = textArea ? "textarea" : "input";
75+
const NativeInputOrTextArea = textArea ? "textarea" : "input";
7676

7777
assert<Equals<keyof typeof rest, never>>();
7878

@@ -118,7 +118,7 @@ export const Input = memo(
118118
</label>
119119
{(() => {
120120
const nativeInputOrTextArea = (
121-
<NativeInputOrTexArea
121+
<NativeInputOrTextArea
122122
{...(nativeInputOrTextAreaProps as {})}
123123
className={cx(
124124
fr.cx(

0 commit comments

Comments
 (0)