diff --git a/src/components/Breadcrumb/breadcrumb.tsx b/src/components/Breadcrumb/breadcrumb.tsx index d005c17c02..0422cd4060 100644 --- a/src/components/Breadcrumb/breadcrumb.tsx +++ b/src/components/Breadcrumb/breadcrumb.tsx @@ -1,6 +1,7 @@ import classnames from 'classnames'; import type { HTMLAttributes } from 'react'; import { Fragment, JSX } from 'react'; +import Link from '../Link/link'; import './breadcrumb.scss'; export interface BreadcrumbCrumb { @@ -40,9 +41,9 @@ export const Breadcrumb = ({ {` ${crumb.label} `} ) : ( - + {` ${crumb.label} `} - + )} ))}