UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

9 lines (8 loc) 295 B
import React from 'react'; import { FormItemProps } from 'antd/lib/form'; import { InputProps } from './Input'; interface PasswordInputProps extends InputProps { placeholder?: string; } declare const PasswordInput: React.FC<PasswordInputProps & FormItemProps>; export default PasswordInput;