UNPKG

mui-alert-provider

Version:

Make your alerts float! A lightweight provider for Material UI’s Alert that fits seamlessly into any web UI.

12 lines (11 loc) 297 B
import React from "react"; import { AlertType } from "./types"; interface AlertProps { alerts: AlertType[]; removeAlert: (index: number) => void; duration: number; muiAlertProps: object; muiStackProps: object; } declare const Alert: React.FC<AlertProps>; export default Alert;