components.breadcrumbs.Crumb.ts Maven / Gradle / Ivy
import React from 'react';
export interface Crumb {
key: string;
label: string;
onClick?: (e?: React.SyntheticEvent) => void;
link?: string;
type?: string;
clickable?: boolean;
}
import React from 'react';
export interface Crumb {
key: string;
label: string;
onClick?: (e?: React.SyntheticEvent) => void;
link?: string;
type?: string;
clickable?: boolean;
}