UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 415 B
import type { ComponentProps } from "react"; import type { DeepPartial } from "../../types"; export interface FlowbiteHRSquareTheme { base: string; } export interface HRSquareProps extends Omit<ComponentProps<"hr">, "ref"> { theme?: DeepPartial<FlowbiteHRSquareTheme>; } export declare const HRSquare: import("react").ForwardRefExoticComponent<HRSquareProps & import("react").RefAttributes<HTMLHRElement>>;