@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
10 lines (9 loc) • 426 B
TypeScript
import { FunctionComponent } from "react";
import { PasswordInputProps } from "./password-input";
import PasswordInputFeedback from "./password-input-feedback";
interface PasswordInputInterface extends FunctionComponent<PasswordInputProps> {
(props: PasswordInputProps): JSX.Element;
Feedback: typeof PasswordInputFeedback;
}
declare const PasswordInput: PasswordInputInterface;
export default PasswordInput;