import AlertLib, { AlertProps as LibAlertProps } from "@mui/material/Alert"; import { FC } from "react"; export type AlertProps = LibAlertProps; const Alert: FC = ({ children, ...props }) => { return {children}; }; export default Alert;