UNPKG

404 BTypeScriptView Raw
1import * as React from 'react';
2import { InputProps } from './Input';
3export interface PasswordProps extends InputProps {
4 readonly inputPrefixCls?: string;
5 readonly action?: string;
6 visibilityToggle?: boolean;
7 iconRender?: (visible: boolean) => React.ReactNode;
8}
9declare const Password: React.ForwardRefExoticComponent<PasswordProps & React.RefAttributes<any>>;
10export default Password;