UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

15 lines (14 loc) 584 B
import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; import type { BreadcrumbItemTheme } from "./BreadcrumbItem"; export interface BreadcrumbTheme { root: BreadcrumbRootTheme; item: BreadcrumbItemTheme; } export interface BreadcrumbRootTheme { base: string; list: string; } export interface BreadcrumbProps extends ComponentProps<"nav">, ThemingProps<BreadcrumbRootTheme> { } export declare const Breadcrumb: import("react").ForwardRefExoticComponent<Omit<BreadcrumbProps, "ref"> & import("react").RefAttributes<HTMLElement>>;