@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
12 lines (11 loc) • 499 B
TypeScript
import React from 'react';
import { ChangePasswordDialogProps } from './types.js';
/**
* Component that renders a dialog with textField to enter current password and a change password form with a new password and confirm password inputs.
* It includes callbacks so you can respond to changes in the inputs.
*
* @param {ChangePasswordDialogProps} props - props of changePassword dailog
*
* @category Component
*/
export declare const ChangePasswordDialog: React.FC<ChangePasswordDialogProps>;