@transkripid/flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork
17 lines (16 loc) • 483 B
TypeScript
import { type ComponentProps, type ElementType, type FC } from 'react';
import type { DeepPartial } from '../../types';
export interface FlowbiteModalHeaderTheme {
base: string;
popup: string;
title: string;
close: {
base: string;
icon: string;
};
}
export interface ModalHeaderProps extends ComponentProps<'div'> {
as?: ElementType;
theme?: DeepPartial<FlowbiteModalHeaderTheme>;
}
export declare const ModalHeader: FC<ModalHeaderProps>;