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.

11 lines (10 loc) 335 B
import { Toast } from "../../lib/types"; import "./toast-item.css"; interface ToastItemProps extends React.HTMLAttributes<HTMLDivElement> { /** * The Instance Item of Toast. */ toast: Toast; } export default function ToastItem({ toast, ...props }: ToastItemProps): import("react/jsx-runtime").JSX.Element; export {};