UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 404 B
import * as React from 'react'; import { InputProps } from './Input'; export interface PasswordProps extends InputProps { readonly inputPrefixCls?: string; readonly action?: string; visibilityToggle?: boolean; iconRender?: (visible: boolean) => React.ReactNode; } declare const Password: React.ForwardRefExoticComponent<PasswordProps & React.RefAttributes<any>>; export default Password;