@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
9 lines (8 loc) • 464 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { PropsWithChildren } from "react";
export declare type PasswordInputFeedbackColor = "primary" | "info" | "success" | "warning" | "danger";
export interface PasswordInputFeedbackProps extends PropsWithChildren<ViewProps> {
color?: PasswordInputFeedbackColor;
}
declare function PasswordInputFeedback(props: PasswordInputFeedbackProps): JSX.Element;
export default PasswordInputFeedback;