UNPKG

@hmlr/govuk-react-components-library

Version:

These are common component use for React applications based on GDS and govuk-frontend

14 lines (13 loc) 370 B
import { HTMLAttributes } from "react"; export interface BreadcrumbItem { href?: string; to?: string; reactListKey?: string | number; children: React.ReactNode; [key: string]: unknown; } export interface BreadcrumbsProps extends HTMLAttributes<HTMLDivElement> { items?: BreadcrumbItem[]; className?: string; collapseOnMobile?: boolean; }