UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 351 B
import type { ComponentProps, FC } from "react"; import type { DeepPartial } from "../../types"; export interface FlowbiteDropdownDividerTheme { divider: string; } export type DropdownDividerProps = { theme?: DeepPartial<FlowbiteDropdownDividerTheme>; } & ComponentProps<"div">; export declare const DropdownDivider: FC<DropdownDividerProps>;