Repository URL to install this package:
|
Version:
4.0.61 ▾
|
import { ReactNode } from 'react';
export interface BreadCrumbItemProps {
url?: string;
text?: string;
/**
* @alias isCurrent
*/
isActive: boolean;
}
export interface BreadCrumbStyledItemProps {
'aria-current': boolean | 'page' | 'time' | 'false' | 'true' | 'step' | 'location' | 'date' | undefined;
}
export interface BreadCrumbProps {
list: LabelValue[];
children?: ReactNode;
className?: string;
text: string;
url: string;
}
export interface LabelValue {
label: string;
value: string | any;
}