import React from 'react'; interface PathBarProps { currentPath: string; canGoBack: boolean; canGoForward: boolean; onNavigateBack: () => void; onNavigateForward: () => void; currentMode?: 'api' | 'sharing' | null; hasCustomPath?: boolean; isCustomPath?: boolean; onSaveCustomPath?: () => void; isSavingCustomPath?: boolean; searchQuery?: string; onSearchChange?: (query: string) => void; } /** * PathBar component hiển thị đường dẫn hiện tại và nút điều hướng Back/Forward */ export function PathBar({ currentPath, canGoBack, canGoForward, onNavigateBack, onNavigateForward, currentMode = null, hasCustomPath = false, isCustomPath = false, onSaveCustomPath, isSavingCustomPath = false, searchQuery = '', onSearchChange, }: PathBarProps) { return (