flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 564 B
TypeScript
import type { ThumbnailsProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ThumbnailsProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L445)
* ## Props
* @prop children
* @prop images = []
* @prop index = $bindable()
* @prop ariaLabel = "Click to view image"
* @prop imgClass
* @prop throttleDelay = 650
* @prop class: className
*/
declare const Thumbnails: import("svelte").Component<ThumbnailsProps, {}, "index">;
type Thumbnails = ReturnType<typeof Thumbnails>;
export default Thumbnails;