UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

14 lines (13 loc) 434 B
import { type ThumbnailProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ThumbnailProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L406) * ## Props * @prop selected * @prop class: className * @prop ...restProps */ declare const Thumbnail: import("svelte").Component<ThumbnailProps, {}, "">; type Thumbnail = ReturnType<typeof Thumbnail>; export default Thumbnail;