UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

12 lines (11 loc) 389 B
import type { ComponentProps, ElementType, FC } from "react"; import type { DeepPartial } from "../../types"; export interface FlowbiteFooterTitleTheme { base: string; } export interface FooterTitleProps extends ComponentProps<"h2"> { as?: ElementType; theme?: DeepPartial<FlowbiteFooterTitleTheme>; title: string; } export declare const FooterTitle: FC<FooterTitleProps>;