@@ -63,6 +63,11 @@ export const Breadcrumbs = ({ links, Link = UtrechtLink, backLink, breakpoint =
6363 links . map ( ( { href, label, current } : any , index : number ) =>
6464 label ? (
6565 < Fragment key = { `${ href } -${ index } ` } >
66+ { links . length === 1 && label ?. toLowerCase ( ) !== 'home' && (
67+ < BreadcrumbNavSeparator >
68+ < UtrechtIconChevronLeft />
69+ </ BreadcrumbNavSeparator >
70+ ) }
6671 < BreadcrumbNavLink
6772 className = { css ( 'utrecht-link' , 'utrecht-link--html-a' , 'utrecht-breadcrumb-nav__link-custom' ) }
6873 href = { href }
@@ -71,18 +76,13 @@ export const Breadcrumbs = ({ links, Link = UtrechtLink, backLink, breakpoint =
7176 current = { current }
7277 Link = { UtrechtLink }
7378 >
74- { links . length === 1 && label ?. toLowerCase ( ) !== 'home' && (
75- < BreadcrumbNavSeparator >
76- < UtrechtIconChevronLeft />
77- </ BreadcrumbNavSeparator >
78- ) }
7979 { label }
80- { index !== links . length - 1 && (
81- < BreadcrumbNavSeparator >
82- < UtrechtIconChevronRight />
83- </ BreadcrumbNavSeparator >
84- ) }
8580 </ BreadcrumbNavLink >
81+ { index !== links . length - 1 && (
82+ < BreadcrumbNavSeparator >
83+ < UtrechtIconChevronRight />
84+ </ BreadcrumbNavSeparator >
85+ ) }
8686 </ Fragment >
8787 ) : null ,
8888 ) }
0 commit comments