A simple alert banner.

Inspired by: https://mui.com/material-ui/react-alert/

interface AlertProps {
    children?: ReactNode;
    fadeIn?: boolean;
    icon?: ReactNode;
    scrollIntoView?: boolean;
    severity: "error" | "warning" | "info" | "success";
}

Hierarchy

  • PropsWithChildren
    • AlertProps

Properties

children?: ReactNode
fadeIn?: boolean
icon?: ReactNode
scrollIntoView?: boolean

When true, the alert will scroll into view when it is rendered.

severity: "error" | "warning" | "info" | "success"