UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

22 lines (21 loc) 546 B
import type { ImgProps } from "../../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [ImgProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2081) * ## Props * @prop children * @prop size * @prop effect: imgEffect * @prop align * @prop caption * @prop class: className * @prop classes * @prop figClass * @prop captionClass * @prop href * @prop ...restProps */ declare const Img: import("svelte").Component<ImgProps, {}, "">; type Img = ReturnType<typeof Img>; export default Img;