UNPKG

@payfit/unity-components

Version:

17 lines (16 loc) 591 B
import { ReactNode } from 'react'; import { PasswordRuleStatus } from '../types.js'; interface ValidationRuleItemProps { /** Unique identifier for the rule */ id: string; /** Label to display for the rule */ label: ReactNode; /** Current status of the rule */ status: PasswordRuleStatus; } /** * Individual validation rule item with status icon * Displays a check circle icon that changes based on the rule's status */ export declare function ValidationRuleItem({ id, label, status, }: ValidationRuleItemProps): import("react/jsx-runtime").JSX.Element; export {};