UNPKG

@react-pakistan/react-ui-collection

Version:

React UI Collection built upon React Storybook

21 lines (20 loc) 290 B
export interface IBreadcrumb { /** * */ id: string; /** * */ label: string; /** * */ url?: string; } export interface IBreadcrumbsProps { /** * Array of string for the breadcrumbs */ breadcrumbs: Array<IBreadcrumb>; }