UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 467 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteFooterCopyrightTheme { base: string; href: string; span: string; } export interface CopyrightProps extends PropsWithChildren, ComponentProps<'div'> { by: string; href?: string; theme?: DeepPartial<FlowbiteFooterCopyrightTheme>; year?: number; } export declare const FooterCopyright: FC<CopyrightProps>;