@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
16 lines (15 loc) • 491 B
TypeScript
import { JSX } from 'react';
export type ContactScreenClasses = {
root?: string;
title?: string;
icon?: JSX.Element;
emailSupportTitle?: string;
emailSupportContent?: string;
phoneSupportTitle?: string;
phoneSupportContent?: string;
contactEmail?: string;
contactPhone?: string;
dismissButtonLabel?: string;
};
export type ContactScreenClassKey = keyof ContactScreenClasses;
export declare function getContactScreenUtilityClass(slot: string): string;