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