UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

21 lines (20 loc) 622 B
import type { FooterCopyrightProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [FooterCopyrightProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L744) * ## Props * @prop spanClass * @prop aClass * @prop href * @prop by * @prop copyrightMessage = "All Rights Reserved." * @prop year * @prop bySpanClass * @prop classes * @prop class: className * @prop ...restProps */ declare const FooterCopyright: import("svelte").Component<FooterCopyrightProps, {}, "">; type FooterCopyright = ReturnType<typeof FooterCopyright>; export default FooterCopyright;