import { CaretRight, Database } from "@phosphor-icons/react"; import { useNavigate } from "react-router-dom"; interface SourcePathBarProps { sourceName: string; itemCount: number; } export function SourcePathBar({ sourceName, itemCount, }: SourcePathBarProps) { const navigate = useNavigate(); return (