UNPKG

notistack-v2-maintained

Version:

Highly customizable notification snackbars (toasts) that can be stacked on top of each other

6 lines (5 loc) 268 B
import { CloseReason, SnackbarProps } from "./types"; export default function Snackbar(props: SnackbarProps & { open: boolean; onClose: (event: MouseEvent | TouchEvent | null, reason: CloseReason) => void; }): import("@emotion/react/jsx-runtime").JSX.Element;