UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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