UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

13 lines (12 loc) 433 B
import type { ComponentProps, ElementType, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteFooterLinkTheme { base: string; href: string; } export interface FooterLinkProps extends PropsWithChildren, ComponentProps<'a'> { as?: ElementType; href: string; theme?: DeepPartial<FlowbiteFooterLinkTheme>; } export declare const FooterLink: FC<FooterLinkProps>;