UNPKG

better-svelte-email

Version:

Svelte email renderer with Tailwind support

9 lines (8 loc) 291 B
import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = { as?: string; children: any; } & HTMLAttributes<HTMLParagraphElement>; declare const Text: import("svelte").Component<$$ComponentProps, {}, "">; type Text = ReturnType<typeof Text>; export default Text;