react-common-use-components
Version:
A React mobile commonly used component library
14 lines (13 loc) • 511 B
TypeScript
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;