UNPKG

@brightlayer-ui/react-auth-workflow

Version:

Re-usable workflow components for Authentication and Registration within Eaton applications.

33 lines (32 loc) 894 B
export type WorkflowCardClasses = { /** * The class name for the root element. */ root?: string; /** * The class name for the card element. */ card?: string; }; export type WorkflowCardClassKey = keyof WorkflowCardClasses; export declare function getWorkflowCardUtilityClass(slot: string): string; export type workflowCardActionsClasses = { /** * The class name for the root element. */ root?: string; /** * The class name for the next button element. */ nextButton?: string; /** * The class name for the previous button element. */ previousButton?: string; /** * The class name for the stepper element. */ stepper?: string; }; export type WorkflowCardActionsClassKey = keyof workflowCardActionsClasses; export declare function getWorkflowCardActionsUtilityClass(slot: string): string;