import * as React from 'react'; import {BaseInput, IBaseInputProps, IBaseInputState} from './base-input'; export interface IPasswordProps extends IBaseInputProps { placeholder?: string; } export class PasswordInput extends BaseInput { protected type = 'password'; constructor(props: IPasswordProps) { super(props); } public render() { const { errorClassName, containerClassName, errorContainerClassName, className, fieldMessage, ...rest } = this.props; return (
); } }