@keycloakify/keycloak-account-ui
Version:
Repackaged Keycloak Account UI
8 lines (7 loc) • 318 B
TypeScript
import { type TextInputProps } from "@patternfly/react-core";
export type PasswordInputProps = TextInputProps & {
hasReveal?: boolean;
};
export declare const PasswordInput: import("react").ForwardRefExoticComponent<TextInputProps & {
hasReveal?: boolean;
} & import("react").RefAttributes<HTMLInputElement>>;