UNPKG

svelte-sonner

Version:

An opinionated toast component for Svelte.

8 lines (7 loc) 229 B
import type { ToastTypes } from './types.js'; type $$ComponentProps = { type: ToastTypes; }; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType<typeof Icon>; export default Icon;