UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

16 lines (15 loc) 646 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; import type { FlowbiteBoolean } from '../Flowbite'; export interface FlowbiteBreadcrumbItemTheme { base: string; chevron: string; href: FlowbiteBoolean; icon: string; } export interface BreadcrumbItemProps extends Omit<ComponentProps<'li'>, 'ref'> { href?: string; icon?: FC<ComponentProps<'svg'>>; theme?: DeepPartial<FlowbiteBreadcrumbItemTheme>; } export declare const BreadcrumbItem: import("react").ForwardRefExoticComponent<BreadcrumbItemProps & import("react").RefAttributes<HTMLAnchorElement | HTMLSpanElement>>;