UNPKG

svelte-5-french-toast

Version:

Buttery smooth Svelte 5 toasts. Lightweight, customizable, and beautiful by default. Svelte 5 Only

8 lines (7 loc) 223 B
import type { Toast } from '../core/types'; interface Props { toast: Toast; } declare const ToastIcon: import("svelte").Component<Props, {}, "">; type ToastIcon = ReturnType<typeof ToastIcon>; export default ToastIcon;