@etsoo/materialui
Version:
TypeScript Material-UI Implementation
17 lines (16 loc) • 378 B
TypeScript
import { AlertProps } from "@mui/material/Alert";
/**
* Error alert props
*/
export type ErrorAlertProps = AlertProps & {
/**
* Message to display
*/
message?: React.ReactNode;
};
/**
* Error alert component
* @param props Props
* @returns Component
*/
export declare function ErrorAlert(props: ErrorAlertProps): import("react/jsx-runtime").JSX.Element;