UNPKG

421 BTypeScriptView Raw
1import * as React from 'react';
2import { InputProps } from '../components/Input';
3import { BaseTransition } from './transitions';
4import { PropsWithInnerRef } from '../types';
5
6export type AnimatedInputProps = BaseTransition & PropsWithInnerRef & InputProps;
7
8export function AnimatedInput(
9 WrappedComponent: React.ComponentType<InputProps>,
10): React.ComponentType<AnimatedInputProps>;
11
12export default AnimatedInput;