UNPKG

@kelvininc/ui-components

Version:
12 lines (11 loc) 452 B
import { EventEmitter } from '../../stencil-public-runtime'; export interface IBreadcrumbItem { /** (optional) 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>; }