northants-design-system
Version:
Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.
21 lines (20 loc) • 449 B
TypeScript
export interface BreadcrumbsProps {
/**
* An array of the breadcrumbs, each with a title and a URL not including the current page users are on
*/
breadcrumbsArray: Array<BreadcrumbProp>;
/**
* Should the breadcrumbs have bottom margin
*/
hasMargin?: boolean;
}
export interface BreadcrumbProp {
/**
* Title of the page
*/
title: string;
/**
* URL of the page
*/
url: string;
}