@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
14 lines (13 loc) • 453 B
TypeScript
import React, { ReactNode } from 'react';
import { TextFieldProps } from '@mui/material/TextField';
/**
* Component that renders textfield with a visibility toggle. The toggle changes the
* input from hidden to visible.
*
* @param props all props will be passed to the underlying TextField component
*
* @category Component
*/
export declare const PasswordTextField: React.FC<React.PropsWithChildren<TextFieldProps> & {
icon?: ReactNode;
}>;