@brightlayer-ui/react-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
12 lines (11 loc) • 405 B
TypeScript
import { JSX } from 'react';
import { ErrorMessageBoxProps } from './types.js';
/**
* Component that renders a basic message box with an error message and a configurable dismiss button.
*
* @param {ErrorMessageBoxProps} props - props of errorMessageBox component
*
* @category Component
*/
declare const ErrorMessageBox: (props: ErrorMessageBoxProps) => JSX.Element;
export default ErrorMessageBox;