@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
11 lines (10 loc) • 364 B
TypeScript
import { TextFieldProps } from '@mui/material/TextField';
export type MinifiedTextFieldProps = Omit<TextFieldProps, 'label' | 'inputRef' | 'value' | 'onChange' | 'onKeyUp'>;
export type RouteConfig = {
LOGIN?: string;
FORGOT_PASSWORD?: string;
RESET_PASSWORD?: string;
REGISTER_INVITE?: string;
REGISTER_SELF?: string;
SUPPORT?: string;
};