@transkripid/flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork
12 lines (11 loc) • 389 B
TypeScript
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>;