UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 340 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../'; export interface FlowbiteFooterDividerTheme { base: string; } export interface FooterDividerProps extends ComponentProps<'hr'> { theme?: DeepPartial<FlowbiteFooterDividerTheme>; } export declare const FooterDivider: FC<FooterDividerProps>;