UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

11 lines (10 loc) 378 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteModalBodyTheme { base: string; popup: string; } export interface ModalBodyProps extends PropsWithChildren<ComponentProps<'div'>> { theme?: DeepPartial<FlowbiteModalBodyTheme>; } export declare const ModalBody: FC<ModalBodyProps>;