import React from 'react'; import classnames from 'classnames'; interface Props { isValid: boolean; isVisible: boolean; name: string; value: string; placeholder: string; disabled?: boolean; handleInput(e: React.FormEvent): void; handleToggle(): void; } const KeystoreInput: React.SFC = ({ isValid, isVisible, handleInput, name, value, placeholder, disabled, handleToggle }) => (
); export default KeystoreInput;