UNPKG

react-high-toast

Version:

A highly customizable toast notification system for React using portals

10 lines (9 loc) 267 B
import React from 'react'; import { IToast } from '../types'; interface ToastProps { toast: IToast; onRemove: (id: string) => void; style?: React.CSSProperties; } declare const ToastComponent: React.FC<ToastProps>; export default ToastComponent;