UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

25 lines (24 loc) 867 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { divClass?: string; size?: string | number; class?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type VideoPlaceholderProps = typeof __propDef.props; export type VideoPlaceholderEvents = typeof __propDef.events; export type VideoPlaceholderSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let divClass: $$Props['divClass'] = 'flex justify-center items-center h-56 bg-gray-300 rounded-lg animate-pulse dark:bg-gray-700'; * @prop export let size: NonNullable<$$Props['size']> = 'sm'; */ export default class VideoPlaceholder extends SvelteComponentTyped<VideoPlaceholderProps, VideoPlaceholderEvents, VideoPlaceholderSlots> { } export {};