flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 355 B
TypeScript
import type { ComponentProps, FC } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteModalFooterTheme {
base: string;
popup: string;
}
export interface ModalFooterProps extends ComponentProps<"div"> {
theme?: DeepPartial<FlowbiteModalFooterTheme>;
}
export declare const ModalFooter: FC<ModalFooterProps>;