UNPKG

@raona/components

Version:

React components used at Raona to work with SPFx

15 lines (14 loc) 542 B
import * as React from 'react'; import { BreadcrumbItem } from './BreadcrumbItem'; import { DynamicTagType } from '../dynamicHeader'; export interface BreadcrumbProps { items: BreadcrumbItem[]; containerTagName?: DynamicTagType; separatorTagName?: DynamicTagType; separator?: string; containerClassName?: string; itemClassName?: string; activeItemClassName?: string; separatorClassName?: string; } export declare const Breadcrumb: (props: BreadcrumbProps) => React.ReactElement<BreadcrumbProps>;