flowbite-svelte
Version:
Flowbite components for Svelte
19 lines (18 loc) • 537 B
TypeScript
import type { EnhandedImgProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [EnhandedImgProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1921)
* ## Props
* @prop src
* @prop href
* @prop caption
* @prop size
* @prop figClass
* @prop class: imgClass
* @prop captionClass
* @prop ...restProps
*/
declare const EnhancedImg: import("svelte").Component<EnhandedImgProps, {}, "">;
type EnhancedImg = ReturnType<typeof EnhancedImg>;
export default EnhancedImg;