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.

11 lines (10 loc) 280 B
interface Props { spotifyLink?: string; width?: string; height?: string; disable_observer?: boolean; iframe_styles?: string; } declare const Spotify: import("svelte").Component<Props, {}, "">; type Spotify = ReturnType<typeof Spotify>; export default Spotify;