diff --git a/apps/client/src/widgets/Breadcrumb.tsx b/apps/client/src/widgets/Breadcrumb.tsx
index dc1b072332..eacf79ed70 100644
--- a/apps/client/src/widgets/Breadcrumb.tsx
+++ b/apps/client/src/widgets/Breadcrumb.tsx
@@ -3,6 +3,8 @@ import "./Breadcrumb.css";
import ActionButton from "./react/ActionButton";
import { useNoteContext } from "./react/hooks";
import NoteLink from "./react/NoteLink";
+import Dropdown from "./react/Dropdown";
+import Icon from "./react/Icon";
export default function Breadcrumb() {
const { noteContext } = useNoteContext();
@@ -31,10 +33,14 @@ function BreadcrumbItem({ notePath }: { notePath: string }) {
function BreadcrumbSeparator({ notePath }: { notePath: string}) {
return (
-
+ }
+ noSelectButtonStyle
+ buttonClassName="icon-action"
+ hideToggleArrow
+ >
+ Content goes here.
+
)
}