UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

13 lines (12 loc) 471 B
import type { VideoPlaceholderProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [VideoPlaceholderProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1446) * ## Props * @prop size = "sm" * @prop class: className */ declare const VideoPlaceholder: import("svelte").Component<VideoPlaceholderProps, {}, "">; type VideoPlaceholder = ReturnType<typeof VideoPlaceholder>; export default VideoPlaceholder;