UNPKG

sveltekit-embed

Version:

A collection of embed components for SvelteKit. Easily embed content from YouTube, Spotify, Vimeo, CodePen, and many more with performant, lazy-loaded components.

8 lines (7 loc) 199 B
interface Props { tweetLink?: string; theme?: 'light' | 'dark'; } declare const Tweet: import("svelte").Component<Props, {}, "">; type Tweet = ReturnType<typeof Tweet>; export default Tweet;