flowbite-svelte
Version:
Flowbite components for Svelte
19 lines (18 loc) • 579 B
TypeScript
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#L647)
* ## Props
* @prop spanClass
* @prop aClass
* @prop href
* @prop by
* @prop copyrightMessage = "All Rights Reserved."
* @prop year
* @prop bySpanClass
* @prop ...restProps
*/
declare const FooterCopyright: import("svelte").Component<FooterCopyrightProps, {}, "">;
type FooterCopyright = ReturnType<typeof FooterCopyright>;
export default FooterCopyright;