flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 345 B
TypeScript
import type { ComponentProps, FC } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteFooterDividerTheme {
base: string;
}
export interface FooterDividerProps extends ComponentProps<"hr"> {
theme?: DeepPartial<FlowbiteFooterDividerTheme>;
}
export declare const FooterDivider: FC<FooterDividerProps>;