UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 415 B
import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface ModalBodyTheme { base: string; popup: string; } export interface ModalBodyProps extends ComponentProps<"div">, ThemingProps<ModalBodyTheme> { } export declare const ModalBody: import("react").ForwardRefExoticComponent<Omit<ModalBodyProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;