UNPKG

react-common-use-components

Version:
14 lines (13 loc) 511 B
import React, { CSSProperties } from 'react'; interface PasswordInputProps { value?: string; maxLength?: number; style?: CSSProperties; inputItemStyle?: CSSProperties; iconStyle?: CSSProperties; onChange?: (value: string) => void; onSubmit?: (value: string) => void; autoFocus?: boolean; } declare const PasswordInput: ({ value, maxLength, style, inputItemStyle, iconStyle, onChange, onSubmit, autoFocus }: PasswordInputProps) => React.JSX.Element; export default PasswordInput;