@adonis-agora/authkit-react
Version:
Frontend ergonomics over AuthKit for AdonisJS + Inertia + React apps: a typed useAuth() hook, role-gating hooks and gating components.
12 lines (11 loc) • 493 B
TypeScript
import { type PasswordScorer } from '../hooks/use_password_strength.js';
export interface PasswordStrengthMeterProps {
password: string;
scorer?: PasswordScorer;
showFeedback?: boolean;
labels?: [string, string, string, string, string];
className?: string;
}
export declare function PasswordStrengthMeter({ password, scorer, showFeedback, labels, className, }: PasswordStrengthMeterProps): import("react").DetailedReactHTMLElement<{
className: string;
}, HTMLElement>;