flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
15 lines (14 loc) • 504 B
text/typescript
import type { ComponentProps, FC } from "react";
import type { ThemingProps } from "../../types";
export interface HRIconTheme {
base: string;
hrLine: string;
icon: {
base: string;
icon: string;
};
}
export interface HRIconProps extends Omit<ComponentProps<"hr">, "ref">, ThemingProps<HRIconTheme> {
icon?: FC<ComponentProps<"svg">>;
}
export declare const HRIcon: import("react").ForwardRefExoticComponent<HRIconProps & import("react").RefAttributes<HTMLHRElement>>;