UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

17 lines (16 loc) 653 B
import type { ComponentProps, FC } from 'react'; import React 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: React.ForwardRefExoticComponent<BreadcrumbItemProps & React.RefAttributes<HTMLAnchorElement | HTMLSpanElement>>;