UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 429 B
import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface DropdownDividerTheme { divider: string; } export interface DropdownDividerProps extends ComponentProps<"div">, ThemingProps<DropdownDividerTheme> { } export declare const DropdownDivider: import("react").ForwardRefExoticComponent<Omit<DropdownDividerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;