UNPKG

@conduction/components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

18 lines (17 loc) 590 B
/** * This is a wrapper element based on https://nl-design-system.github.io/denhaag/?path=/docs/css-navigation-breadcrumb--default-story * * IMPORTANT: DO NOT MAKE CHANGES TO THIS FILE, AS ALL CHANGES WILL BE LOST UPON PACKAGE IMPLEMENTATION * * Note: we do not use css modules here due to this component being a wrapper */ /// <reference types="react" /> import "./Breadcrumbs.css"; interface BreadcrumbsProps { crumbs: { pathname: string; crumbLabel: string; }[]; } export declare const Breadcrumbs: ({ crumbs }: BreadcrumbsProps) => JSX.Element; export {};