quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 308 B
TypeScript
import { PasswordProps } from 'antd/es/input';
import { FC } from 'react';
import { INPUT_PASSWORD } from '../../../Types';
export interface IInputPassword {
ctype: typeof INPUT_PASSWORD;
props: PasswordProps;
}
declare const InputPassword: FC<IInputPassword>;
export default InputPassword;