1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

clearing search

This commit is contained in:
Fedor Katurov 2020-04-18 18:46:51 +07:00
parent 9498c7b7a0
commit 47adbdf6f0
13 changed files with 215 additions and 195 deletions

View file

@ -1,4 +1,4 @@
import { DetailedHTMLProps, InputHTMLAttributes } from 'react';
import { DetailedHTMLProps, InputHTMLAttributes, ReactElement } from 'react';
import { DIALOGS } from '~/redux/modal/constants';
import { ERRORS } from '~/constants/errors';
import { IUser } from './auth/types';
@ -30,6 +30,7 @@ export type IInputTextProps = DetailedHTMLProps<
mask?: string;
onRef?: (ref: any) => void;
is_loading?: boolean;
after?: ReactElement;
};
export type IIcon = string;