UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

17 lines (16 loc) 521 B
import { type ComponentProps, type ElementType, type FC, type PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteModalHeaderTheme { base: string; popup: string; title: string; close: { base: string; icon: string; }; } export interface ModalHeaderProps extends PropsWithChildren<ComponentProps<'div'>> { as?: ElementType; theme?: DeepPartial<FlowbiteModalHeaderTheme>; } export declare const ModalHeader: FC<ModalHeaderProps>;