Skip to content

Commit

Permalink
TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
birdofpreyru committed Jan 7, 2025
1 parent 291df21 commit f015646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/components/Input/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { FunctionComponent, RefObject } from 'react';
import type { FunctionComponent, Ref } from 'react';

import themed, { type Theme } from '@dr.pogodin/react-themes';

Expand All @@ -11,7 +11,7 @@ type ThemeKeyT =

type PropsT = React.InputHTMLAttributes<HTMLInputElement> & {
label?: React.ReactNode;
ref?: RefObject<HTMLInputElement>;
ref?: Ref<HTMLInputElement>;
testId?: string;
theme: Theme<ThemeKeyT>;
};
Expand Down

0 comments on commit f015646

Please sign in to comment.