mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 422 B
TypeScript
import type { ComponentProps, ElementType, FC, PropsWithChildren } from 'react';
import type { DeepPartial } from '../../';
export interface FlowbiteFooterTitleTheme {
base: string;
}
export interface FooterTitleProps extends PropsWithChildren<ComponentProps<'h2'>> {
as?: ElementType;
theme?: DeepPartial<FlowbiteFooterTitleTheme>;
title: string;
}
export declare const FooterTitle: FC<FooterTitleProps>;