svelte-5-french-toast
Version:
Buttery smooth Svelte 5 toasts. Lightweight, customizable, and beautiful by default. Svelte 5 Only
9 lines (8 loc) • 301 B
TypeScript
import type { IconTheme } from '../core/types';
interface Props {
primary?: IconTheme['primary'];
secondary?: IconTheme['secondary'];
}
declare const CheckmarkIcon: import("svelte").Component<Props, {}, "">;
type CheckmarkIcon = ReturnType<typeof CheckmarkIcon>;
export default CheckmarkIcon;