UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

17 lines (16 loc) 640 B
import { ITouchEvent } from "@vnxjs/components"; import { ViewProps } from "@vnxjs/components/types/View"; import { ReactElement, ReactText } from "react"; import { PasswordInputFeedbackProps } from "./password-input-feedback"; export interface PasswordInputProps extends ViewProps { value?: string; length?: number; gutter?: number; mask?: boolean; focused?: boolean; focus?: boolean; feedback?: ReactText | PasswordInputFeedbackProps | ReactElement; onFocus?(event: ITouchEvent): void; } declare function PasswordInput(props: PasswordInputProps): JSX.Element; export default PasswordInput;