UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

17 lines (16 loc) 552 B
import type { ImagePlaceholderProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ImagePlaceholderProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1424) * ## Props * @prop size = "md" * @prop rounded * @prop imgOnly = false * @prop class: className * @prop classes * @prop ...restProps */ declare const ImagePlaceholder: import("svelte").Component<ImagePlaceholderProps, {}, "">; type ImagePlaceholder = ReturnType<typeof ImagePlaceholder>; export default ImagePlaceholder;