UNPKG

@zenithui/toast

Version:

A modern, lightweight toast notification system for React applications. ZenithUI Toast provides a simple and customizable way to display notifications, alerts, and messages to users with smooth animations and flexible styling options.

14 lines (13 loc) 511 B
import { ToastType } from "../../lib/types"; import "./toast-asset.css"; export declare const ICONS: { SuccessIcon: () => import("react/jsx-runtime").JSX.Element; InfoIcon: () => import("react/jsx-runtime").JSX.Element; ErrorIcon: () => import("react/jsx-runtime").JSX.Element; WarningIcon: () => import("react/jsx-runtime").JSX.Element; CloseIcon: () => import("react/jsx-runtime").JSX.Element; }; export declare const ToastAsset: React.FC<{ type: ToastType; className: string; }>;