UNPKG

svelte-5-french-toast

Version:

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

9 lines (8 loc) 285 B
import type { IconTheme } from '../core/types'; interface Props { primary?: IconTheme['primary']; secondary?: IconTheme['secondary']; } declare const ErrorIcon: import("svelte").Component<Props, {}, "">; type ErrorIcon = ReturnType<typeof ErrorIcon>; export default ErrorIcon;