UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

16 lines (15 loc) 436 B
import { type SlideProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [SlideProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L419) * ## Props * @prop image * @prop transition * @prop fit * @prop class: className * @prop ...restProps */ declare const Slide: import("svelte").Component<SlideProps, {}, "">; type Slide = ReturnType<typeof Slide>; export default Slide;