@kelvininc/ui-components
Version:
Kelvin UI Components
12 lines (11 loc) • 451 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export interface IBreadcrumbItem {
/** (required) The text to display on the breadcrumb */
label: string;
/** (optional) Sets this breadcrumb styling to be the active one (usually the last one) */
active?: boolean;
}
export interface IBreadcrumbItemEvents {
/** Emitted when the user clicks on the breadcrumb */
breadcrumbItemClick: EventEmitter<IBreadcrumbItem>;
}