UNPKG

svelte-5-french-toast

Version:

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

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